Installing maas-rack-controller on Ubuntu 17.04 LTS

Example of installing maas-rack-controller on Ubuntu 17.04 LTS using the command sudo apt-get install maas-rack-controller.


 

Ads

Quick installation of maas-rack-controller:

Step 1: Update system:

	sudo apt-get update

Step 2: Install: maas-rack-controller

Ater updaing the OS run following command to install the packae:

	sudo apt-get install maas-rack-controller

Package Details

Package:maas-rack-controller
Version:2.1.0~beta2+bzr5454-0ubuntu1
Maintainer:Ubuntu Developers
Home page:http://maas.io/
Description:Rack Controller for MAAS The MAAS rack controller (maas-rackd) provides highly available, fast and local broadcast services to the machines provisioned by MAAS. You need a MAAS rack controller attached to each fabric (which is a set of trunked switches). You can attach multiple rack controllers to these physical networks for high availability, with secondary rack controllers automatically stepping to provide these services if the primary rack controller fails. . A common configuration is to have a rack controller in each rack, with a fast primary network interface to the rack switch and secondary network interfaces on one or two other nearby racks for high availability redundancy. . This package depends on the necessary components to provide iSCSI, DHCP, TFTP and power management.
Distro:Ubuntu 17.04
Release:
Repo/Section:net

How to install maas-rack-controller on Ubuntu 17.04?

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 maas-rack-controller is not installed on your compter then the command 'dpkg -L maas-rack-controller' will give followin error.

deepak@deepak-VirtualBox:~$ dpkg -L maas-rack-controller
dpkg-query: package 'maas-rack-controller' 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 maas-rack-controller:

After system update use the following command to install maas-rack-controller:

sudo apt-get install maas-rack-controller

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.

How to uninstall/remove maas-rack-controller from Ubuntu 17.04?

Now we will see the commands for uninstalling the maas-rack-controller 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 maas-rack-controller following command is used:

sudo apt-get remove  maas-rack-controller

Following command is used to remove the maas-rack-controller package along with its dependencies:

sudo apt-get remove --auto-remove maas-rack-controller

This will remove maas-rack-controller and all its dependent packages which is no longer needed in the system.

Completely removing maas-rack-controller with all configuration files:

Following command should be used with care as it deletes all the configuration files and data:

sudo apt-get purge maas-rack-controller

or you can use following command also:

sudo apt-get purge --auto-remove maas-rack-controller

Above command will remove all the configuration files and data associated with maas-rack-controller package. You can can't recover the delete data, so, use this command with care.