Advertisement
para_bellum

Failed to load steamui.so

Jun 6th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Can be debugged using ldd:
  2.  
  3. find /home/para/ -name "steamui.so" # then go there
  4. ldd steamui.so
  5.  
  6. There will probably be a bunch of libraries marked as "not found". Find them and add them to the library path.
  7. Example:
  8. para@debian-ulb:~/.steam/ubuntu12_32$ LD_LIBRARY_PATH=/home/para/.steam/ubuntu12_32/:/home/para/.steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/:/home/para/.steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu/:/usr/lib/mesa-diverted/i386-linux-gnu/ steam
  9.  
  10. Finally, add it to your .bashrc:
  11. export LD_LIBRARY_PATH=/home/para/.steam/ubuntu12_32/:/home/para/.steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/:/home/para/.steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu/:/usr/lib/mesa-diverted/i386-linux-gnu/:$LD_LIBRARY_PATH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement