随笔分类 -  操作系统汇总

摘要:rdtsc函数及用法 #include static inline __u64 get_cycles(void) { __u32 timehi, timelo; asm("rdtsc":"=a"(timelo),"=d"(timehi):); return (__64)(((__u64)timehi 阅读全文
posted @ 2021-08-24 16:20 aaronwell 阅读(55) 评论(0) 推荐(0)
摘要:推荐方法 开始————运行————输入代码 “ cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe” (双引号去掉) 方法 阅读全文
posted @ 2021-05-08 10:23 aaronwell 阅读(734) 评论(0) 推荐(0)
摘要:重装系统之后scp出错 vim /c/Users/w30003414/.ssh/known_hosts 删掉10.244.32.241节点的内容 沙箱内ping操作有问题 ping: socket: Operation not permitted -rwsr-xr-x权限改下 如果想要对文件logi 阅读全文
posted @ 2021-04-26 17:20 aaronwell 阅读(81) 评论(0) 推荐(0)
摘要:0 标准输入 stdin 1 标准输出 stdout 2 标准错误 stderr 在计划任务中经常可以看到。例如我们公司的计划任务举例: */2 * * * * root cd /opt/xxxx/test_S1/html/xxxx/admin; php index.php task testOne 阅读全文
posted @ 2021-04-24 17:19 aaronwell 阅读(95) 评论(0) 推荐(0)
摘要:启动资源管理器 explorer.exe ppt去除拼音检查 文件--选项--校对--不勾选键入时检查拼写 阅读全文
posted @ 2021-04-15 09:45 aaronwell 阅读(45) 评论(0) 推荐(0)
摘要:linux 下查看 so库 符号表 nm -D 7z.so objdump -tT 7z.so linux 查看 *.a *.so 符号表objdump -tT libName.so | grep symbel symbolNamenm -D libName.so | grep symbel sym 阅读全文
posted @ 2021-04-02 15:35 aaronwell 阅读(93) 评论(0) 推荐(0)