Zelatrix
Posts: 6
Joined: Sun Jul 12, 2020 4:06 pm

No Internet on Raspberry Pi and display problems

Sun Jul 12, 2020 4:13 pm

I have a Raspberry Pi 4 that I bought recently and I have managed to flash Raspbian onto an SD card and boot it up. I have a few things installed, but recently, I have noticed that my internet has not been working at all, and I frequently lose display connection. I have set up a static IP address using

Code: Select all

dhcpcd.conf
and rebooted to see if they connect, and only the Ethernet is connecting. However, I still can't access the internet, and all the testing I have done reveals that running the command

Code: Select all

service dhcpd status
results in the output

Code: Select all

pi@raspberrypi:/media/pi/Seagate Barracuda 1TB/Scripts $ service dhcpcd status 
● dhcpcd.service - dhcpcd on all interfaces
   Loaded: loaded (/lib/systemd/system/dhcpcd.service; enabled; vendor preset: enable
   Active: active (running) since Mon 2020-07-13 22:02:54 BST; 1 day 13h ago
 Main PID: 422 (dhcpcd)
    Tasks: 2 (limit: 4915)
   Memory: 6.0M
   CGroup: /system.slice/dhcpcd.service
           ├─422 /sbin/dhcpcd -q -b
           └─511 wpa_supplicant -B -c/etc/wpa_supplicant/wpa_supplicant.conf -iwlan0 

Jul 14 22:41:50 raspberrypi dhcpcd[422]: eth0: IAID 32:76:8e:e5
Jul 14 22:41:50 raspberrypi dhcpcd[422]: eth0: adding address fe80::13e1:b40f:d40c:5b
Jul 14 22:41:50 raspberrypi dhcpcd[422]: ipv6_addaddr1: Permission denied
Jul 14 22:41:50 raspberrypi dhcpcd[422]: eth0: rebinding lease of 192.168.0.63
Jul 14 22:41:50 raspberrypi dhcpcd[422]: eth0: probing address 192.168.0.63/24
Jul 14 22:41:51 raspberrypi dhcpcd[422]: eth0: soliciting an IPv6 router
Jul 14 22:41:54 raspberrypi dhcpcd[422]: eth0: leased 192.168.0.63 for 864000 seconds
Jul 14 22:41:54 raspberrypi dhcpcd[422]: eth0: adding route to 192.168.0.0/24
Jul 14 22:41:54 raspberrypi dhcpcd[422]: eth0: adding default route via 192.168.0.1
Jul 14 22:41:54 raspberrypi dhcpcd[422]: vethbb12183: deleting default route
So the service is running, but I cannot connect to the internet on my Pi. How can I fix this so that I can use the internet on my Raspberry Pi? In addition to this, I am also noticing that my Pi's connection to my HDMI monitor is frequently dropped, and booting my Pi results in a "No signal" message on my monitor. I don't know what to do.

I have also tried to ping Google's IP address, using the command

Code: Select all

ping 8.8.8.8 -c 4
and I get the following result, yet I still cannot connect to the internet.

Code: Select all

pi@raspberrypi:/sys/class/leds/led1 $ ping 8.8.8.8 -c 4
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=116 time=18.8 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=116 time=28.7 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=116 time=23.0 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=116 time=12.9 ms

--- 8.8.8.8 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 7ms
rtt min/avg/max/mdev = 12.860/20.835/28.722/5.808 ms

Return to “Troubleshooting”