當前位置:首頁 » 操作系統 » linux修改用戶的許可權

linux修改用戶的許可權

發布時間: 2024-08-20 02:50:45

linux如何設置用戶許可權

linux與用戶許可權設置:

1、添加用戶
首先用adser命令添加一個普通用戶,命令如下:

#adser tommy //添加一個名為tommy的用戶
#passwd tommy //修改密碼
Changing password for user tommy.
New UNIX password: //在這里輸入新密碼
Retype new UNIX password: //再次輸入新密碼
passwd: all authentication tokens updated successfully.

2、賦予root許可權
方法一:修改 /etc/sudoers 文件,找到下面一行,把前面的注釋(#)去掉
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
然後修改用戶,使其屬於root組(wheel),命令如下:
#usermod -g root tommy
修改完畢,現在可以用tommy帳號登錄,然後用命令 su - ,即可獲得root許可權進行操作。
方法二:修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
tommy ALL=(ALL) ALL
修改完畢,現在可以用tommy帳號登錄,然後用命令 su - ,即可獲得root許可權進行操作。

熱點內容
手機手勢密碼忘了怎麼辦 發布:2025-01-12 17:14:51 瀏覽:485
這手機配置有什麼顏色的電視機 發布:2025-01-12 17:02:19 瀏覽:932
閣源碼 發布:2025-01-12 16:48:08 瀏覽:130
組裝機箱搭建伺服器 發布:2025-01-12 16:46:58 瀏覽:511
風險資產配置理論有哪些 發布:2025-01-12 16:46:13 瀏覽:981
小程序分銷源碼 發布:2025-01-12 16:42:41 瀏覽:47
linux查看系統硬體 發布:2025-01-12 16:34:26 瀏覽:968
安卓手機怎麼設置獨享標志 發布:2025-01-12 16:27:56 瀏覽:932
我的世界如何把材質包放進伺服器 發布:2025-01-12 16:11:14 瀏覽:56
使用hmailserver搭建郵件伺服器 發布:2025-01-12 16:05:43 瀏覽:809