注意:
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Package:Dash
Jump to navigation
Jump to search
Dash
Tip
We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.
Dash is an acronym for debian almquist shell. Dash is a direct descendant of BSD's ash.
Install
root # emerge app-shells/dash
Configuration
Login shell
To use dash as your login shell, you must whitelist dash for pam.
root # echo "/bin/dash" >> /etc/shells
User Shell
To add a user using dash as its default shell:
root # useradd -s /bin/dash username
To make your current users shell dash:
root # chsh -s /bin/dash