You are not logged in.
Pages: 1
Hi guys. I am new at arch. I just installed it in vm and I am not able to share with you files because network doesn't work here, ping google.com gives: name or service not known [after I added dns addresses in /etc/resolve.conf before it it was: temporary failure in name resolution ], curl google.com gives: couldn't resolve host. Then I switched to NAT in vm network setting, also useless. Have any Ideas? Thanks in advance.
Offline
Start w/ some basic information.
1. How do you configure the network devices/connections?
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f2. Output of "ip a; ip r"?
3. Output of "lspci; lsusb"?
Online
Start w/ some basic information.
1. How do you configure the network devices/connections?
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f2. Output of "ip a; ip r"?
3. Output of "lspci; lsusb"?
1.
2.
ip r: empty
3.
lsusb: command not found
Sorry I can't nor copy-paste the result neither use pastebin service
Last edited by callmer (2021-01-08 09:23:41)
Offline
Please replace the embedded images w/links.
You botched the "find" command, try
find /etc/systemd -type l -exec test -f {} \; -print(the rest is mostly to fancy the output)
The NIC is there and up and you've a carrier but no lease, suggesting the answer to " How do you configure the network devices/connections?" is "not".
https://wiki.archlinux.org/index.php/Ne … management
You probably want to use dhcp.
Edit: stutter ;-)
Last edited by seth (2021-01-08 09:28:38)
Online
Please replace the embedded images w/links.
You botched the "find" command, try
find /etc/systemd -type l -exec test -f {} \; -print(the rest is mostly to fancy the output)
The NIC is there and up and you've a carrier but no lease, suggesting the answer to " How do you configure the network devices/connections?" is "not".
https://wiki.archlinux.org/index.php/Ne … management
You probably want to use dhcp.Edit: stutter ;-)
here is the link of image of find comman's result https://hkar.ru/13HxJ
Maybe, is it something that I should change in vm or in arch? I mean if I'll install arch on my real machine is it necessary to do likely network configurations? I'll let you know after reading article you sent.
edit: You are right I don't have DHCP, and one more thing I don't have tools from articles you sent(ifconfig for example)
Last edited by callmer (2021-01-08 09:48:27)
Offline
Arch doesn't include tool for connecting to network after installation. Boot into usb or whatever medium you are using again and install dhcpcd. Type "systemctl enable dhcpcd" afterward.
Offline
[double post]
Last edited by PPK (2021-01-10 08:27:59)
Offline
When you install arch on your "real machine", ensure to follow the installation guide.
https://wiki.archlinux.org/index.php/In … l_packages
@PPK, you can't. You can report it and a mod can, but typically you'd just replace it w/ sth. like "[double post]" or so.
Online
When you install arch on your "real machine", ensure to follow the installation guide.
https://wiki.archlinux.org/index.php/In … l_packages@PPK, you can't. You can report it and a mod can, but typically you'd just replace it w/ sth. like "[double post]" or so.
pacstrap: command not found
Offline
you need to do that from the iso. Mount your root partition somewhere and pacstrap the missing packages.
or as you do have systemd: https://wiki.archlinux.org/index.php/Systemd-networkd
Last edited by V1del (2021-01-09 15:32:14)
Offline
pacstrap is available on the installation iso, not your installed system.
You need to read and follow the *entire* guide, I just linked the section you apparently missed.
Edit: ninja'd by seconds. Revenge of the V1del…
Last edited by seth (2021-01-09 15:31:23)
Online
I am not sure, but it seems like the problem is that I deleted ISO before installing NetworkManager, so it hadn't configured internet. Am I right? Now it all works.
Last edited by callmer (2021-01-09 20:05:06)
Offline
Pages: 1