Advertisement
Guest User

Untitled

a guest
Jan 28th, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. # CachyOS Boot Troubleshooting (ASUS Motherboard)
  2.  
  3. ### 1. Boot with ACPI Workarounds
  4. # At the GRUB boot menu:
  5. # - Press 'e' to edit the boot entry.
  6. # - Find the line starting with 'linux' or 'linuxefi'.
  7. # - Add one of the following options at the end (try one at a time):
  8.  
  9. acpi=off
  10. acpi=ht
  11. pci=noacpi
  12. acpi=strict
  13.  
  14. # - Press 'Ctrl+X' or 'F10' to boot.
  15. # If this works, make it permanent:
  16.  
  17. sudo nano /etc/default/grub
  18.  
  19. # Find this line:
  20. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  21.  
  22. # Modify it:
  23. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"
  24.  
  25. # Save & update GRUB:
  26. sudo grub-mkconfig -o /boot/grub/grub.cfg
  27.  
  28. ### 2. Update ASUS BIOS
  29. # - Go to the ASUS support page for your motherboard.
  30. # - Download the latest BIOS update.
  31. # - Follow ASUS instructions for updating via EZ Flash in BIOS.
  32.  
  33. ### 3. Install the LTS Kernel
  34. sudo pacman -S linux-lts linux-lts-headers
  35. sudo grub-mkconfig -o /boot/grub/grub.cfg
  36. # Reboot and select the LTS kernel.
  37.  
  38. ### 4. Disable Secure Boot & TPM
  39. # - Enter BIOS (Press 'F2' or 'Del' at boot).
  40. # - Navigate to: Boot → Secure Boot → Set to Disabled.
  41. # - Navigate to: Advanced → Trusted Computing → Disable TPM.
  42. # - Save & Exit.
  43.  
  44. ### 5. Change SATA Mode (If Using a SATA Drive)
  45. # - Enter BIOS ('F2' or 'Del' at boot).
  46. # - Go to Advanced → SATA Configuration.
  47. # - Change SATA Mode to AHCI.
  48. # - Save & Exit.
  49.  
  50. ### 6. Verify Installation Media (For Fresh Installs)
  51. # If this is a new install:
  52. # - Redownload the CachyOS ISO.
  53. # - Reflash using Ventoy or Rufus (DD mode).
  54. # - Try booting from a USB 2.0 port instead of USB 3.0.
  55.  
  56. ### 7. Disable SGX in BIOS (If Available)
  57. # - Enter BIOS ('F2' or 'Del' at boot).
  58. # - Navigate to Advanced Settings.
  59. # - Find 'SGX (Software Guard Extensions)' and disable it.
  60. # - Save & Exit.
  61.  
  62. ### Final Steps
  63. # Try these in order:
  64. # 1. Boot with kernel parameters.
  65. # 2. Update BIOS.
  66. # 3. Install the LTS kernel.
  67. # 4. Disable Secure Boot & TPM.
  68. # 5. Change SATA mode to AHCI.
  69. # 6. Verify installation media.
  70.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement