Explain DEBIAN_FRONTEND apt-get variable for Ubuntu / Debian

The DEBIAN_FRONTEND variable is an environment variable that controls the user interface used by the apt-get package manager on Ubuntu and Debian systems. It is used to specify the type of user interface that should be used when running apt-get commands. There are three main options for the DEBIAN_FRONTEND variable: noninteractive: This option tells apt-get … Read more

Change my default shell in Linux using chsh

The chsh command (short for “change shell”) allows you to change the default shell for a user in Linux. Here are the steps to change your default shell using chsh: Open a terminal window Run the command cat /etc/shells, this will list the available shells on your system, make sure the shell you want to … Read more

How to Change Hostname on Ubuntu 20.04

To change the hostname on Ubuntu 20.04, you can use the hostnamectl command. Here are the steps to change the hostname on Ubuntu 20.04: Open a terminal window on your Ubuntu 20.04 system. Check the current hostname by running the following command: hostnamectl To change the hostname, use the following command, replacing “new_hostname” with the … Read more