Text Terminal on the Graphical Desktop

Virtual Terminals (GNOME Terminal)

Turning Off the Graphical Desktop

sudo systemctl stop <gdm|lightdm|kdm># ORsudo telinit 3sudo systemctl start <gdm|lightdm|kdm># ORsudo telinit 5

sudo

su    # enter sudo mode# create the configuration file for 'student' under sudo modeecho "student ALL=(ALL) ALL" > /etc/sudoers.d/studentchmod 440 /etc/sudoers.d/student

Getting Help - man, apropos, -help, info and Others

man lsman passwdman -k passwd       # -k: key word, will return section of a key wordman -k `^passwd$`man 5 passwd        # 5: the section returned by above commandman -f passwdman -a socket       # all pages with the given name in all chaptersapropos passwd      # equivalent to `man -k [pages]`apropos partitionwhat is passwd      # equivalent to `man -f [pages]`