Steamをインストール
ログイン
|
言語
简体中文(簡体字中国語)
繁體中文(繁体字中国語)
한국어 (韓国語)
ไทย (タイ語)
български (ブルガリア語)
Čeština(チェコ語)
Dansk (デンマーク語)
Deutsch (ドイツ語)
English (英語)
Español - España (スペイン語 - スペイン)
Español - Latinoamérica (スペイン語 - ラテンアメリカ)
Ελληνικά (ギリシャ語)
Français (フランス語)
Italiano (イタリア語)
Bahasa Indonesia(インドネシア語)
Magyar(ハンガリー語)
Nederlands (オランダ語)
Norsk (ノルウェー語)
Polski (ポーランド語)
Português(ポルトガル語-ポルトガル)
Português - Brasil (ポルトガル語 - ブラジル)
Română(ルーマニア語)
Русский (ロシア語)
Suomi (フィンランド語)
Svenska (スウェーデン語)
Türkçe (トルコ語)
Tiếng Việt (ベトナム語)
Українська (ウクライナ語)
翻訳の問題を報告
Installing the following packages fixed it :
libgl1-mesa-dri:i386
libgl1-mesa-glx:i386
as far as i can see, even when all symlinks in ./root are ok, when starting again steam, all symlinks broke again
https://github.com/ValveSoftware/steam-for-linux/issues/3694#issuecomment-85208930
my steamfix.sh
#!/bin/bash
cd $HOME/.steam
rm root
ln -s $HOME/.local/share/Steam/ ./root
i execute this fix every time i start steam and get that ♥♥♥♥♥♥♥ error, then i can play games. still hoping in a client able of automatically resolv this finger in the ass
Installed Steam-launcher from repository
Get this *** error "You are missing the following 32-bit libraries, and Steam may not run: libc.so.6"
This packages simply can't install:
libgl1-mesa-dri:i386
libgl1-mesa-glx:i386
says something wrong with dependencies
I mean, how is this even can possible going on? Ubuntu is supposed to maintain Steam app... did developers/suport knows about this bug? how can I even communicate with them?
https://www.reddit.com/r/archlinux/comments/35s0rl/steam_missing_libraries_and_suggested_fix/
This works for all debian linux including mine.
SOLUTION
- Check your default Architecture by using:
sudo dpkg --print-architecture - You will get your default Architecture which would be amd64.
- We need to add i386 Architecture.
sudo dpkg --add-architecture i386 - Just to verify that it has been added successfully, use this code:
sudo dpkg --print-foreign-architectures - If it has been added, proceed to update in order to get the 32 bit packages.
sudo apt update - Now try installing steam from the updated repository.
sudo apt-get install steam - Since steam is not permitted to run as root by default, follow these steps.
- Open /usr/bin/steam
nano /usr/bin/steam - Comment or Delete these lines:
- Open steam.



You should be fine after this. If not, comment here and I'll try to solve it further.Use this code:
Use Code:
if [ "$(id -u)" == "0" ]; then
show_message --error $"Cannot run as root user"
exit 1
fi