导航

2021年4月19日 #

exec

摘要: 执行脚本程序的时候遇见两个问题 1.执行脚本start.sh 大家的写法应该都是 char *argv[] = {NULL}; execv("/root/Projects/wind/start.sh", argv); 脑抽的写法是 char *argv[] = {"/root/Projects/wi 阅读全文

posted @ 2021-04-19 16:42 toughcactus 阅读(93) 评论(0) 推荐(0) 编辑

clock skew detected

摘要: apt install ntpdate ntpdate 0.asia.pool.ntp.org hwclock --systohc 阅读全文

posted @ 2021-04-19 11:48 toughcactus 阅读(55) 评论(0) 推荐(0) 编辑

cmake使能gdb

摘要: SET(CMAKE_BUILD_TYPE "Debug") SET(CMAKE_CXX_FLAGS_DEBUG "$ENV{CXXFLAGS} -O0 -Wall -g3 -ggdb")#网上找的参数g3。gdb时提示无行号信息。改为g3就好了。其实这个问题之前遇到过... SET(CMAKE_CX 阅读全文

posted @ 2021-04-19 10:20 toughcactus 阅读(73) 评论(0) 推荐(0) 编辑

shell 时间

摘要: #不要加空格 time1=$(date) echo $time1 > /tmp/output.txt 阅读全文

posted @ 2021-04-19 10:15 toughcactus 阅读(39) 评论(0) 推荐(0) 编辑

gcc

摘要: gcc main.c -o main -g 将源文件main.c编译为文件main,允许gdb调试 阅读全文

posted @ 2021-04-19 10:05 toughcactus 阅读(37) 评论(0) 推荐(0) 编辑

时间处理函数

摘要: #include <time.h> time_t t; time(&t); //获取秒数 struct tm *lt = localtime(&t); //将秒数转换为当地时间 char *p = asctime(lt); //将当地时间转换为字符串 阅读全文

posted @ 2021-04-19 10:04 toughcactus 阅读(46) 评论(0) 推荐(0) 编辑