當前位置:首頁 » 操作系統 » linuxroot給用戶許可權

linuxroot給用戶許可權

發布時間: 2025-03-03 19:50:34

1. 如何將linux下的root許可權給指定用戶

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許可權進行操作。 方法三:修改/etc/passwd 文件,找到如下行,把用戶ID修改為 0 ,如下所示: tommy:x:500:500:tommy:/home/tommy:/bin/bash修改後如下tommy:x:0:500:tommy:/home/tommy:/bin/bash 保存,用tommy賬戶登錄後,直接獲取的就是root帳號的許可權。 友情提醒:雖然方法三看上去簡單方便,但一般不推薦使用,推薦使用方法二。

熱點內容
java返回this 發布:2025-10-20 08:28:16 瀏覽:586
製作腳本網站 發布:2025-10-20 08:17:34 瀏覽:882
python中的init方法 發布:2025-10-20 08:17:33 瀏覽:574
圖案密碼什麼意思 發布:2025-10-20 08:16:56 瀏覽:761
怎麼清理微信視頻緩存 發布:2025-10-20 08:12:37 瀏覽:678
c語言編譯器怎麼看執行過程 發布:2025-10-20 08:00:32 瀏覽:1006
郵箱如何填寫發信伺服器 發布:2025-10-20 07:45:27 瀏覽:251
shell腳本入門案例 發布:2025-10-20 07:44:45 瀏覽:108
怎麼上傳照片瀏覽上傳 發布:2025-10-20 07:44:03 瀏覽:799
python股票數據獲取 發布:2025-10-20 07:39:44 瀏覽:705