Meine Frage ist "einfach".
Wo finde ich einen lokalen Mount-Punkt für die Samba-Freigaben, mit denen ich verbunden bin? In 12.04 befand es sich unter *home/.gvfs*
.
Vielen Dank im Voraus für Ihre Hilfe.
Hier ist meine smb.conf Datei:
#======================= Global Settings =======================
[global]
workgroup = mshome
server string = %h server (Samba, Ubuntu)
dns proxy = no
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
encrypt passwords = no
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
pam password change = yes
map to guest = bad user
usershare allow guests = yes
comment = Home Directories
browseable = no
read only = no
security = user
username map = /etc/samba/smbusers
[printers]
comment = All Printers
browseable = no
path = /var/spool/samba
printable = yes
; guest ok = no
; read only = yes
create mask = 0700
# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
comment = Printer Drivers
path = /var/lib/samba/printers
; browseable = yes
; read only = yes
; guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
; write list = root, @lpadmin
# A sample share for sharing your CD-ROM with others.
;[cdrom]
; comment = Samba server's CD-ROM
; read only = yes
; locking = no
; path = /cdrom
; guest ok = yes
# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
; preexec = /bin/mount /cdrom
; postexec = /bin/umount /cdrom
[RED]
comment = RED USB Disk
path = /media/laurent06000/RED
writeable = yes
; browseable = yes
guest ok = yes
[flareGet]
path = /home/laurent06000/flareGet
writeable = yes
; browseable = yes
guest ok = yes
[windows]
comment = Windows Main drive
path = /media/windows
writeable = yes
; browseable = yes
guest ok = yes
networking
samba
gvfs
Laurent06000
quelle
quelle
Antworten:
Dank LewisTM finden Sie Ihren
gvfs
Ordner in/run/user/$UID/gvfs
.Siehe auch dies .
quelle
.gvfs
Ordner. Wo würde die Samba-Freigabe montiert werden, wenn sie mit Nautilus montiert wird?ln -s /run/user/$UID/gvfs ~/.gvfs
) mit diesem Ordner zu verknüpfen , anstatt jedes Mal zu dieser Antwort zurückzukehren, wie ich es zu oft getan habe, um zu zählen.Wenn Sie keine mehr haben
.gvfs
, sollten Sie in der Lage sein, den gvfs-Mount-Speicherort mit zu findenmount | grep gvfs
. Zum Beispielgvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=nrd)
.Der Speicherort ist dort und Sie können ihn programmgesteuert herausziehen, wenn Sie möchten, mit
mount | grep gvfs | awk '{print $3}'
oder ähnlichem. Das Beispiel hier kehrt gerade zurück/run/user/1000/gvfs
.Wenn Sie vor 12.10 sind, sollten Sie haben
~/.gvfs
, aber nach 12.10 suchen Sie in / run / user / user_id / gvfs /.Wenn
~/.gvfs
bereits vorhanden (was passieren würde, wenn Sie ein Upgrade von einer früheren Version durchführen), wird es in neuen Versionen nicht überlastet, aber das neue Verzeichnis wird trotzdem erstellt.Sie können Ihre UID auf verschiedene Arten finden, z. B. indem Sie hineinschauen
/etc/passwd
oder rennenid --user
oderecho "$UID"
.Der neue Standort wäre dann
/run/user/$(id --user)/gvfs/
In meinem System enthält die Variable $ XDG_RUNTIME_DIR auch das Verzeichnis über gvfs:
Also, auf meinem System habe ich
/run/user/1000/gvfs
.Siehe auch Warum werden meine gvfs-Mounts nicht unter ~ / .gvfs oder / run / user / <login> / gvfs angezeigt?
quelle
Es befindet sich nur in Ihrem
$HOME
Verzeichnis.quelle