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
Thanks for your reply! CLI's probably my best bet. This is the script I've set Gnome to run on start:
What should I change it to so I mount it properly?
fstab:
script:
and neither work. What am I doing wrong? I have both in the script because I have a few places hardcoded to the location the file manager mounts to. I haven't tested this method either because only root can mount within a workspace and as a result Steam can't touch it.
username=value
password=value
domain=value
and you can test on the fly with something like this
mount -t cifs //ip/share /mnt/myserver -o username=user,password=pwd,domain=domain
or with sudo to test root with your linux uid/gid
sudo mount -t cifs -o username=${USER},password=${PASSWORD},uid=${UID},gid=${GID} //ip/share /mnt/myserver /mnt/myserver
so once you get it working manually then try it again with the gio mount see what gives
Thinking, the best bet is to setup it up as a systemd target (since it broke it, it can fix it lol) check out this setup[cloudnull.io] where it will mount the NFS after networking starts.