Skip to content
ghantoos edited this page Oct 8, 2014 · 1 revision

Logging

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

User's default shell

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

Clone this wiki locally