
Centos7使用记录
scannme
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu18.04 server配置静态IP地址
最近使用ubuntu18.04 server 做服务器,使用DHCP获取的地址重启之后IP地址经常变换,计划使用netplan配置成一个静态的IP地址。 打开/etc/netplan/**.yaml文件 # This is the network config written by 'subiquity' network: ethernets: eno1: addresses: - 172.16.0.12/24 dhcp4: false ...原创 2021-09-26 10:06:14 · 303 阅读 · 0 评论 -
gcc Compiler is too old
Centos7 编译内核gcc 版本提示低 在编译linux-5.14.2内核时,提示gcc 版本低,具体错误信息如下: *** *** Compiler is too old. *** Your GCC version: 4.8.5 *** Minimum GCC version: 4.9.0 *** 解决办法,升级gcc 版本 yum -y install centos-release-scl yum -y install devtoolset-8-gcc devtoolset-8-gc原创 2021-09-10 15:43:20 · 2836 阅读 · 0 评论