Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
You switched operating systems, but how is Steam set up? Flatpak? Package mamager?
How are your drives set up? What file systems? Where are your games installed? Any of those games have Linux versions that don't need Proton?
How is Steam installed?
Are you only using Mint or are you dual booting?
What drive are you launching and installing your games from?
Did you format the drive to be compatible with Linux first?
You must reinstall games on external drives if you previously installed them while you were a Windows user. As in, you can't install games on an external drive with Windows then switch your OS to Linux and still launch those games. You have to reinstall them from your Linux version of Steam.
If you're not dual booting than more than likely the drive that you keep your games on is formatted incorrectly as an NTFS and a simple reformat to Ext4 or another format that works with Linux will fix this problem.
NTFS doesn't play nice with Linux.
This means that alongside what Steam under Linux installs is not just the game itself... it installs the correct Wine/Proton environment for that game as well...
This is why you just can't keep your old NTFS partition with your Steam library and expect it to simply work under Linux.
And do not use NTFS (a Windows file system) under Linux... now a days Linux can read/write to NTFS partitions but the file permissions between NTFS and for example ext4 is completly different... sure... NTFS has filepermissions as well... but they are NOT compatible at all...
Make sure i386 architecture is enabled. Run:
For Ubuntu: Look at /etc/apt/sources.list.d/ubuntu.sources and compare. Only the URIs may differ:
For Mint: Look at /etc/apt/sources.list.d/official-package-repositories.list and compare. Only the URIs may differ:
Update your system. Run:
Start App Center (on Ubuntu) or Software Manager (on Mint), search for Steam and uninstall. Then run cleanup:
Install newest kernel. Very important for AMD cards, optional for Nvidia but still recommended. Run:
If i386 architecture was missing and you have an Nvidia card the driver has to be reinstalled from scratch. First uninstall:
If i386 architecture was missing and you have an AMD card the driver has to be reinstalled from scratch. First uninstall:
Install vulkan-tools to check GPU availability and driver:
Install correct Steam package:
Reboot the PC and run vulkaninfo:
Now start Steam.
Make sure that your Steam library is on an ext4 partition. Check partition types with:
After that everything should run smoothly.
Should you run into GPU issues with newly released games try the Mesa PPA:
If your games run slow, disable your integrated GPU in the BIOS.
If your game still doesn't start or it uses the wrong GPU, run:
If you feel lost, you who are reading this. For Mint, this should be enough:
If you already have Steam installed, uninstall it in the same way you installed it then:
su -l
(l=L)
dpkg --add-architecture i386
apt-get update
apt-get upgrade
apt-get install steam
exit
or (the same commands written in a different way):
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install steam
if there is no package named steam in Mint, check what name it has:
su -l
(l=L)
dpkg --add-architecture i386
apt-get update
apt-get upgrade
apt-get install steam
(no package)
apt search steam
apt-get install steam-installer
exit
If you feel lost and do not know how and which NVIDIA driver package you should install:
https://wiki.debian.org/NvidiaGraphicsDrivers
(Find your graphics card in - supported devices, and follow the instructions)
Literaly took me a week of scouring the internet to find the issue and it's the easiest thing to overlook as a noob. Don't give up tho