useradd -d /home/mydir -m username
這種方式建立的用戶能夠使用ssh登陸,但只有只讀權限能夠瀏覽下載部分文件沒法寫和修改。
建議經過將用戶加入一個組來得到指定路徑的權限。ssh
passwd username
chown -R username: username /home/ mydir chmod 755 /home/mydir
將一個用戶添加到用戶組中,儘可能不要直接用(除非確實是只屬於一個組):
usermod -G groupA usernameide
這樣作會使你離開其餘用戶組,僅僅作爲這個用戶組 groupA 的成員。
應該用 加上 -a 選項:code
usermod -a -G groupA username
groups username