Advertisement
Guest User

Untitled

a guest
Jul 9th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. user@server2:~$ uname -a
  2. Linux server2 4.6.3 #1 SMP Fri Jul 8 17:27:50 MDT 2016 x86_64 x86_64 x86_64 GNU/Linux
  3. user@server2:~$ google-chrome &
  4. [1] 2843
  5. user@server2:~$ libGL error: failed to open drm device: Permission denied
  6. libGL error: failed to load driver: i965
  7. [2843:2843:0709/095421:ERROR:process_singleton_posix.cc(966)] Failed to create socket directory.
  8. [2843:2843:0709/095421:ERROR:chrome_browser_main.cc(1432)] Failed to create a ProcessSingleton for your profile directory. This means that running multiple instances would start multiple browser processes rather than opening a new window in the existing process. Aborting now to avoid profile corruption.
  9.  
  10. One fix suggestion was to add the user to group video. I did so and now I get this error.
  11.  
  12. user@server2:~$ google-chrome &
  13. [1] 2783
  14. user@server2:~$ libGL error: failed to authenticate magic 2
  15. libGL error: failed to load driver: i965
  16. [2783:2783:0709/100303:ERROR:process_singleton_posix.cc(966)] Failed to create socket directory.
  17. [2783:2783:0709/100303:ERROR:chrome_browser_main.cc(1432)] Failed to create a ProcessSingleton for your profile directory. This means that running multiple instances would start multiple browser processes rather than opening a new window in the existing process. Aborting now to avoid profile corruption.
  18.  
  19. user@server2:~$ locate i965_dri.so
  20. /usr/lib/x86_64-linux-gnu/dri/i965_dri.so
  21. user@server2:~$ sudo updatedb && locate i965_dri.so
  22. [sudo] password for user:
  23. /usr/lib/i386-linux-gnu/dri/i965_dri.so
  24. /usr/lib/x86_64-linux-gnu/dri/i965_dri.so
  25. user@server2:~$ sudo lsmod | grep i965
  26. user@server2:~$ sudo modprobe i965_dri
  27. modprobe: FATAL: Module i965_dri not found.
  28. user@server2:~$ sudo modprobe i965_dri.so
  29. modprobe: FATAL: Module i965_dri.so not found.
  30. user@server2:~$ sudo insmod i965_dri.so
  31. insmod: ERROR: could not load module i965_dri.so: No such file or directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement