常用Ubuntu命令

weixin_34146805發表於2017-02-20
切換到root使用者
sudo -s   
切換到某個使用者
su - username 
檢視當前使用者
whoami   
Generate a sshkey
ssh-keygen -t rsa -C "email@example.com"  
Root login
ssh root@SERVER_IP_ADDRESS  
Create a New User
adduser demo  
As root, run this command to add your new user to the sudo group 
gpasswd -a demo sudo    
Change file authorized
chmod 600 .ssh/authorized_keys  
Reload SSH
service ssh restart  

相關文章