Refresh mirrorlist

There’s your problem Domain Name resolution.

Try changing your name server to 1.1.1.1

Garuda assistant has an easy way to alter your DNS server (select Cloudflare).

Reboot comp & router afterwards.

3 Likes

done, now what?

redo pings

kit@sussy in ~
λ ping -c5 google.com; ping -c5 8.8.8.8
PING google.com (66.102.1.138) 56(84) bytes of data.

--- google.com ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 4097ms

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=110 time=106 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=110 time=96.3 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=110 time=109 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=110 time=86.0 ms
64 bytes from 8.8.8.8: icmp_seq=5 ttl=110 time=81.8 ms

--- 8.8.8.8 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4004ms
rtt min/avg/max/mdev = 81.780/95.821/109.065/10.705 ms

also i couldnt restart my router since my dad is uh sleeping next to it and i do not want to wake him up so :sweat_smile:

You usually can also reboot the router through the router configuration interface. The IP address you need to access it is brand/manufacturer specific. You will also need to know the access password, however most people simply/foolishly leave it at the router manufacturers default.

Post:

cat /etc/resolv.conf
kit@sussy in ~
λ cat /etc/resolv.conf
File: /etc/resolv.conf
# Generated by NetworkManager
nameserver 1.1.1.1

Try this:

bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sleep 5 && sudo dhclient -v"
kit@sussy in ~
λ bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sleep 5 && sudo dhclient -v"
fish: $(...) is not supported. In fish, please use '(hwinfo)'.
bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5) && sleep 5 && sudo dhclient -v"

Sorry I'm old school I stick to bash, not fish. It leads to incompatibilities between the two.

oh i thought fish was basically bash with a different gui how do i switch to bash

Type bash

Or, stick with fish and try this instead:

Do not post the personal info such as MAC address returned from this command:

bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)" 

Then:

bash -c "sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"

Then:

bash -c "sudo dhclient -v"

Sorry my editing got messed up try that again.

λ bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"
[sudo] password for kit:         
Internet Systems Consortium DHCP Client 4.4.2-P1
Copyright 2004-2021 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   Socket/fallback
bash: line 2: wlo1: command not found

kit@sussy in ~ as 🧙 took 3s
[🔍] × bash -c "sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"
Internet Systems Consortium DHCP Client 4.4.2-P1
Copyright 2004-2021 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   Socket/fallback
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 13
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 13
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
bash: line 2: wlo1: command not found

kit@sussy in ~ as 🧙 took 1m1s
[🔍] × bash -c "sudo dhclient -v"
Internet Systems Consortium DHCP Client 4.4.2-P1
Copyright 2004-2021 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/wlo1/
Sending on   LPF/wlo1/
Listening on LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   Socket/fallback
DHCPDISCOVER on wlo1 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 6
DHCPOFFER of  from 
DHCPREQUEST for  on wlo1 to 255.255.255.255 port 67
DHCPACK of  from 
RTNETLINK answers: File exists
mv: cannot move '/etc/resolv.conf.dhclient-new' to '/etc/resolv.conf': Operation not permitted
bound to  -- renewal in 2917 seconds.

Let's try this one more time:

bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)" 

Then:

bash -c "sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"

Then:

ping -c5 cloudflare.com; ping -c5 1.1.1.1
1 Like
kit@sussy in ~ 
λ bash

kit@sussy in ~ took 10ms
λ bash -c "sudo dhclient -v -r $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"
[sudo] password for kit:         
Killed old client process
Internet Systems Consortium DHCP Client 4.4.2-P1
Copyright 2004-2021 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   Socket/fallback
bash: line 2: wlo1: command not found

kit@sussy in ~ as 🧙 took 5s
[🔍] × bash -c "sudo dhclient -v $(hwinfo --netcard | grep "Device File" | cut -d " " -f5)"
Internet Systems Consortium DHCP Client 4.4.2-P1
Copyright 2004-2021 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   LPF/enp3s0/00:d8:61:05:d4:1f
Sending on   Socket/fallback
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 3
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 16
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on enp3s0 to 255.255.255.255 port 67 interval 1
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
bash: line 2: wlo1: command not found

kit@sussy in ~ as 🧙 took 1m1s
[🔍] × ping -c5 cloudflare.com; ping -c5 1.1.1.1
PING cloudflare.com (104.16.133.229) 56(84) bytes of data.

--- cloudflare.com ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 4127ms

PING 1.1.1.1 (1.1.1.1) 56(84) bytes of data.

--- 1.1.1.1 ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 4134ms

Are you dual booting with windows?

1 Like

yes i am dual booting windows

Uhhh crap.

Shut down your computer completely and then unplug the power supply for a couple of minutes, then restart your computer,

1 Like

im kinda using a laptop do i just turn it off?

You need to remove the battery and the power supply after a full power down.

i need a screwdriver to access the battery and i dont even know where the power supply is and its like 1 am does it matter if i do this tomorrow