Remove gpg key.
$ sudo apt-key list
pub 1024R/B455BEF0 2010-07-29
uid Launchpad clicompanion-nightlies
$ sudo apt-key del B455BEF0Enable the “Universe” repository
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"Change current shell.
$ exec /bin/bash (temporarily)
$ chsh -s /bin/bash (permanently)Find out all available shells in the system.
$ cat /etc/shellsGet groups for user
$ groups rootAdd group to user
$ usermod -aG group1 user1Add user
$ useradd user1
$ passwd user1Switch between users.
$ whoami
user1
$ su - user2
$ whoami
user2
$ su -
$ whoami
rootShow all users.
$ cat /etc/passwd