sudo adduser <username>
sudo usermod -aG sudo <username>
# 或
sudo adduser <username> sudo
a
选项非常重要,没有它,将会把用户从其他组中移除G
用户被分配到的组/etc/sudoers/
文件sudo usermod -aG <group-name> <user-name>
sudo deluser <username> <group-name>
scp /path/to/local/file username@host:/path/to/remote/location
ln -s /path/to/file /path/to/symbolic
路径最好使用「绝对路径」
groups <username>
su -m <user to switch to> -c <command which does not need interaction>
需要注意
-c
后面跟着的命令,必须是不依靠 tty 就可以执行的命令这个命令执行在终端手动执行,不能写在脚本中执行,否则抛出错误
'su' command in Docker returns 'must be run from terminal'