LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-28-2014, 05:32 PM   #1
rockinroyle
LQ Newbie
 
Registered: Mar 2014
Distribution: slackware
Posts: 14

Rep: Reputation: Disabled
Slackware 14.1 64 Steam launch error "Failed to extract /usr/lib/steam/bootstraplinux


Hello all,

I'm having an issue with getting steam up and running on Slackware 14.1 64bit at the moment.After a lot of googling and reading some of the forums pertaining to steam and Slackware 14.1 64 here I am making my first post to linuxquestions Slackware forum. First off, Ive only been using Linux for 2 years and I'm only about 2 months into using Slackware for reasons that aren't important to this post. I've found nothing (that I know of) in the other threads that seems to be the issue I'm having. So here we go.
Today I tried installing steam on my Slackware machine via sbopkg. I checked the dependencies listed and installed them in the order necessary for sbopkg to build the steam package found through the sbopkg search which was steam-1.0.0.49-x86_64-1_SBo.tgz. The dependencies I first installed through sbopkg were OpenAL and flashplayer-plugin. I then followed this thread http://www.linuxquestions.org/questi...-a-4175485717/ to be able to convert these 64bit packages to compat32 packages and installed those via installpkg. Lso on the same thread I had read that a common issue is the 32bit libraries for the proprietary graphics card may not be installed. I had installed alienbobs multilib packages given on his page following his directions on how to do so previous to installing the proprietary graphics drivers but nevertheless, I removed the drivers and re-installed them for my ati/amd graphics card which is either radeonhd 6xxx or 7xxx? Not sure how to check that right now but I did check by Google search before first install. So, after all that I had figured,based on what I've read so far, that I was in business? When I launch steam using the launcher I get the bouncing icon for approximately 20sec and then it just disappears? If I try to launch via terminal I get
Code:
bash-4.2$ steam
Setting up Steam content in /home/ralph/.local/share/Steam
tar (child): /usr/lib/steam/bootstraplinux_ubuntu12_32.tar.xz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
Failed to extract /usr/lib/steam/bootstraplinux_ubuntu12_32.tar.xz, aborting installation.
I've only seen this issue posted pertaining to Debian installs and I'm not tech savvy enough to know whether the solutions are what I would be looking for? I hope I've provided enough info and if not I'm happy to produce it? I also hope this isn't a redundant or misplaced question and if it is please feel free to enlighten me? Thanks in advance to any responses!
 
Old 11-30-2014, 10:46 AM   #2
moisespedro
Senior Member
 
Registered: Nov 2013
Location: Brazil
Distribution: Slackware
Posts: 1,223

Rep: Reputation: 195Reputation: 195
When I was on slackware64 all I did was:

- Set up multilib
- Install the package from Alienbob

Nothing more than that, it worked flawlessly.

EDIT: I don't use the closed source driver so I don't know what is wrong.
 
1 members found this post helpful.
Old 11-30-2014, 02:34 PM   #3
rockinroyle
LQ Newbie
 
Registered: Mar 2014
Distribution: slackware
Posts: 14

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by moisespedro View Post
When I was on slackware64 all I did was:

- Set up multilib
- Install the package from Alienbob

Nothing more than that, it worked flawlessly.

EDIT: I don't use the closed source driver so I don't know what is wrong.
I've actually gotten past the point I was stuck at on my own. The issue was with the steam slackbuild I was using through sbopkg. Not sure why? I uninstalled and installed steam client from alienbob repo and works fine. Reinstalled ati proprietary drivers not using autodetect os method and just installed direct from the installer because it was not installing 32 bit binaries on my slackware 64 machine. Rebooted and all was well until I had no game controller ability? Looked around online and found a post saying to run dmesg (no idea what that does?) as root. Got a long readout and saw nothing pertaining to my logitech f310 gamepad so I rebooted again with gamepad unplugged in attempt to see if a reboot and then plugging in again would fix it? Now I have a "kernel panic not syncing vfs unknown block (8,2) on my generic 3.10.17 lol? Huge kernel boots fine and I'm currently looking into a way to compile a new kernel to add IOMMU support as my windows based gigabyte mobo has no usb 3.0 support atm and resolve the generic kernel panic I get in my existing one. Thanks for the reply! It is greatly appreciated and I will mark this as solved as it was my error to begin with
 
Old 11-30-2014, 02:55 PM   #4
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
Quote:
Originally Posted by rockinroyle View Post
Code:
bash-4.2$ steam
Setting up Steam content in /home/ralph/.local/share/Steam
tar (child): /usr/lib/steam/bootstraplinux_ubuntu12_32.tar.xz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
Failed to extract /usr/lib/steam/bootstraplinux_ubuntu12_32.tar.xz, aborting installation.
I guess that is because of these lines in the steam.SlackBuild script I found at slackbuilds.org:
Code:
if [ "$ARCH" = "x86_64" ]; then
  mv $PKG/usr/lib $PKG/usr/lib64
fi
The above is wrong. The lib directory contains the steamclient as well as the udev subdirectories and those need to be in /usr/lib .

I vote for my own pachage of course, as mentioned by moisespedro in the previous post. It works out of the box and on top of that, it adds some customization so you'll be able to manage potential sound issues.

Eric
 
4 members found this post helpful.
Old 11-30-2014, 09:07 PM   #5
rockinroyle
LQ Newbie
 
Registered: Mar 2014
Distribution: slackware
Posts: 14

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by Alien Bob View Post
I guess that is because of these lines in the steam.SlackBuild script I found at slackbuilds.org:
Code:
if [ "$ARCH" = "x86_64" ]; then
  mv $PKG/usr/lib $PKG/usr/lib64
fi
The above is wrong. The lib directory contains the steamclient as well as the udev subdirectories and those need to be in /usr/lib .

I vote for my own pachage of course, as mentioned by moisespedro in the previous post. It works out of the box and on top of that, it adds some customization so you'll be able to manage potential sound issues.

Eric
Thanks to both of you again! Resolved my other issues minus usb 3.0. Will look around. I agree about your package for steam as well. Works like a charm!
 
  


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
LXer: Valve Steam Machines, Steam Controller, and SteamOS: Visionary or Vapor? LXer Syndicated Linux News 0 10-10-2013 08:32 PM
LXer: Valve's Linux-powered Steam Machines gather steam LXer Syndicated Linux News 0 09-26-2013 04:00 AM
LXer: iBomber games coming to Steam for Linux! Steam also expands their Beta! LXer Syndicated Linux News 0 12-06-2012 09:50 PM
Steam on Wine, cannot login,"Steam is having trouble connecting to the Steam servers" cantab Linux - Games 1 06-19-2010 06:32 AM
How do I launch Steam in a Window? Hoagie Linux - Games 2 05-18-2004 06:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:25 AM.

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