How to set the Gnome Default Terminal Emulator on Ubuntu 18.04 LTS
Ubuntu also allows you to set the standard terminal emulator according to your needs and wishes. In this tutorial, we will learn how to do this.
We will execute the commands below in Ubuntu 18.04 LTS (Bionic Beaver).
Open the default terminal emulator on your Ubuntu by pressing Ctrl+Alt+T.
The standard terminal on our machine is the Gnome Terminal.
Change Terminal Emulator from Gnome Terminal to Xterm
Run the following command:$ sudo update-alternatives --config x-terminal-emulator
Tip: You can also copy this command from the tutorial by selecting and copying it through Ctrl+C and then pasting it in the Terminal by right-clicking at the cursor location, and then clicking Paste from the menu.
Changing the terminal emulator requires you to be a superuser. Enter the password and press enter.
The output will display the available terminal emulators on your system. Remember that the output can vary on your system depending on the alternatives you have installed.
Enter the number associated with your choice from the available list and click enter.
We are entering selection number 5 that corresponds to xterm, the new default terminal emulator we want to set. The following output will confirm the changes we have made:
Now when you press Ctrl+Alt+T (or type x-terminal-emulator in your already open terminal emulator) , your new terminal emulator will open as your default choice. In our case we will see the xterm terminal emulator open as follows:
You can now use this new terminal emulator as your default choice. We have seen that in Ubuntu, this process is as easy as running a single command.
Comments
Post a Comment