1

could anyone help me with the following?

I'm a Ubuntu lover,

On my Desktop PC, I can run all Ubuntu versions up to 22.10. However, when I tried to install Ubuntu 23.04, I encountered an issue during installation. Even if I install Ubuntu 22.10 first and then try to upgrade to 23.04, I still encounter the same issue. Additionally, Even I faced this problem if I attempting to install Fedora Workstation 38 also. The issue persists in both cases. It could be the reason for latest Kernel update, I don't know actually.

The issue is given below.

[0.144417] x66/cu: SGX disabled by BIOS

[4.161053] ACPI BIOS Error (bug): Could not resolue symbol I_SB.PCIO.SATO.PRT._GTF.DSSP1, AE_NOT_FOUND (20221020/psargs-330)

[4.161178] ACPI Error: Aborting method S_SB.PCIO.SATO.PRTA. GTF due to preuious error (AE_ NOT_FOUND) (20221020/psparse 529)

[4.161622] API BIOS Error (bug): Could not resolve symbol ISB.PCIO.SATO.PRTO._GTF.DSSPJ,AE_NOT_FOUND(20221020/psarys-330)

[4.161744] ACPI Error: Aborting method. USB PCION SATO PRTO.GTF due to previous error (AE_NOT _FOUND) (20221020/psparse 529)

[4.162053] ACPI-BIOS Erpor (bug : Could not-resolve symbol I_SB.PCIO.SATO.PRTS._GTF.DSSPI, AE_NOT_FOUND (20221020/psargs-330)

[4.162175] ACPI Error: Aborting nethod _SB.PCIO.SATO.PRIS._GIF due to previous error (AE_NDT_FOUND) (20221020 psparse-529)

[4.163590] ACPI BIOS Error (hug): Could not resolve sumbol I_SB.PCIO.SATO,PRT._GTF.DSSPI,AE_NOT_FOUND(20221020/psargs-330)

[4.163713] ACPI Error: Aborting method _SB.PCIO.SATO.PRT._GTF due to previous error (AE_NOT_FOUND) (20221020/psparse-5292)

[4.168442] ACPI BIOS Error (bug) : Could not resolve symbol E_SB.PCIO.SATO.PRTO._GTF.DSSPI,AE_NDT_FOUND(20221020/psargs-330)

[4.168565] ACPI Error: Aborting method S_SB.PCIO.SATO.PRIO._GTF due to previous error (AE_NOT_FOUND) (20221020/psparse-529)

[4.172139] ACPI BIOS Error (bug): Could not resolue symbol E_SB.PCIO.SATO.PRTS._GTF.DSSPI, AE_NDT_FOUND (20221020/psargs-330)

[4.172261] ACPI Error: Aborting method _SB.PCIO.SATO.PRTS._GTF due to previous error (AE_NOT_FOUND) (20221020/psparse-529)

enter image description here

My PC benchmark is also here:

CPU:

  • Number of cores 6
  • Number of threads 12
  • Manufacturer GenuineIntel
  • Name Intel Core i7 8700K
  • Codename Coffee Lake
  • Specification Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz

Motherboard:

  • Z370 AORUS Gaming 3 (0x00000564 - 0x9CF8F233)
  • Manufecturer Gigabyte Technology Co Ltd.

SMBIOS Version 3.1

BIOS (Updated to Latest Version)

  • vendor American Megatrends Inc.
  • version F15
  • date 11/13/2021
  • ROM size 16384 KB

RAM: 64GB DDR4

Graphics-Card NVIDIA GeForce GTX 1050 Ti

Thanks in advanced.

1 Answers1

0

I've found a solution, but I'm not sure if it's a good one. My device's performance is not as good as it used to be, but it's acceptable.

  1. I installed Ubuntu 23.04 using safe-graphics mode without installing any 3rd party graphics libraries.

  2. After installation, during startup, I edited the boot option by pressing [e], and I added nomodeset at the end of this line: linux /boot/vmlinuz-x.x..../..

  3. The PC started without graphics, and then I downloaded the NVIDIA graphics driver (NVIDIA-Linux-x86_64-535.86.05.run) from the official site.

  4. I ran the following commands in the terminal:

  • sudo apt install build-essential libglvnd-dev pkg-config
  • sudo telinit 3
  1. Navigating to the Download directory, I made the NVIDIA driver executable with the command: sudo chmod +x ./NVIDIA-Linux-x86_64-535.86.05.run, and then I installed it using: sudo ./NVIDIA-Linux-x86_64-535.86.05.run

  2. The installation was successful, and the Graphics driver was automatically enabled in the X-Server config (No manual intervention needed during installation; it prompted me for this), and I also installed the 32-bit package library when prompted.

  3. I rebooted again and started the desktop using the same approach by adding nomodeset as described in step 2.

  4. To make the nomodeset setting permanent, I updated grub by running: sudo nano /etc/default/grub, and I added nomodeset to GRUB_CMDLINE_LINUX_DEFAULT. For example, I added: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset".

  5. Press ctrl-x to save and exit.

  6. Execute "sudo update-grub" and wait for it to finish.

Then Reboot the system.

Please suggest me anything important, if I missed or If I did wrong. Any suggestions will be highly appreaciable. Thanks in advanced.