The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Steam"
Threesixes (talk | contribs) m (modernize, push layman commands on to the layman package page) |
|||
Line 3: | Line 3: | ||
Steam is a content delivery system available for GNU/Linux gaming. | Steam is a content delivery system available for GNU/Linux gaming. | ||
== | === Install === | ||
In order to install Steam, we must first install layman | In order to install Steam, we must first install {{package|app-portage/layman}}. | ||
Once layman is installed and synced, we must add the {{c|gamerlay}} repository: | |||
{{console|body= | |||
###i## layman -a gamerlay | ###i## layman -a gamerlay | ||
###i## layman -S | ###i## layman -S | ||
}} | |||
Ok, now we can install steam by running: | Ok, now we can install steam by running: | ||
{{console|body= | |||
###i## emerge steam-launcher | ###i## emerge steam-launcher | ||
}} | |||
== install part 2 == | == install part 2 == | ||
Steam has its own internal package management system. Portage will not track its files, or games installed. the ebuild simply pulls in the steam installer, to run the steam installer: | |||
<console>###i## /usr/bin/steam</console> | <console>###i## /usr/bin/steam</console> | ||
The installer will prompt you with several questions, once done running the installer command will load the latest version of steam. | |||
== Troubleshooting == | == Troubleshooting == | ||
Line 61: | Line 37: | ||
I do not know much about this behaviour, but I found a workaround. | I do not know much about this behaviour, but I found a workaround. | ||
If you saved your password, you need to backup all your games and reset Steam. | If you saved your password, you need to backup all your games and reset Steam. | ||
{{console|body= | |||
$ ##i##mkdir -p ~/backup | $ ##i##mkdir -p ~/backup | ||
$ ##i##mv ~/.local/share/Steam/steamapps ~/backup | $ ##i##mv ~/.local/share/Steam/steamapps ~/backup | ||
$ ##i##steam --reset | $ ##i##steam --reset | ||
$ ##i##mv ~/backup ~/.local/share/Steam/steamapps | $ ##i##mv ~/backup ~/.local/share/Steam/steamapps | ||
}} | |||
Start Steam again, enter username and password, but do not check "Remember my password", it is the thing that causes all the troubles. You will need to enter password every time you start Steam | Start Steam again, enter username and password, but do not check "Remember my password", it is the thing that causes all the troubles. You will need to enter password every time you start Steam. | ||
=== My screen in Dota 2 (and other Source games) is all red! === | === My screen in Dota 2 (and other Source games) is all red! === | ||
{{console|body= | |||
# ##i##echo 'media-libs/libtxc_dxtn abi_x86_32' >> /etc/portage/package.use | # ##i##echo 'media-libs/libtxc_dxtn abi_x86_32' >> /etc/portage/package.use | ||
# ##i##emerge media-libs/libtxc_dxtn | # ##i##emerge media-libs/libtxc_dxtn | ||
}} |
Revision as of 00:54, June 6, 2015
Steam is a content delivery system available for GNU/Linux gaming.
Install
In order to install Steam, we must first install app-portage/layman.
Once layman is installed and synced, we must add the gamerlay
repository:
root # layman -a gamerlay root # layman -S
Ok, now we can install steam by running:
root # emerge steam-launcher
install part 2
Steam has its own internal package management system. Portage will not track its files, or games installed. the ebuild simply pulls in the steam installer, to run the steam installer:
root # /usr/bin/steam
The installer will prompt you with several questions, once done running the installer command will load the latest version of steam.
Troubleshooting
Text is corrupt or missing
Steam makes heavy usage of the Arial font. A decent Arial font to use is ttf-liberation.
root # emerge liberation-fonts root # eselect fontconfig enable 60-liberation.conf
Steam segfaults after 2nd start!
I do not know much about this behaviour, but I found a workaround. If you saved your password, you need to backup all your games and reset Steam.
user $ mkdir -p ~/backup user $ mv ~/.local/share/Steam/steamapps ~/backup user $ steam --reset user $ mv ~/backup ~/.local/share/Steam/steamapps
Start Steam again, enter username and password, but do not check "Remember my password", it is the thing that causes all the troubles. You will need to enter password every time you start Steam.
My screen in Dota 2 (and other Source games) is all red!
root # echo 'media-libs/libtxc_dxtn abi_x86_32' >> /etc/portage/package.use root # emerge media-libs/libtxc_dxtn