diff options
author | Silvino Silva <silvino@bk.ru> | 2019-02-10 06:54:10 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2019-02-10 06:54:10 +0000 |
commit | 6847d67bb8e98db3e00489b223cd694a3e9f0733 (patch) | |
tree | 49ba6d09e847ac7070ebac933f259ed40f70ddc3 /core | |
parent | 01e8745e4084c06fd2e8abb645b5c92c0f1bb27b (diff) | |
download | doc-6847d67bb8e98db3e00489b223cd694a3e9f0733.tar.gz |
fix core configure user group problem
Diffstat (limited to 'core')
-rw-r--r-- | core/configure.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/configure.html b/core/configure.html index 7d34bf7..c200851 100644 --- a/core/configure.html +++ b/core/configure.html @@ -185,14 +185,15 @@ </dl> <pre> - # useradd -m -k /etc/skel -s /bin/bash c9admin - # usermod -G adm,wheel,audio,video c9admin - # passwd c9admin + # group -g username username + # useradd -u username -g username -m -k /etc/skel -s /bin/bash username + # usermod -G adm,wheel,audio,video username + # passwd username </pre> <pre> # chmod 0700 /root - # chmod 0700 /home/c9admin + # chmod 0700 /home/username </pre> <h3>1.2.4.3 Add Administrator to Wheel group</h3> |