Group
嘗試與兩個使用者組成組
我正在嘗試與兩個使用者組成一個組,以便只有這兩個使用者可以使用
chmod g+r dir
我組建了一個新組 www-OtagoHarbour,並嘗試像這樣添加現有使用者 OtagoHarbour。
OtagoHarbour@WebServer:/var/www/executables$ sudo groupadd www-OtagoHarbour OtagoHarbour@WebServer:/var/www/executables$ sudo useradd -G www-OtagoHarbour OtagoHarbour useradd: user 'OtagoHarbour' already exists OtagoHarbour@WebServer:/var/www/executables$ sudo useradd -g www-OtagoHarbour OtagoHarbour useradd: user 'OtagoHarbour' already exists
當然存在使用者“OtagoHarbour”,但我想將其添加到另一個使用者的組中。
您使用該命令
useradd
添加帳戶。但是一旦它們被創建,您可以使用命令usermod
來修改它們。$ usermod -a -G www-OtagoHarbour OtagoHarbour
參考