CentOS7學習筆記
阿新 • • 發佈:2017-06-17
lsp cell 32位 back eas 文件 unit gre --
關機與重啟命令
shutdown -h now shutdown -r 10 shutdown -r 23:59
顯示目錄文件
ls -a /etc/
查看名稱包含telnet的軟件是否已安裝 (| grep 表示匹配的意思)
ypm-qa | grep telnet
切換praybb用戶
us praybb
查看系統分區
df -h # df -k df –l
查看源列表
yum list |grep telnet #查看源列表中匹配telnet的軟件
安裝源軟件
yum install telnet.x86_64 #安裝telnet.x86_64軟件
服務的操作
關鍵字:
start | enable | disable | status | restart | systemctl list -units --type=service |
啟動 | 開機啟動 | 刪除開機啟動 | 查看狀態 | 重新啟動 | 查看已啟動的服務 |
systemctl #顯示正在運行的服務
systemctl enable nfs-server.service
#設置開機啟動NFS服務,
查看centos版本號
cat /etc/redhat-release
查看centos系統是64位還是32位
getconf LONG_BIT
CentOS7學習筆記