Skip to main content

CentOS 常见问题汇总

· 2 min read
Castamere
Code Aesthetic

遇到的一些 CentOS 问题,目前有

如何配置 IPv4 地址

# 查看当前网卡配置,假设要修改的网卡为ethx
nmcli connection show

# 修改配置文件
nano /etc/sysconfig/network-scripts/ifcfg-ethx

# 应用配置文件
nmcli connection reload

# 重启网络服务
nmcli device reapply ethx

如何查看所有的服务

systemctl list-unit-files --type=service

yum

yum 安装本地 rpm 文件

yum install xxx.rpm --disablerepo=*

同步时间

使用 ntpdate 同步时间
sudo ntpdate time.nist.gov

修改时间

修改时间
sudo date "+%Y%m%d %H:%M:%S" # 从其他设备获取时间
sudo date -s "xxxxxxxx xx:xx:xx" # 手动修改时间
Buy me a coffee ☕:
This article is licensed under CC 4.0 BY-SA