Advertisement
Tritonio

Unmount gvfs from console

Feb 5th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. To unmount a gvfs filesystem from the console, you can use the gio mount command with the --unmount flag followed by the mount point.
  2.  
  3. Here are the steps to unmount a gvfs filesystem:
  4.  
  5. First, you need to find the mount point of the gvfs filesystem. You can use the gio mount --list command to list all the mounted filesystems and their mount points. For example, the following command will list all the mounted filesystems:
  6. $ gio mount --list
  7.  
  8. This will output a list of all the mounted filesystems along with their mount points. Look for the mount point of the filesystem you want to unmount.
  9. Once you have the mount point of the filesystem you want to unmount, you can use the gio mount --unmount command followed by the mount point to unmount the filesystem. For example, if the mount point of the filesystem you want to unmount is smb-share:server=myserver,share=myshare, you can unmount it using the following command:
  10. $ gio mount --unmount smb-share:server=myserver,share=myshare
  11.  
  12. This will unmount the filesystem.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement