使用者和組+許可權+資料夾屬性+打包和壓縮
分步完成:useradd tom
usermod -g users tom
usermod -c "hr tom" tom
一步完成:useradd -g users -c "hr tom" tom
設定tom使用者的密碼
passwd tom
修改tom使用者的登陸名為tomcat
usermod -l tomcat tom
將tomcat新增到sys和root組中
usermod -G sys,root tomcat
檢視tomcat的組資訊
groups tomcat
新增一個jerry使用者並設定密碼
useradd jerry
passwd jerry
新增一個交america的組
groupadd america
將jerry新增到america組中
usermod -g america jerry
將tomcat使用者從root組和sys組刪除
gpasswd -d tomcat root
gpasswd -d tomcat sys
將america組名修改為am
groupmod -n am america
==============================================================
建立a.txt和b.txt檔案,將他們設為其擁有者和所在組可寫入,但其他以外的人則不可寫入:
chmod ug+w,o-w a.txt b.txt
建立c.txt檔案所有人都可以寫和執行
chmod a=wx c.txt 或chmod 666 c.txt
將/itcast目錄下的所有檔案與子目錄皆設為任何人可讀取
chmod -R a+r /itcast
將/itcast目錄下的所有檔案與子目錄的擁有者設為root,使用者擁有組為users
chown -R root:users /itcast
將當前目錄下的所有檔案與子目錄的使用者皆設為itcast,組設為users
chown -R itcast:users *
=================================================================
1.檢視資料夾屬性
ls -ld test
2.資料夾的rwx
--x:可以cd進去
r-x:可以cd進去並ls
-wx:可以cd進去並touch,rm自己的檔案,並且可以vi其他使用者的檔案
-wt:可以cd進去並touch,rm自己的檔案
ls -ld /tmp
drwxrwxrwt的許可權值是1777(sticky)
=============================================================
1.gzip壓縮
gzip a.txt
2.解壓
gunzip a.txt.gz
gzip -d a.txt.gz
3.bzip2壓縮
bzip2 a
4.解壓
bunzip2 a.bz2
bzip2 -d a.bz2
5.將當前目錄的檔案打包
tar -cvf bak.tar .
將/etc/password追加檔案到bak.tar中(r)
tar -rvf bak.tar /etc/password
6.解壓
tar -xvf bak.tar
7.打包並壓縮gzip
tar -zcvf a.tar.gz
8.解壓縮
tar -zxvf a.tar.gz
解壓到/usr/下
tar -zxvf a.tar.gz -C /usr
9.檢視壓縮包內容
tar -ztvf a.tar.gz
zip/unzip
10.打包並壓縮成bz2
tar -jcvf a.tar.bz2
11.解壓bz2
tar -jxvf a.tar.bz2