0

enter image description hereenter image description here

Got error when booting up my laptop if any suggestions to remove these error glad to know

aryan
  • 11
  • 1
  • 1
  • See here: https://stackoverflow.com/questions/72685814/cannot-install-ubuntu-20-04-sgx-disabled-by-bios – X99 Jul 15 '22 at 10:35
  • Cross-site duplicate: https://askubuntu.com/questions/1406760/sgx-disabled-by-bios-in-ubuntu-22-04 – Gino Mempin Jan 09 '23 at 00:23

2 Answers2

0

My ASUS laptop faced same issue and no solutions worked in my case. Unfortunately, I had to reinstall Ubuntu 22.04 from bootable USB. As long as you don't check Format box on installing partition selection, personal files will be kept under newly installed Ubuntu environment.

TakuMine
  • 131
  • 2
  • 5
0

I am guessing you have dual booted ubuntu and windows. If this is the case you might have acpi off in grub. Try this:

  1. Start your pc and get to grub screen to select between windows and ubuntu
  2. Press down/up to get to ubuntu line and press letter 'e' on keyboard.
  3. Look "quiet splash acpi=off" line.
  4. If you do not have "acpi=off", please disregard. If you do go to next step.
  5. Remove "acpi=off", and press ctrl + x
  6. Once you are booted into ubuntu open a terminal and type "sudo vim /etc/default/grub".
  7. Look for GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"
  8. Once again remove acpi=off. Hit esc, then :, then type wq, and hit enter.
  9. sudo update-grub

Hope this helps!

ByteTheBits
  • 319
  • 1
  • 5
  • 13