Install xterm on Ubuntu: sudo apt-get install xterm
Learn how to install xterm with the command sudo apt-get install xterm on Ubuntus.
Quick installation of xterm:
Step 1: Update system:
sudo apt-get update
Step 2: Install: xterm
Ater updaing the OS run following command to install the packae:
sudo apt-get install xterm
Package Details | |
Package: | xterm |
Version: | 271-1ubuntu2.1 |
Maintainer: | Ubuntu X-SWAT |
Home page: | http://invisible-island.net/xterm/xterm.html |
Description: | X terminal emulator xterm is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that cannot use the window system directly. This version implements ISO/ANSI colors and most of the control sequences used by DEC VT220 terminals. . This package provides four commands: xterm, which is the traditional terminal emulator; uxterm, which is a wrapper around xterm that is intelligent about locale settings (especially those which use the UTF-8 character encoding), but which requires the luit program from the x11-utils package; koi8rxterm, a wrapper similar to uxterm for locales that use the KOI8-R character set; and lxterm, a simple wrapper that chooses which of the previous commands to execute based on the user's locale settings. . A complete list of control sequences supported by the X terminal emulator is provided in /usr/share/doc/xterm. . The xterm program uses bitmap images provided by the xbitmaps package. . Those interested in using koi8rxterm will likely want to install the xfonts-cyrillic package as well. Multi-Arch: foreign Homepage: http://invisible-island.net/xterm/xterm.html |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | x11 |
How to install xterm on Ubuntu 12.04 LTS?
First of all update your system with the command:
sudo apt-get update
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If xterm is not installed on your compter then the command 'dpkg -L xterm' will give followin error.
Installing xterm:
After system update use the following command to install xterm:
sudo apt-get install xterm
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
How to uninstall/remove xterm from Ubuntu 12.04 LTS?
Now we will see the commands for uninstalling the xterm from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the xterm following command is used:
sudo apt-get remove xterm
Following command is used to remove the xterm package along with its dependencies:
sudo apt-get remove --auto-remove xterm
This will remove xterm and all its dependent packages which is no longer needed in the system.
Completely removing xterm with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge xterm
or you can use following command also:
sudo apt-get purge --auto-remove xterm
Above command will remove all the configuration files and data associated with xterm package. You can can't recover the delete data, so, use this command with care.