Created
April 5, 2026 06:59
-
-
Save henri/f8b7087e160d2a44dd3e81f1c8d8da0b to your computer and use it in GitHub Desktop.
Display Power Issues on Linux Mint Cinnamon (iMac / Apple Computers)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # resolve power management issues on intel mac computers running LINUX | |
| # | |
| # add the acpi_osi=!Darwin Kernel Parameter | |
| # | |
| # edit GRUB: | |
| sudo nano /etc/default/grub | |
| # find the line GRUB_CMDLINE_LINUX_DEFAULT and add 'acpi_osi=!Darwin', 'quiet' and 'spash' paraemters example follows : | |
| GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi=!Darwin quiet splash" | |
| # update grub | |
| sudo update-grub | |
| # reboot system | |
| shutdown -h now | |
| # press power button | |
| cross fingers :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment