LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-07-2016, 02:00 PM   #1
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Rep: Reputation: 176Reputation: 176
Can't get Steam in Xubuntu 16.04LTS fresh install


Can't find Steam in Ubuntu Software Center or Synaptic Package Manager. Any ideas on how I can get it? Thanks.
 
Old 07-08-2016, 02:22 AM   #2
Keruskerfuerst
Senior Member
 
Registered: Oct 2005
Location: Horgau, Germany
Distribution: Manjaro KDE, Win 10
Posts: 2,199

Rep: Reputation: 164Reputation: 164
Then search

https://www.google.de/search?q=Ubunt...CIfnswHsu5fYBg

and a possible solution can be found here:

https://linuxconfig.org/how-to-insta...4-xenial-xerus
 
1 members found this post helpful.
Old 07-08-2016, 02:36 AM   #3
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
Follow the Install Steam link at the top.

http://store.steampowered.com/
 
1 members found this post helpful.
Old 07-08-2016, 02:05 PM   #4
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by Keruskerfuerst View Post
Thanks Keruskerfuerst. I took the easy way out and installed from the Steam website. Now I've got it installed but it won't launch. Here is what it shows in the terminal:

gregory@gregory-GA-A55M-DS2:~/Desktop$ steam
Running Steam on ubuntu 16.04 64-bit
STEAM_RUNTIME is enabled automatically
Installing breakpad exception handler for appid(steam)/version(0)
libGL error: unable to load driver: r600_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: r600
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
 
Old 07-08-2016, 02:06 PM   #5
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by DaneM View Post
Follow the Install Steam link at the top.

http://store.steampowered.com/
Thanks Dane. Took your advice and installed it but now it won't launch. Here's what the terminal shows:

gregory@gregory-GA-A55M-DS2:~/Desktop$ steam
Running Steam on ubuntu 16.04 64-bit
STEAM_RUNTIME is enabled automatically
Installing breakpad exception handler for appid(steam)/version(0)
libGL error: unable to load driver: r600_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: r600
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast

Any ideas?
 
Old 07-08-2016, 02:10 PM   #6
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
It looks like you need to install the drivers for your video card. What kind of card do you have?

Edit:
Try doing this:
Code:
sudo apt-get install libgl1-mesa-dri libgl1-mesa-dri:i386
If that doesn't work, try the other solutions posted here:
http://askubuntu.com/questions/61442...n-ubuntu-15-04

Last edited by DaneM; 07-08-2016 at 02:25 PM.
 
1 members found this post helpful.
Old 07-08-2016, 03:00 PM   #7
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by DaneM View Post
It looks like you need to install the drivers for your video card. What kind of card do you have?

Edit:
Try doing this:
Code:
sudo apt-get install libgl1-mesa-dri libgl1-mesa-dri:i386
If that doesn't work, try the other solutions posted here:
http://askubuntu.com/questions/61442...n-ubuntu-15-04
Thanks Dane. I ran the command and also one that should say my video card. I'll check into some of those other solutions when I have a little more time.
Code:
gregory@gregory-GA-A55M-DS2:~/Desktop$ sudo apt-get install libgl1-mesa-dri libgl1-mesa-dri:i386
[sudo] password for gregory: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libgl1-mesa-dri is already the newest version (11.2.0-1ubuntu2).
libgl1-mesa-dri:i386 is already the newest version (11.2.0-1ubuntu2).
libgl1-mesa-dri:i386 set to manually installed.
The following package was automatically installed and is no longer required:
  kde-l10n-engb
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
gregory@gregory-GA-A55M-DS2:~/Desktop$ lspci | grep VGA
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek [Radeon HD 6530D]
gregory@gregory-GA-A55M-DS2:~/Desktop$
 
Old 07-09-2016, 02:45 AM   #8
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
It looks like AMD has ended official Linux support for their proprietary drivers, as of Ubuntu 16.04. However, they have contributed substantially to the open-source drivers. Let's see if the default drivers are providing direct rendering.

Code:
glxinfo | grep direct
If you get "direct rendering: yes", that means you have 3D acceleration, which is what you want. Then, it probably just becomes a matter of installing whatever libraries Steam wants (as above).
 
Old 07-09-2016, 02:47 PM   #9
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by DaneM View Post
It looks like AMD has ended official Linux support for their proprietary drivers, as of Ubuntu 16.04. However, they have contributed substantially to the open-source drivers. Let's see if the default drivers are providing direct rendering.

Code:
glxinfo | grep direct
If you get "direct rendering: yes", that means you have 3D acceleration, which is what you want. Then, it probably just becomes a matter of installing whatever libraries Steam wants (as above).
Thanks Dane. Not on that computer till Monday. Will run your command then. (Have a nice weekend.)
 
Old 07-09-2016, 02:54 PM   #10
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Have Canonical removed Steam from their repositories? With Debian it's just "apt-get install steam", surely it's the same with derivatives?
(Using Steam and a Steam Controller under Sid without anything outside of the Debian Repo's [apart from the NVIDIA driver but I don't need to do that])

Last edited by 273; 07-09-2016 at 02:56 PM.
 
Old 07-09-2016, 10:29 PM   #11
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
Quote:
Originally Posted by 273 View Post
Have Canonical removed Steam from their repositories? With Debian it's just "apt-get install steam", surely it's the same with derivatives?
(Using Steam and a Steam Controller under Sid without anything outside of the Debian Repo's [apart from the NVIDIA driver but I don't need to do that])
It looks like you can get it from the repo in Mint 18, so probably in Ubuntu 16.04, as well. I prefer to download from the site, directly, but either way, the package is just an installer stub that downloads the rest directly from Valve. I wonder if, somehow, the dependencies weren't installed when the downloaded stub was. Try this:

Code:
sudo apt-get install -f
This will install any missing dependencies.
 
Old 07-10-2016, 06:25 AM   #12
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
Gregg,

As Dane M mentioned:

Quote:
It looks like AMD has ended official Linux support for their proprietary drivers, as of Ubuntu 16.04. However, they have contributed substantially to the open-source drivers.
http://www.omgubuntu.co.uk/2016/03/u...x-driver-16-04
 
Old 07-10-2016, 07:34 AM   #13
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by DaneM View Post
It looks like you can get it from the repo in Mint 18, so probably in Ubuntu 16.04, as well. I prefer to download from the site, directly, but either way, the package is just an installer stub that downloads the rest directly from Valve. I wonder if, somehow, the dependencies weren't installed when the downloaded stub was. Try this:

Code:
sudo apt-get install -f
This will install any missing dependencies.
I just tend to find that if a distribution provides a package it is much easier to use the one from the repositories and know that dependencies can be met than install form a third party and run the risk that there are some incompatible libraries somewhere.

As I mentioned I'm currently running the binary NVIDIA driver direct from NVIDIA and, additionally now I recall, I happen to be running VirtualBox from Oracle but I'd not recommend doing that until somebody is happy with their system and its stability.
 
Old 07-10-2016, 12:55 PM   #14
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
I agree that it's almost always best to use whatever's in the repository, first. With Steam for Linux, I ran into some bugs with the Ubuntu packages in the early days, and found that it was more reliable to download the .deb directly from Valve. Maybe that's changed; but so far, I haven't run into any problems with this method.

Either way, I think the OP is running into some kind of dependency problem that may or may not have been addressed by the installer .deb. r600_dri.so appears to be a graphics library. Doing some additional searching around, it looks like the problem stems from Steam including some libraries with its software that are outdated or incompatible with the other ones on the system. It's possible that the Ubuntu repo's .deb has fixed this. The solution to this problem, as described by Google searches is to remove Steam's built-in versions of the C++ library and compiler, which will cause it to use the OS's versions, and, presumably, build the missing library. Note that you may also have to "sudo apt-get install build-essential".

Code:
rm ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/libstdc++.so.6
rm ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/libgcc_s.so.1

Last edited by DaneM; 07-10-2016 at 12:56 PM.
 
Old 07-12-2016, 01:14 PM   #15
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by DaneM View Post
It looks like AMD has ended official Linux support for their proprietary drivers, as of Ubuntu 16.04. However, they have contributed substantially to the open-source drivers. Let's see if the default drivers are providing direct rendering.

Code:
glxinfo | grep direct
If you get "direct rendering: yes", that means you have 3D acceleration, which is what you want. Then, it probably just becomes a matter of installing whatever libraries Steam wants (as above).
Dane, Sorry for the delayed response. Had a busy Monday. I ran the command. Here's what it showed:

Code:
gregory@gregory-GA-A55M-DS2:~/Desktop$ glxinfo | grep direct
direct rendering: Yes
    GL_ARB_direct_state_access, GL_ARB_draw_buffers, 
    GL_ARB_draw_indirect, GL_ARB_draw_instanced, 
    GL_ARB_multi_draw_indirect, GL_ARB_occlusion_query2, 
gregory@gregory-GA-A55M-DS2:~/Desktop$
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu Gnome 14.04LTS Will Not Boot After Fresh Install Dretoven Ubuntu 6 05-31-2016 11:40 PM
Funky issues after upgrading from Xubuntu 15.10 to Xubuntu 16.04LTS Gregg Bell Linux - Software 2 04-24-2016 01:44 PM
Can't upgrade to Xubuntu 16.04LTS from Xubuntu 15.10 Gregg Bell Linux - Software 2 04-23-2016 06:20 PM
[SOLVED] Steam dumps on fresh install of -current Freaksta Slackware 17 01-10-2016 08:18 PM
[SOLVED] How much space should I dedicate to a fresh install of xubuntu danthemannewtolinux Linux - Newbie 1 02-05-2012 08:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:35 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration