You are not logged in.
just found ping command doesn't work possible messed network files how to fix it
nano text editor installed
Last edited by tonimark (2021-04-06 20:02:39)
Offline
Did you enable dhcpcd? https://wiki.archlinux.org/index.php/Ne … figuration
Are you on ethernet or wifi?
Last edited by odiam (2021-04-06 18:18:28)
Offline
Did you enable dhcpcd? https://wiki.archlinux.org/index.php/Ne … figuration
Are you on ethernet or wifi?
ethernet connection
dhcpcd doesn't work probably uninstalled
Last edited by tonimark (2021-04-06 18:26:44)
Offline
Try to install it and enable it
Offline
Try to install it and enable it
should I do that with a bootable installer or file transfer?
how to install if I have no internet for Pacman in the first place?
Offline
You should have systemd-networkd installed. Use it.
Offline
You should have systemd-networkd installed. Use it.
i tried systemctl start dhcpd.service
I got error service.doesn't exists
Offline
tucuxi wrote:You should have systemd-networkd installed. Use it.
i tried systemctl start dhcpd.service
I got error service.doesn't exists
edit tried systemctl enable systemd-networkd.service
It did create something , I rebooted the computer but still ping google.com doesn't seems to work neither pacman
Last edited by tonimark (2021-04-06 19:07:26)
Offline
tweaking with networkctl fixed the issue
Offline
tweaking with networkctl fixed the issue
To get wired network, I found I had to:
create the file /etc/systemd/network/20-wired.network
[Match]
Name=en*
Name=eth*
[Network]
DHCP=yes
Then either restart or start:
$ sudo systemctl start systemd-networkd
$ sudo systemctl start systemd-resolved
It's a lot easier if you remember to install dhcpcd, and sudo systemctl start dhcpcd. I've forgotten on a few test systems.
I found parsing the wiki for the info to get a functional network using systemd somewhat obscured and time consuming? But I'm just a stupid ape that likes Arch! YMMV
Curious as to what you did to get your network up?
Offline
tonimark wrote:tweaking with networkctl fixed the issue
To get wired network, I found I had to:
create the file /etc/systemd/network/20-wired.network
[Match] Name=en* Name=eth* [Network] DHCP=yes
Then either restart or start:
$ sudo systemctl start systemd-networkd $ sudo systemctl start systemd-resolved
It's a lot easier if you remember to install dhcpcd, and sudo systemctl start dhcpcd. I've forgotten on a few test systems.
I found parsing the wiki for the info to get a functional network using systemd somewhat obscured and time consuming? But I'm just a stupid ape that likes Arch! YMMV
Curious as to what you did to get your network up?
Thank you so much, I can now connect to the internet.
Offline