You are not logged in.
hi all
chimaera installed thanks to refractinstaller
but I need some help cause network don't work
(sorry for following message not in english)
how can I setup wifi or wired network?
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enx00243218dfaa: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 00:24:32:18:df:aa brd ff:ff:ff:ff:ff:ff
# apt update
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
Errore:1 http://deb.devuan.org/merged chimaera InRelease
Risoluzione di "deb.devuan.org" temporaneamente non riuscita
Lettura elenco dei pacchetti...
Generazione albero delle dipendenze...
Lettura informazioni sullo stato...
Tutti i pacchetti sono aggiornati.
W: Impossibile recuperare http://deb.devuan.org/merged/dists/chimaera/InRelease Risoluzione di "deb.devuan.org" temporaneamente non riuscita
W: Impossibile scaricare alcuni file di indice: saranno ignorati o verranno usati quelli vecchi.
Offline
Assuming this is your wired interface:
dhclient enx00243218dfaa
Ok, the problem is in /etc/network/interfaces. Replace eth0 with enx00243218dfaa or do something to change that long name. Is that a usb ethernet dongle? You shouldn't see interface names like that for internal interfaces.
Offline
nomorelogic: I thought the command was
# apt-get update
on devuan/debian.
Offline
well... this response is from devuan chimaera with xfce installed
# uname -a
Linux refracta 5.10.0-4-amd64 #1 SMP Debian 5.10.19-1 (2021-03-02) x86_64 GNU/Linux
thanks to command dhclient I was able to connect to network
and yes, I don't have a wired interface on board but I need a usb/thunderbolt to connect as wired
All update done as:
#apt update
#apt upgrade
#tasksel
@jacksprat
I don't know the difference between apt and apt-get, looking around I found that "apt is better way in devuan/debian shell".
Do I'm wrong?
I can see this is a pre-beta, some fixes are needed but I think I can use this installation to experiment.
Just to let you know:
This is content of file interfaces:
cat /etc/network/interfaces
auto lo
iface lo inet loopback
If I can help to test something you can ask.
after reboot and log in xfce, to connect to network, dhclient was needed again
now I can see only wired interface but I've wifi too.
I hope I can uses wifi in future.
# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enx34298f882acf: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 34:29:8f:88:2a:cf brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global dynamic enx34298f882acf
valid_lft 85887sec preferred_lft 85887sec
inet6 fe80::3629:8fff:fe88:2acf/64 scope link
valid_lft forever preferred_lft forever
Thanks again to you guys.
nomorelogic
Offline
You shouldn't see interface names like that for internal interfaces.
That interface name is derived from the MAC address and is used when the firmware doesn't provide onboard or hotplug index numbers or the physical location of the device connector is unknown. This is most common for USB devices but it can also happen with internal cards.
I don't know the difference between apt and apt-get, looking around I found that "apt is better way in devuan/debian shell".
Do I'm wrong?
The apt command offers a more "user-friendly" interface for APT and is currently recommended over apt-get for interactive use but not for scripting (because the command interface isn't stable yet).
after reboot and log in xfce, to connect to network, dhclient was needed again
Edit /etc/network/interfaces to configure the device:
auto enx34298f882acf
iface enx34298f882acf inet dhcp
See also https://wiki.debian.org/NetworkConfigur … _interface & interfaces(5).
Brianna Ghey — Rest In Power
Offline