Learn how to install rdnssd with the command sudo apt-get install rdnssd on Ubuntus.
Ads
Quick installation of rdnssd:
Step 1: Update system:
sudo apt-get update
Step 2: Install: rdnssd
Ater updaing the OS run following command to install the packae:
sudo apt-get install rdnssd
Package Details | |
Package: | rdnssd |
Version: | 1.0.1-1ubuntu1 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.remlab.net/ndisc6/ |
Description: | IPv6 recursive DNS server discovery daemon rdnssd autoconfigures recursive DNS servers on IPv6 networks using ICMPv6 Neighbor Discovery (RFC 5006), and can update the DNS resolvers configuration (/etc/resolv.conf) accordingly. Homepage: http://www.remlab.net/ndisc6/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/net |
First of all update your system with the command:
sudo apt-get update
Ads
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 rdnssd is not installed on your compter then the command 'dpkg -L rdnssd' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L rdnssd Package `rdnssd' 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 rdnssd:
After system update use the following command to install rdnssd:
sudo apt-get install rdnssd
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.
Now we will see the commands for uninstalling the rdnssd 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 rdnssd following command is used:
sudo apt-get remove rdnssd
Following command is used to remove the rdnssd package along with its dependencies:
sudo apt-get remove --auto-remove rdnssd
This will remove rdnssd and all its dependent packages which is no longer needed in the system.
Completely removing rdnssd with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge rdnssd
or you can use following command also:
sudo apt-get purge --auto-remove rdnssd
Above command will remove all the configuration files and data associated with rdnssd package. You can can't recover the delete data, so, use this command with care.