访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

CentOS7linux系统设置命令大全

时间:2019-09-29

linux命令大全 ssh_linux命令大全_linux命令大全 root

linux系统一般是没有各种管家软件的,对于习惯了360全家桶或者腾讯全家桶的人可能有点不习惯,这里整理了一些linux系统设置命令,可以满足一下部分人的强迫症。

系统优化设置:

开机启动项:

查看开机启动服务状态:systemctl list-unit-files

linux命令大全_linux命令大全 ssh_linux命令大全 root

查看所有开机启动项:systemctl list-unit-files | grep enable

systemctl disable firewalld.service #禁止firewall开机启动。systemctl disable firewalld 开机默认关闭防火墙。如果在配置文件中设置了开机启动linux命令大全linux命令大全, systemctl enable 命令相当于激活开机启动。

开启最小化服务:for oldboy in network-online.target network-pre.target network.target crond.service rsyslog.service sshd.service sysstat.service ;do systemctl enable $oldboy ;done

查看开启的服务:systemctl list-unit-files|grep enabled

linux命令大全 ssh_linux命令大全_linux命令大全 root

防火墙设置:

查看防火墙状态:systemctl status firewalld.service

关闭:systemctl stop firewalld

开启:systemctl start firewalld

linux命令大全_linux命令大全 root_linux命令大全 ssh

开机自动关闭:systemctl disable firewalld

开机自动启动:systemctl enable firewalld

时间设置:

设置时区:ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

linux命令大全_linux命令大全 root_linux命令大全 ssh

timedatectl set-timezone "Asia/Shanghai"

设置与网络时间同步:yum -y install ntp ntpdate

ntpdate cn.pool.ntp.org

将系统写入硬件时间: hwclock --systohc

查看系统时间:timedatectl