I know this might be a bit of a duplicate but I cant figure it out, I'm running Lubuntu and im completely new to stuff like this, I can connect but I can't use it, and when I try to use the commands people suggest they arent found, when I try to download them it fails. What am I doing wrong?
Asked
Active
Viewed 50 times
ping your.router.ip.address
,ping 8.8.8.8
etc? Have you checked to make sure the interface is up?ethtool eth0
for example, if your interface is named eth0, should show "Link detected: yes" on the last line for the interface details. If you can ping by IP, but not resolve anything, that is a DNS issue and you will need to make sure your interface has proper DNS settings assigned. Also check whether your interface settings are correct (link speed, etc). Perhaps the interface is set to manual, so you aren't receiving DNS via DHCP? – Chris Woods Apr 07 '19 at 16:49ifconfig
. On the left hand side, look for the interface which seems appropriate (on one of my Ubuntu VMs, it'seno1
, on others it can beeth0
,ens192
etc). Typesudo ifconfig <interface> up
, wheresudo dhclient
and after a few seconds tryping google.com
.