Recently I upgrade Kali linux 1.0.4 to 1.0.5, all goes well but when I try to up eth0 it didn't up and show message "Device Not Manage".
I did everything to get it up but no command avail to up it.
like:
root@kali:~#service networking restart
root@kali:~#service networking start
root@kali:~#ifconfig eth0 down
root@kali:~#ifconfig eth0 up
Then after googling I found one solution
root@kali:~# vi /etc/NetworkManager/NetworkManager.conf
Network manager will opened and you can see following line on that file.
Now edit and change false to true
Now use this command to restart Network manager
root@kali:~# service network-manager restart
Then you can see your LAN is working.
I did everything to get it up but no command avail to up it.
like:
root@kali:~#service networking restart
root@kali:~#service networking start
root@kali:~#ifconfig eth0 down
root@kali:~#ifconfig eth0 up
Then after googling I found one solution
root@kali:~# vi /etc/NetworkManager/NetworkManager.conf
Network manager will opened and you can see following line on that file.
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=false
Now edit and change false to true
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=true
Now use this command to restart Network manager
root@kali:~# service network-manager restart
Then you can see your LAN is working.
Comments
Post a Comment