Advertisement
KC9UZR

Macbook Pro Fedora Issues Fix

Sep 8th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Mac book Pro Wifi and Sleep Issue Fedora Fix
  2.  
  3.  
  4.  
  5.  
  6.  
  7. dnf install kmod-wl
  8.  
  9.  
  10. Make the sleep file
  11.  
  12.  
  13.  
  14. [Unit]
  15. Description=Improve MacBook Pro setup
  16.  
  17. [Service]
  18. Type=oneshot
  19. ExecStart=/bin/bash -c "echo 1 > /sys/module/snd_hda_intel/parameters/power_save && echo LID0 > /proc/acpi/wakeup && echo XHC1 > /proc/acpi/wakeup"
  20.  
  21. [Install]
  22. WantedBy=multi-user.target
  23.  
  24. Save these file as
  25.  
  26. /etc/systemd/system/mbp.service
  27.  
  28. and run above command to enable that:
  29.  
  30. $ systemctl daemon-reload && systemctl enable mbp
  31.  
  32.  
  33.  
  34. """ https://medium.com/@fh_bash/install-fedora-25-on-macbook-pro-68f069f471a4 """
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement