I added a new linux user by doing a
useradd -d /var/www/mywebsite.com -m newuser
passwd newuser
I tested the account by logging into the server with the following command
ssh [email protected]
After login, the shell doesn't let me do tab autocomplete. For example, I would type /var/www/myweb{tab}, but the tab button only enters a space into the shell. Also, pressing the up and down arrow keys does not give me the most recent shell commands entered.
Everything works perfectly when I ssh login as root. But it doesn't work when I ssh login as newuser.
Did I miss something?
Thanks
Check what shell 'newuser' is using. Make sure it's one that actually supports tab completion (like bash or zsh).
You can determine what shell the user is using using the following command
You can change the users shell using the chsh command
When you add a user with
useradd
there is no special shell added.You can see this with the command:
cat /etc/passwd
You can see that the user
test1
has a shell of/bin/bash
but the usertest3
has no shell added.To fix this you can change the shell of user
test3
with this command:Or when you create a new user you can use the s option:
On my system tab autocompletion is added by:
in .bashrc. Bashrc doesn't get created for new users since it doesn't exist in /etc/skel. Create .bashrc in /etc/skel with the above code in and it will work for new users. Then copy the file to the new user you just created so it works for them too.
have you checked your new user has the same shell as your root user? Its seems that your root user has bash your something like it and your new user has a ksh or something similar. Take a look at the /etc/passwd file or the SHELL environment variable.
Did the folder /var/www/mywebsite.com exist before you created the account?
Can you check that contents of /etc/skel get copied over to the home directory /var/www/mywebsite.com?
Did the new account get a different shell which doesn't support auto-complete?