run the following from the command line (NOTE be careful with anything with sudo in front of the command, it essentially runs as root, the command below will show if NetworkManager is on):
sudo systemctl status NetworkManager
and post the first10 lines of the output.
——–
dgx spark is ubuntu 24.04. It looks like it uses NetworkManager as the default network management service.
——–
Another command that you can run from the command line is:
ifconfig
It will show you all the available interface and it’s ip address if it has one. The wireless one should look something like wlP8s8, it will at least start with the letter “wl” and 4 characters after.
PS interfaces are not named RJ45 in linux.
Problem solved. I brought up the device inside a wlan without Internet uplink. Nevertheless, the device applied Upgrades, no idea how, my explanation is that some new packages lay there from the start. However, that Update seemingly has broken some stuff. I reverted to the previous Kernel via Grub Boot loader, and now I have my Network devices.
Encountered similar issue, after a software update, Ethernet/Wifi/Bluetooth stopped working after the kernel was updated to 6.11.0-1016-nvidia.
Fixed it by manually installing the “linux-modules-extra-6.11.0-1016-nvidia” package via dpkg, for some reason the update somehow missed updating this package which included kernel modules for the wifi/ethernet module. Downloaded the deb file using a different computer and transferred to the DGX Spark via a thumb drive to workaround the lack of internet access.
can you explain this process in details please. I think I have the same issue. cannot get wifi/lan/bluetooth. it worked first time but after restarting it didn’t.
wondering how you installed this. I installed through ubuntu software center but it still says module r8153 not found ($ modinfo r8153) . any sequence of commands?
There are two kernel to boot 6.11.0-1014 and 6.11.0-1016 with the later being the default after updated. Try booting with the 1014 kernel, if your Spark worked before the update. That’s what @markus.schmidt must be referring to.
# If you do not have networking, download on a different computer and transfer it via a storage device over USB
wget "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia-6.11/linux-modules-extra-6.11.0-1016-nvidia_6.11.0-1016.16_arm64.deb"
sudo dpkg -i linux-modules-extra-6.11.0-1016-nvidia_6.11.0-1016.16_arm64.deb
Then reboot (or modprobe directly the involved kernel modules)
# If you do not have networking, download on a different computer and transfer it via a storage device over USB
wget "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia-6.11/linux-modules-extra-6.11.0-1016-nvidia_6.11.0-1016.16_arm64.deb"
sudo dpkg -i linux-modules-extra-6.11.0-1016-nvidia_6.11.0-1016.16_arm64.deb
This worked for me too - thanks! Needs to be pinned for new users I think, and also the update package fixed. Gave me a proper panic yesterday.