Difference between revisions of "Steam"

From Funtoo
Jump to navigation Jump to search
(added warning about Proton and linked relevant ticket)
 
(76 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{PageNeedsUpdates}}
{{Subpages|Docker}}


Steam is a content delivery system for linux gaming.
Steam is a content delivery system and ecosystem for gaming, developed by Valve Software. It offers hundreds of games, from popular ones such as DOTA 2 to many other less popular and even obscure community games. Steam runs on Microsoft Windows, MacOS, and also Linux.


== install part 1 ==
{{warning|Steam Proton support is currently experimentalYou can help improve this! {{bug|FL-8521}} }}
funtoo & gentoo have ebuilds in the gamerlay overlaythe steam-meta ebuild was removed.


In order to install Steam, we must first install layman, a program used to add and generally manage additionally funtoo repository.
== Current Supported Options ==


<console>
The current recommended method for running Steam on Funtoo is via use of [[Flatpak]]. The steps for setting this up are listed on the [[Flatpak]] page and will get you up and running with Steam. The Flatpak Steam image is based on Ubuntu 12.
###i## emerge -a layman
</console>


Now we must add the <code>gamerlay</code> repository:
In the past we have also offered a Docker image for Steam, but this method is no longer officially supported. See [[Steam/Docker]] for details on this image. It actually works very similarly to the Flatpak method, and interested developers may want to play with it or study it. It was missing some things like desktop icon integration. Since it requires a decent amount of work to maintain, and the Flatpak Steam image is actively maintained by others, and works well, Daniel Robbins decided it would be best to just use the Flatpak version as our official method.


<console>
While these two options use different technologies, under the hood they are actually quite similar. They both use a containerized version of Ubuntu which contains the SteamOS runtime.
###i## layman -a gamerlay
###i## layman -S
</console>


Now we have to tell portage about layman fetched repositories by doing:
== History on Funtoo ==


For <code>layman1.1</code>
Through Funtoo Linux 1.2, it was possible to play Steam directly under Funtoo. However, with the move to Funtoo Linux 1.3, 32-bit support was dropped from Funtoo, and Steam is currently dependent on a host of 32-bit libraries.


<console>
Thus, Steam no longer worked under Funtoo directly. However, it is still possible to run Steam under Funtoo via use of containerization technology. Initially, much of the setup was left to users to figure out. But now, there are officially supported options for Steam that are easy to set up.
###i## echo "source /usr/portage/local/layman/make.conf" >> /etc/portage/make.conf
</console>
For <code>layman1.2</code>


<console>
[[Category:Official Documentation]]
###i## echo "source /usr/local/portage/layman/make.conf" >> /etc/portage/make.conf
[[Category:Containers]]
</console>
[[Category:Docker]]
 
[[Category:Games]]
For <code>layman1.3</code>
 
<console>
###i## echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf
</console>
 
Ok, now we can install steam by running:
 
<console>
###i## emerge steam-launcher
</console>
 
== 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>
 
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.
<console>
# ##i##emerge liberation-fonts
# ##i##eselect fontconfig enable 60-liberation.conf
</console>
 
=== 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.
<console>
$ ##i##mkdir -p ~/backup
$ ##i##mv ~/.local/share/Steam/steamapps ~/backup
$ ##i##steam --reset
$ ##i##mv ~/backup ~/.local/share/Steam/steamapps
</console>
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, but that is the only solution I found.
 
=== My screen in Dota 2 (and other Source games) is all red! ===
<console>
# ##i##echo 'media-libs/libtxc_dxtn abi_x86_32' >> /etc/portage/package.use
# ##i##emerge media-libs/libtxc_dxtn
</console>

Latest revision as of 06:11, August 4, 2022

Subpages:

Steam is a content delivery system and ecosystem for gaming, developed by Valve Software. It offers hundreds of games, from popular ones such as DOTA 2 to many other less popular and even obscure community games. Steam runs on Microsoft Windows, MacOS, and also Linux.

   Warning

Steam Proton support is currently experimental. You can help improve this! FL-8521

Current Supported Options

The current recommended method for running Steam on Funtoo is via use of Flatpak. The steps for setting this up are listed on the Flatpak page and will get you up and running with Steam. The Flatpak Steam image is based on Ubuntu 12.

In the past we have also offered a Docker image for Steam, but this method is no longer officially supported. See Steam/Docker for details on this image. It actually works very similarly to the Flatpak method, and interested developers may want to play with it or study it. It was missing some things like desktop icon integration. Since it requires a decent amount of work to maintain, and the Flatpak Steam image is actively maintained by others, and works well, Daniel Robbins decided it would be best to just use the Flatpak version as our official method.

While these two options use different technologies, under the hood they are actually quite similar. They both use a containerized version of Ubuntu which contains the SteamOS runtime.

History on Funtoo

Through Funtoo Linux 1.2, it was possible to play Steam directly under Funtoo. However, with the move to Funtoo Linux 1.3, 32-bit support was dropped from Funtoo, and Steam is currently dependent on a host of 32-bit libraries.

Thus, Steam no longer worked under Funtoo directly. However, it is still possible to run Steam under Funtoo via use of containerization technology. Initially, much of the setup was left to users to figure out. But now, there are officially supported options for Steam that are easy to set up.