一、network的命令
(1)关闭网络
systemctl stop network
(2)查看网络状态
systemctl status network
(3)开启网络
systemctl start network
(4)重新启动网络
systemctl start network
二、其他命令
1、强制保存修改了只读文件的内容
:w !sudo tee %
2、查看防火墙的状态
systemctl status firewalld
3、关闭防火墙开机自启
systemctl disable firewalld
4、开启指定服务的自动启动
systemctl enable 服务器名
5、查看服务开机启动状态
systemctl is-enabled 服务名
三、关机重启命令
1、重启
reboot
2、关闭系统
poweroff
3、将数据由内存同步到硬盘中
sync
4.
shutdown【选项】 时间
选项中可以包含:
①-h。-h=halt 关机
②-r。-r=reboot 重启
③now 立刻关机
④时间 等待多久后关机(时间单位是分钟)
注意:关机之前要先将内容同步到硬盘中(sync),之后再进行重启或者关机。因为Linux操作系统是将数据先保存在缓冲区中,当缓冲区满时再写入磁盘,所以要先将内容保存到磁盘中,再进行其他操作。