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