Can't access internet in kali virtualbox
I have Kali linux installed on Virtualbox 4.3 and my host OS is fedora 19 i have bridged the VM with fedora but in kali it said that device not managed. is there anyway to fix it? thanks.
Solution 1:
It is not broken, it is a feature. Kali comes with networking disabled by default to prevent denouncing your own presence through an unconscionable DHCP request.
You will have to start your connection with the traditional Linux means, something like
sudo ifconfig eth0 up
sudo dhclient eth0
or some such thing, depending on how you see fit.
Solution 2:
The solution was this
vi /etc/NetworkManager/NetworkManager.conf
Change false
to true
And then
service network-manager restart