-
Notifications
You must be signed in to change notification settings - Fork 115
Misc
ghantoos edited this page Oct 8, 2014
·
1 revision
In order to log a user’s warnings into the logging directory (default /var/log/lshell/) , you must first create the folder (if it is no create by the installer) and chown it to 'lshell' group:
# addgroup --system lshell
# mkdir /var/log/lshell
# chown :lshell /var/log/lshell
# chmod 770 /var/log/lshell
then add the user to the lshellg group:
# usermod -aG lshell user_name
In order to set lshell as default shell for a user:
On Linux:
# chsh -s /usr/bin/lshell user_name
On *BSD:
# chsh -s /usr/{pkg,local}/bin/lshell user_name