标签:用户 font log roo 常用 linu not com command
1. su,需要输入切换账号的密码
su -l anotherUserName; // 切换到anotherUserName,l可省略
su - // 切换到root
su // 仅切换到root,工作目录不会切换
2. sudo,需要输入当前账号的密码
sudo command // 以root身份执行command,工作目录不会切换
3. gzip,压缩/解压,命令执行结束原文件会消失。bzip2命令与之相同。
gzip fileName,压缩
gzip -d fileName,解压
4. tar,打包/解包,可结合压缩/解压命令使用
标签:用户 font log roo 常用 linu not com command
原文地址:http://www.cnblogs.com/gattaca/p/6135252.html