Guest User

ATI [Radeon 7550M/7570M/7650M] and Debian Sid No Graphics

a guest
Nov 5th, 2013
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. 1- No xorg.conf needed
  2. $ sudo rm /etc/X11/xorg.conf.*
  3. 2 - Remove all traces of fglrx (Uninstall AMD Drivers or Repo)
  4. 3 - Install firmware-linux-nonfree for the AMD Radeon firmware
  5. $ sudo apt-get install firmware-linux-nonfree
  6. 4 - Attention to anything that mentions "blacklist radeon" in the /etc/modprobe.d/*
  7. $ sudo nando /etc/modprobe.d/fbdev-blacklist.conf
  8. Edit: radeonfb -> #radeonfb
  9. 5 - Make sure all your initrds don't contain the blacklist and do contain the firmware
  10. $ sudo update-initramfs -u -k all
  11. 6 - Reboot
  12.  
  13. ## No Graphics Yet
  14. 1 - Let's Check dmesg
  15. $ dmesg |grep radeon
  16. [drm:radeon_init] *ERROR* No UMS support in radeon module!
  17. 2 - Fix It!
  18. $ sudo nano /boot/grub/grub.cfg
  19. ...
  20. menuentry 'Debian GNU/Linux, with Linux 3.10-3-amd64' --class debian {
  21. load_video
  22. insmod gzio
  23. ...
  24. linux /vmlinuz-3.10-3-amd64 root=/dev/.... ro vga=799 quiet nomodeset radeon.modeset=1
  25. echo 'Loading initial ramdisk ...'
  26. ...
  27. }
  28. ...
  29. Edit: radeon.modeset=0 -> radeon.modeset=1
  30.  
  31. 3 - Reboot
  32. 4 - Done!
  33.  
  34. Helpers:
  35. - https://bbs.archlinux.org/viewtopic.php?id=166037
  36. - https://plus.google.com/115608424649984682822/posts/VytxYoQ9Uys
  37.  
  38. Author: @SiMpS0N
Advertisement
Add Comment
Please, Sign In to add comment