linux伺服器常用管理指令整理
阿新 • • 發佈:2019-02-18
1、ubuntu系統新建使用者:
sudo useradd -r -m -s /bin/bash zhangsan
sudo passwd zhangsan
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
2、給新使用者新增root許可權:
sudo vim /etc/sudoers //修改和儲存務必慎重,檔案一旦受到損壞,sudo相關指令均會報錯,修復很麻煩。
新增紅色標識的語句。
# User privilege specification
root ALL=(ALL:ALL) ALL
zhangsan ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
3、刪除某使用者sudo userdel -r zhangsan
4、清理當前使用者目錄下的回收站
sudo rm -rf /home/usrname/.local/share/Trash/
5、常用程序檢視軟體
top是大家都知道的,推薦一款htop,安裝簡單,資訊更豐富使用更方便。
sudo apt-get install htop