任何能提供帮助的人Steam Rom 管理器
应用程序在 Ubuntu 19.10 上抛出此错误:
Warning! No user accounts found, it could be due to one of the reasons below:
incorrect Steam directory;
no user has ever logged in;
Steam does not save user credentials ("Show advanced options -> User accounts -> Use account credentials").
If you're seeing this, preview won't be generated for this configuration.
我使用的目录是
/usr/bin/steam
答案1
正确的 Steam 目录(如您在评论中所说)是:
~/.local/share/Steam
但最好指定完整路径:
/home/you_user/.local/share/Steam
要查找所有调用的目录steam
,Steam
您可以使用下一个命令:
sudo find / -type d -iname Steam 2>&1 | grep -v "Permission denied"
它只会显示不区分大小写(-i
之前name
)的目录(-type d
选项),隐藏带有Permission denied
消息的记录。
就我而言,它输出:
/usr/lib/games/steam
/usr/lib/steam
/usr/share/doc/steam
/home/user/test/steam-rom-manager/src/lib/helpers/steam
/home/user/.local/share/Steam
/home/user/.local/share/Steam/steam
执行ls
每个目录的操作,你就可以得到它们的内容。相应的文件夹会包含很多文件和目录。