Because of the live ISO installed it was unable to detect the network device and we are not able configure the network device.
Solution to this issue we open the /etc/network/interfaces file do the changes follows
auto eth0
allow-hotplug eth0
#iface eth0 inet dhcp //modified this one
iface eth0 inet static //modified this one
ipaddress xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx
then restart the network service by type it in command line
sudo /etc/init.d/networking restart
Then Network device is configured sucessfully.
No comments:
Post a Comment