學習ubuntu日常操作筆記一
在安裝系統時,root賬戶並沒有被啟用來供你使用,即root帳號被隱藏了,而是通過初始使用者與sudo的結合使用來完成一些需要root許可權的任務。這樣做的好處是防止你不得不使用root來進行一些系統的初級管理,同時完全允許另一個賬戶來充當超級使用者,也保護了你係統的安全方面的缺陷。如果你需要使用root使用者來完成一些工作的話,使用以下命令啟用root使用者:法一:在終端中輸入:sudo passwd root
之後要求你輸入兩次root使用者的密碼,重啟後就可以登陸root使用者了。退出root許可權方法:$ exit
若想禁用 root 帳號: sudo passwd -l root
2:
service iptables status
快速安裝iptables
apt-get install iptables //Debian,Ubuntu使用此命令
yum install iptables //Linux,CentOS使用此命令
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
3:ubunt安裝ssh服務
開啟"終端視窗",輸入"sudo apt-get install openssh-server"-->回車-->輸入"y"-->回車-->安裝完成。
root使用者時不讓登入的,修改方法
修改配置檔案"/etc/ssh/sshd_config"
開啟"終端視窗",輸入"sudo gedit /etc/ssh/sshd_config"-->回車-->把配置檔案中的"PermitRootLogin without-password"加一個"#"號,把它註釋掉-->再增加一句"PermitRootLogin yes"-->儲存,修改成功。
4:VIM的安裝
ubuntu系統:
普通使用者下輸入命令:sudo apt-get install vim-gtk
centos系統:
普通使用者下輸入命令:yum -y install vim*