Change default shell: Difference between revisions

From Alpine Linux
No edit summary
(correct GECOS field)
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==== Changing the default shell ====
{{Note|By default Alpine Linux uses the busybox variant of the [https://en.wikipedia.org/wiki/Almquist_shell ash] shell, but many users may prefer {{Pkg|bash}}, {{Pkg|zsh}}, {{Pkg|fish}}, or another shell.}}
== By hand ==
Edit {{Path|/etc/passwd}} manually. An example line for a user named <code>user</code> is:


'''Download the required package:'''
{{Cat|/etc/passwd|...
<br>
user:x:1000:1000:user:/home/user:/bin/ash
''apk add libuser''
...
<br><br>
}}
If you do not have files:
* /etc/login.defs
* /etc/default/useradd


We will need to create them
Change {{Path|/bin/ash}} to point to the path of a shell from {{Path|/etc/shells}}. Take care to not delete/mangle the line, as it would make you unable to log in again. The <code>user</code> should be the user you are changing the default login shell for.


''touch /etc/login.defs''
== Using shadow ==
<br>
 
''touch /etc/default/useradd''
Download the required package:
<br><br>
{{Cmd|# apk add shadow}}
Now we can change our default shell
And use chsh:
<br><br>
{{Cmd|# chsh username}}
If you want to change the current user's shell:<br>
 
''lchsh''  
Now enter the path for the shell you want to use (e.g {{Path|/bin/bash}})
<br>
and press {{Key|Enter}} to confirm this change. The shell should exist in {{Path|/etc/shells}}.
If you want to change a different user's shell:<br>
 
''lchsh USERNAME''
{{Note|You may need to log out or reboot for this change to take effect, '''ash''' is part of busybox so you can revert back to '''ash''' ({{Path|/bin/ash}}) at anytime with the same steps.}}
 
[[Category:Shell]]
[[Category:Newbie]]

Latest revision as of 11:18, 10 November 2023

Note: By default Alpine Linux uses the busybox variant of the ash shell, but many users may prefer bash, zsh, fish, or another shell.

By hand

Edit /etc/passwd manually. An example line for a user named user is:

Contents of /etc/passwd

... user:x:1000:1000:user:/home/user:/bin/ash ...

Change /bin/ash to point to the path of a shell from /etc/shells. Take care to not delete/mangle the line, as it would make you unable to log in again. The user should be the user you are changing the default login shell for.

Using shadow

Download the required package:

# apk add shadow

And use chsh:

# chsh username

Now enter the path for the shell you want to use (e.g /bin/bash) and press Enter to confirm this change. The shell should exist in /etc/shells.

Note: You may need to log out or reboot for this change to take effect, ash is part of busybox so you can revert back to ash (/bin/ash) at anytime with the same steps.