this post was submitted on 16 Aug 2023
22 points (100.0% liked)
Linux
48031 readers
994 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Sorry, I was thinking file browser mounts would appear in
mount
, but they don't.You should be able to list file browser mounts in a terminal using
gio mount -li
after mounting via the file browser, and it will list the SMB mount it's using, iesmb://SERVER/$share/
This annoyingly doesn't give us the username or domain for the SMB share, and to get that if the server and share looks OK we have to run
gvfs
(what the file browser for PopOS uses in the background) in debug mode and re-mount the SMB share; in a terminal runpkill gvfs; pkill nautilus; LANG=C GVFS_DEBUG=1 $(find /usr/lib* -name gvfsd 2>/dev/null) --replace 2>&1
; this will unmount anything in the file browser but will show what username and domain the file browser is using to access the SMB share, for example after clicking on a share in the file browser, among other logs, I get;This should give the username and domain that connects and can be used in the credential file.
Once this is done, you can exit the terminal with
gvfs
running and you should be able to close and re-open the file browser and the mounts should just re-appear normally.Hopefully this will give enough information as to why the file browser mount works and the
mount
command doesn't.This is amazing! Thank you very much. I'll try this out tonight and hopefully get somewhere with it. I'll let you know either way. Thanks again!