Instale o Steam
iniciar sessão
|
idioma
简体中文 (Chinês simplificado)
繁體中文 (Chinês tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Tcheco)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol — Espanha)
Español-Latinoamérica (Espanhol — América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polonês)
Português (Portugal)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar um problema com a tradução
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.