linux系統(tǒng)一般是沒有各種管家軟件的,對于習慣了360全家桶或者騰訊全家桶的人可能有點不習慣,這里整理了一些linux系統(tǒng)設置命令,可以滿足一下部分人的強迫癥。
系統(tǒng)優(yōu)化設置:
開機啟動項:
查看開機啟動服務狀態(tài):systemctl list-unit-files
查看所有開機啟動項: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
防火墻設置:
查看防火墻狀態(tài):systemctl status firewalld.service
關閉:systemctl stop firewalld
開啟:systemctl start firewalld
開機自動關閉:systemctl disable firewalld
開機自動啟動:systemctl enable firewalld
時間設置:
設置時區(qū):ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
timedatectl set-timezone "Asia/Shanghai"
設置與網(wǎng)絡時間同步:yum -y install ntp ntpdate
ntpdate cn.pool.ntp.org
將系統(tǒng)寫入硬件時間: hwclock --systohc
查看系統(tǒng)時間:timedatectl