Linux命令
1. 重启系统或者重启网卡,输入命令 "reboot" 或 "service network restart"
2. 安装gcc yum -y install gcc
3. 安装gcc-c++ yum -y install gcc-c++-有install
防火墙
查看防火墙状态:systemctl status firewalld.service
关闭防火墙:systemctl stop firewalld.service
开启防火墙:systemctl start firewalld.service
开机不启动防火墙:systemctl disable firewalld.service
开机启动防火墙:systemctl enable firewalld.service
临时和永久关闭Selinux
查看开机是否启动:getenforce
设置临时不启动:setenforce 0
设置永久不启动:vim /etc/selinux/config 改SELINUX=disabled
设置完重启:reboot
设置系统光盘开机自动挂载
标签:gcc,service,基础,防火墙,firewalld,systemctl,linux,开机,操作 From: https://www.cnblogs.com/xdlrf/p/16820630.html