Example of installing xen-hypervisor-4.7-amd64 on Ubuntu 17.04 LTS using the command sudo apt-get install xen-hypervisor-4.7-amd64.
Ads
Quick installation of xen-hypervisor-4.7-amd64:
Step 1: Update system:
sudo apt-get update
Step 2: Install: xen-hypervisor-4.7-amd64
Ater updaing the OS run following command to install the packae:
sudo apt-get install xen-hypervisor-4.7-amd64
Package Details | |
Package: | xen-hypervisor-4.7-amd64 |
Version: | 4.7.0-0ubuntu2 |
Maintainer: | Ubuntu Developers |
Home page: | |
Description: | Xen Hypervisor on AMD64 The hypervisor is the "core" for XEN itself. It gets booted by the boot loader and controls cpu and memory, sharing them between your administrative domain (Domain 0) and the virtual guest systems. . In order to boot a XEN system along with this package you also need a kernel specifically crafted to work as the Domain 0, mediating hardware access for XEN itself. |
Distro: | Ubuntu 17.04 |
Release: | |
Repo/Section: | universe/kernel |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 17.04 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 xen-hypervisor-4.7-amd64 is not installed on your compter then the command 'dpkg -L xen-hypervisor-4.7-amd64' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L xen-hypervisor-4.7-amd64 dpkg-query: package 'xen-hypervisor-4.7-amd64' is not installed Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing xen-hypervisor-4.7-amd64:
After system update use the following command to install xen-hypervisor-4.7-amd64:
sudo apt-get install xen-hypervisor-4.7-amd64
Above command will confirm before installing the package on your Ubuntu 17.04 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.
Now we will see the commands for uninstalling the xen-hypervisor-4.7-amd64 from Ubuntu 17.04. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the xen-hypervisor-4.7-amd64 following command is used:
sudo apt-get remove xen-hypervisor-4.7-amd64
Following command is used to remove the xen-hypervisor-4.7-amd64 package along with its dependencies:
sudo apt-get remove --auto-remove xen-hypervisor-4.7-amd64
This will remove xen-hypervisor-4.7-amd64 and all its dependent packages which is no longer needed in the system.
Completely removing xen-hypervisor-4.7-amd64 with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge xen-hypervisor-4.7-amd64
or you can use following command also:
sudo apt-get purge --auto-remove xen-hypervisor-4.7-amd64
Above command will remove all the configuration files and data associated with xen-hypervisor-4.7-amd64 package. You can can't recover the delete data, so, use this command with care.