上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 403 下一页
摘要: 001、问题 CMake Error at /root/anaconda3/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake:9 (message): Failed to fi 002、 报错原因 centos中没有安装opengl依赖库 解决方法如下: [root 阅读全文
posted @ 2023-06-23 12:13 小鲨鱼2018 阅读(584) 评论(0) 推荐(0)
摘要: 001、问题 -- Checking for curses support - Failed 002、解决方法 [root@PC1 cmake-3.27.0-rc3]# yum -y install ncurses-devel 003、再次编译(解决curses报错) [root@PC1 cmake 阅读全文
posted @ 2023-06-23 12:05 小鲨鱼2018 阅读(196) 评论(0) 推荐(0)
摘要: 系统是centos7.6 001、问题 -- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system vari 002、解决方法 [root@PC1 cmake-3.27.0-rc3]# yum 阅读全文
posted @ 2023-06-23 11:57 小鲨鱼2018 阅读(2019) 评论(0) 推荐(0)
摘要: 可以分为两种情况: a、误删的文件正在被进程所使用 b、误删的文件没有被进程使用 001、 [root@PC1 test01]# ls [root@PC1 test01]# seq 5 > a.txt ## 创建测试文件 [root@PC1 test01]# ls a.txt [root@PC1 t 阅读全文
posted @ 2023-06-22 23:28 小鲨鱼2018 阅读(946) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test01]# ls a.txt c.txt x.txt [root@PC1 test01]# ls -l ## 测试数据 total 12 -rw-r--r--. 1 root root 6 Jun 22 23:00 a.txt -rw-r--r--. 1 root 阅读全文
posted @ 2023-06-22 23:09 小鲨鱼2018 阅读(578) 评论(0) 推荐(0)
摘要: 001、-s 将多个连续的字符压缩为一个字符 [root@PC1 test01]# ls a.txt [root@PC1 test01]# cat a.txt ## 测试数据 ddddfffabccccc lerrrrdddd [root@PC1 test01]# cat a.txt | tr -s 阅读全文
posted @ 2023-06-22 22:37 小鲨鱼2018 阅读(65) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test01]# ls a.txt [root@PC1 test01]# cat a.txt ## 测试数据 1 2 3 4 5 6 7 8 [root@PC1 test01]# cat a.txt | paste -s -d " " ## 转换为一行 1 2 3 4 阅读全文
posted @ 2023-06-22 22:18 小鲨鱼2018 阅读(160) 评论(0) 推荐(0)
摘要: tee命令 :同时标准输出 和 保存文件。 001、 [root@PC1 test01]# ls [root@PC1 test01]# seq 3 | tee a.txt ## 标准输出的同时,保存文件 1 2 3 [root@PC1 test01]# ls a.txt [root@PC1 test 阅读全文
posted @ 2023-06-22 21:34 小鲨鱼2018 阅读(252) 评论(0) 推荐(0)
摘要: 001、 利用cat命令给文件添加行号 [root@PC1 test01]# ls a.txt [root@PC1 test01]# cat a.txt ## 测试文件 a b c d 0 1 2 3 [root@PC1 test01]# cat -n a.txt ## -n 选项,给文件添加行号, 阅读全文
posted @ 2023-06-22 20:50 小鲨鱼2018 阅读(446) 评论(0) 推荐(0)
摘要: 001、cat > file [root@PC1 test01]# ls [root@PC1 test01]# cat > a.txt a b c d ## 利用键盘输出内容 0 1 2 3 ## 利用ctrl + D 进行终止 [root@PC1 test01]# ls a.txt [root@P 阅读全文
posted @ 2023-06-22 20:46 小鲨鱼2018 阅读(493) 评论(0) 推荐(0)
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 403 下一页