歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

用戶權限相關命令

用戶權限相關命令     1、創建組 groupadd test    修改組 groupmod -n test2 test 將名字改為test2    刪除組 groupdel test    查看組 groups root 2、用戶操作:  -b 設置基本路徑作為用戶的登陸目錄 usermod -b /home root;  -c 對用戶的注釋。。。  -d 設置用戶的登陸目錄 usermod -d /home root;  -D 改變設置 usermod -D  -e 設置用戶的有效期 usermod -e 2013-2-1;  -f 用戶過期後,讓密碼無效 usermod -f root;  -g 使用戶只屬於某個組 usermod -f www group2;  -G 使用戶加入某個組 usermod -f www group1;  -h 幫助  -k(skel_dir) 指定其他的skel目錄(存放用戶啟動文件的目錄)  -k(key=value)  -m 自動創建登陸目錄  -l 不把用戶加入到lastlog文件中  -M 不自動創建登陸目錄  -r 建立系統賬號  -o 允許用戶擁有相同的UID  -p 為新用戶使用加密密碼;  -s 登錄時候的shell。。。  -u 為新用戶指定一個UID;  -Z   刪除用戶:userdel www;  查看用戶:w/who  查看自己的用戶名: whoami  查看單個用戶信息: finger root、id root;  查看用戶登陸記錄: last、lastb(成功和不成功)     
Copyright © Linux教程網 All Rights Reserved