天天看點

centos的一些常識

1開機自動啟動的檔案夾

/usr/lib/systemd/system/vsftpd.service  

以上說明vsftpd.service  這個服務開機自啟動。

2   //重新啟動ftp服務

service vsftpd restart

3   //檢視ftp服務端口

netstat -antup | grep ftp

4 檢視防火牆狀态

systemctl status firewalld.service

5開啟防火牆:

    [[email protected] ~]# systemctl start firewalld.service

6  關閉防火牆:

    [[email protected] ~]# systemctl stop firewalld.service

7 重新開機防火牆:

    [[email protected] ~]# systemctl restart firewalld.service

8 禁止開機啟動:

    [[email protected] ~]# systemctl disable firewalld.service

9  開啟開機啟動:

    [[email protected] ~]# systemctl enable firewalld.service

10    防火牆添加FTP服務

    firewall-cmd --permanent --zone=public --add-service=ftp

        添加完之後   再進行:     firewall-cmd --reload

11#停止firewall

systemctl stop firewalld.service

12#禁止firewall開機啟動

systemctl disable firewalld.service

13檢視防火牆狀态

firewall-cmd --list-all

14删除檔案内的全部文本:

在指令模式下,輸入:.,$d 一回車就全沒了。

15centos使用者相關的指令:

檢視系統中有哪些使用者:cut -d : -f 1 /etc/passwd

檢視可以登入系統的使用者:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1

檢視使用者操作:w指令(需要root權限)

檢視某一使用者:w 使用者名

檢視登入使用者:who

檢視使用者登入曆史記錄:last

切換使用者:  su - xxxxx

建立使用者:useradd -m -s /bin/bash xxxx

繼續閱讀