-1

In my Ubuntu 22.04 system unable to get internet. I think this is due no drivers installed to get internet. There is no wifi driver, no Bluetooth driver & no modules to get ethernet or wired connection.so,no way to access internet at all.

No Bluetooth, No WiFi, No wired data from phone.

Then, I this code executed the following code with Ubuntu iso:

sudo mkdir /media/cdrom
cd~
sudo mount – o loop [name of installation ISO file].iso

Then I launched Software Updater and checked the cdrom iso checkbox and I went to the Additional drivers tab, but the tab says "no additional drivers available". How can I get back the internet in my device?

Image references:

  1. Results of sudo lshw -C network :

    image

  2. Results of iwconfig :

    image

  3. systemctrl: command not found :

    Shows

  4. Bluetooth is not turned on.

    image

  5. Bluetooth is not turned on.

    image

  6. list of services includes with network in its name.

    list of services NO_PUBKEY

karel
  • 122,292
  • 133
  • 301
  • 332

1 Answers1

2

It looks like some kernel upgrade was incomplete. Kernel modules are not installed. This hardware doesn't need any additional drivers.

Boot from a previous kernel using grub menu and run:

sudo apt update
sudo apt upgrade
Pilot6
  • 92,041