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
Thank you for this! I was wondering how to do this and if it was possible. In my case I only had 2 games installed..less than 10 GB total.. and just switched to linux 'cuz windows sucks even more with each "update."
Of course, I did note that the progress I made in both of my games (before the notorious error of which we speak occurred) was not synced properly, and I did have to start over in one... not such a big deal since it's my 4th playthrough... but if it had been in something I've been working through for months....
Anyway, thanks :)
By the way I've been using Linux Mint auto-updates for ~6 months and so far it never once botched an update or so much as interrupted my work or caused slowdowns while applying them, so I think you'll feel at home pretty soon, even if not everything works perfectly at the first attempt
Granted support for 32bit will phase out over time as hardware drifts from it.
what Canonical did TRY to phase away was basic system libs support for running 32bit software on their 64bit OS (while most distros were only scraping exclusively 32bit editions of their distros in favour of their 64bit editions, because exclusively 32bit x86 hardware is indeed being phased out for more than a decade)
see how I said TRY? there was a huge cryout from their userbase (because of course this wasn't such a popular idea due to breaking WINE, some device drivers, some dev tooling for industrial stuff, etc)... and then they went back on the decision, made their due dilligence, polled the userbaseand defined a set of 32bit libs that had to keep being supported
they do want to relegate those to snaps, flatpaks and whatnot instead of maintaining the set in their repos, but this is still pending and afaik with no defined timeframe
for now and apparently for the forseeable future, these libs aren't installed by default but are fully available if you know to enable the 32-bit x86 arch first
eg: Linux Mint has 32-bit arch enabled by default, instead of disabled, so the 32-but libs can be installed more easily (without the secret club dpkg terminal command first)... it also shows all packages on its app store, so they get listed and can be installed via gui... and if a package mentions them as a dependancy they will neither prevent the package from being installed due to missing deps, nor ignore the dependancy and install only 64-bit stuff (which is a common behaviour for the nvidia driver libs for vulkan and proton, on Ubuntu)
And that's what an Ubuntu derivate managed to do, with their limited resources...
sudo apt install steam
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package steam is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
steam-launcher
E: Package 'steam' has no installation candidate
*By the way, I call the system Debian on chrome book, here is an interesting code name that came in from the system, this is code for copy: ^C - I am not for sure if that means the code was copied or it is the term for copy in the processors
*What else is there to do to install the library, I am trying to also install from I think it was either the standard or anniversary version for Skyrim - I heard Gog came out with an Anniversary set for Skyrim, I would like to stay here and get the games working, I do not think the games are transferrable and it is good to stay in Steam I think, I know Steam will start working, the chrome book does not have a CD spot, so working on software in here feels like a nightmare sometimes
This is what came up from Bloo Alien
sudo apt install libc6
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Suggested packages:
glibc-doc
Recommended packages:
libnss-nis libnss-nisplus
The following packages will be upgraded:
libc6
1 upgraded, 0 newly installed, 0 to remove and 52 not upgraded.
Need to get 2,824 kB of archives.
After this operation, 66.6 kB of additional disk space will be used.
Get:1 https://deb.debian.org/debian bullseye/main amd64 libc6 amd64 2.31-13+deb11u4 [2,824 kB]
Fetched 2,824 kB in 1s (4,770 kB/s)
Preconfiguring packages ...
(Reading database ... 39529 files and directories currently installed.)
Preparing to unpack .../libc6_2.31-13+deb11u4_amd64.deb ...
Unpacking libc6:amd64 (2.31-13+deb11u4) over (2.31-13+deb11u3) ...
Setting up libc6:amd64 (2.31-13+deb11u4) ...
Processing triggers for libc-bin (2.31-13+deb11u3) ..
*Looks like Bullseye is the one that will work, I am reading that info, that is a lot of information to understand (I am one of 1001 Debian people) Kind of funny, hope you guys have some fun with me, this is really hard stuff, it looks like 52 codes have to be installed from the info
sudo --add-architecture i386
sudo: unrecognized option '--add-architecture'
usage: sudo -h | -K | -k | -V
usage: sudo -v [-AknS] [-g group] [-h host] [-p prompt] [-u user]
usage: sudo -l [-AknS] [-g group] [-h host] [-p prompt] [-U user] [-u user]
[command]
usage: sudo [-AbEHknPS] [-r role] [-t type] [-C num] [-D directory] [-g group]
[-h host] [-p prompt] [-R directory] [-T timeout] [-u user]
[VAR=value] [-i|-s] [<command>]
usage: sudo -e [-AknS] [-r role] [-t type] [-C num] [-D directory] [-g group]
[-h host] [-p prompt] [-R directory] [-T timeout] [-u user] file ...
Sudo version 1.9.5p2
Sudoers policy plugin version 1.9.5p2
Sudoers file grammar version 48
Sudoers I/O plugin version 1.9.5p2
Sudoers audit plugin version 1.9.5p2
These are the libraries that look to be needed to run
libGL.so.1
libdrm.so.2
libdrm.so.2
libdrm.so.2
You use "sudo" in front of a command to perform that command as another user (usually the "superuser" aka "root"). So, where you went wrong there is you left out the "apt" part from the command you were trying to "sudo", thus the command you really wanted was "sudo apt --add-architecture i386". Leaving out the "apt" part of your command caused "sudo" to think you were trying to use the option "--add-architecture" with the "sudo" which has no such option, and thus it gave you an error trying to basically tell you "sudo doesn't have that option".