上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 367 下一页
摘要: 001、系统信息 [root@PC1 home]# lsb_release -a LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarc 阅读全文
posted @ 2023-07-17 12:00 小鲨鱼2018 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 001、gcc 编译器在编译安装的时候报错:collect2: error: ld terminated with signal 9 [Killed] [root@PC1 build]# make -j4 ## 编译安装c编译器gcc-13.1.0,报错如下: 002、报错原因及解决方法 swap内 阅读全文
posted @ 2023-07-17 11:07 小鲨鱼2018 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 002、make表示编译 批量执行编译文件makefile中的指令。 002、make -j4 -j(表示 job 的数目)参数可以对项目在进行并行编译。 make -j4,让make 最多允许 4 个编译命令同时执行,这样可以更有效的利用 CPU 资源。 由此看来,在多核 CPU 上,适当的进行并 阅读全文
posted @ 2023-07-17 09:41 小鲨鱼2018 阅读(2497) 评论(0) 推荐(0) 编辑
摘要: 001、 ll 只能显示日期 [root@PC1 test01]# ls a.txt [root@PC1 test01]# ll ## ll命令显示日期 total 4 -rw-r--r--. 1 root root 21 Jul 17 16:51 a.txt 002、stat显示完整的日期 [ro 阅读全文
posted @ 2023-07-17 08:59 小鲨鱼2018 阅读(1539) 评论(0) 推荐(0) 编辑
摘要: 001、官网下载: https://ftp.gnu.org/gnu/make/ 002、查看当前的make版本及系统版本 a、make版本 [root@PC1 ~]# make --version GNU Make 3.82 Built for x86_64-redhat-linux-gnu Cop 阅读全文
posted @ 2023-07-16 10:56 小鲨鱼2018 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 001、问题 *** These critical programs are missing or too old: compiler 002、查看c编译器版本 [root@PC1 build]# gcc --version gcc (GCC) 4.8.5 20150623 (Red Hat 4.8 阅读全文
posted @ 2023-07-15 23:13 小鲨鱼2018 阅读(3240) 评论(0) 推荐(0) 编辑
摘要: 001、问题 *** These critical programs are missing or too old: make compiler 002、查看当前的make版本 [root@PC1 build]# make --version 003、make官网:http://ftp.gnu.or 阅读全文
posted @ 2023-07-15 23:03 小鲨鱼2018 阅读(2109) 评论(0) 推荐(0) 编辑
摘要: glibc是GNU发布的libc库,即c运行库。glibc是linux系统中最底层的api,几乎其它任何运行库都会依赖于glibc。glibc除了封装linux操作系统所提供的系统服务外,它本身也提供了许多其它一些必要功能服务的实现。由于glibc囊括了几乎所有的 UNIX 通行的标准,可以想见其内 阅读全文
posted @ 2023-07-15 21:49 小鲨鱼2018 阅读(1725) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test01]# ls [root@PC1 test01]# seq 5 > a.txt; seq 3 > b.txt ## 生成测试数据 [root@PC1 test01]# ls a.txt b.txt [root@PC1 test01]# md5sum b.txt 阅读全文
posted @ 2023-07-15 21:01 小鲨鱼2018 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test01]# ls ## 测试文件 a.txt.gz [root@PC1 test01]# gzip -dc a.txt.gz > a.txt ## 解压,同时保留源文件 [root@PC1 test01]# ls a.txt a.txt.gz [root@PC1 阅读全文
posted @ 2023-07-15 20:53 小鲨鱼2018 阅读(172) 评论(0) 推荐(0) 编辑
上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 367 下一页