ที่ ".gvfs" หายไปไหนใน 14.04


11

คำถามของฉันคือ "ง่าย"

ฉันจะหาจุดเชื่อมต่อในท้องที่สำหรับการแบ่งปัน Samba ที่ฉันเชื่อมต่อได้ที่ไหน ใน 12.04 *home/.gvfs*มันก็อยู่ภายใต้

ขอบคุณล่วงหน้าสำหรับความช่วยเหลือของ.

นี่คือไฟล์ smb.conf ของฉัน:

#======================= 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

1
โปรดทำเครื่องหมายคำตอบว่าถูกต้องหากบางคนแก้ปัญหาของคุณได้
Paulo Coghi - Reinstate Monica

คำตอบ:


10

ขอบคุณ LewisTM คุณสามารถค้นหาgvfsโฟลเดอร์ของคุณ/run/user/$UID/gvfsได้

$ mount | grep gvfs

ดูสิ่งนี้ด้วย


นี่ไม่ใช่กรณีสำหรับฉัน - ฉันไม่มีแม้แต่.gvfsโฟลเดอร์ ส่วนแบ่งแซมบาจะติดตั้งที่ไหนเมื่อติดตั้งด้วยหอยโข่ง
dmeu

ฉันขอแนะนำให้ symlinking ( ln -s /run/user/$UID/gvfs ~/.gvfs) ไปที่โฟลเดอร์นั้นแทนที่จะตอบกลับคำตอบนี้ทุกครั้งที่ฉันนับจำนวนครั้งมากเกินไป
palswim

5

หากคุณไม่ได้.gvfsอีกต่อไปคุณควรจะสามารถที่จะหา gvfs mount | grep gvfsติดตั้งด้วย ตัวอย่างเช่น gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=nrd).

ตำแหน่งนั้นอยู่ที่นั่นและคุณสามารถดึงมันออกมาโดยทางโปรแกรมหากคุณต้องการด้วยmount | grep gvfs | awk '{print $3}'หรืออะไรทำนองนั้นที่คล้ายกัน ตัวอย่างที่นี่เพิ่งกลับ/run/user/1000/gvfsมา

หากคุณ pre-12.10 คุณควรมี~/.gvfsแต่หลังจาก 12.10 ดูใน / run / user / user_id / gvfs /
หาก~/.gvfsมีอยู่แล้ว (ซึ่งจะเกิดขึ้นหากคุณอัพเกรดจากรุ่นก่อนหน้า) มันจะไม่ถูกอุดตันในรุ่นใหม่ แต่ไดเรกทอรีใหม่จะถูกสร้างขึ้นใหม่

คุณสามารถค้นหาโพสต์ของคุณในวิธีที่แตกต่างกันไม่กี่เช่นโดยการมองใน/etc/passwdหรือที่ทำงานหรือid --userecho "$UID"

ตำแหน่งใหม่ก็จะเป็น /run/user/$(id --user)/gvfs/

ในระบบของฉันตัวแปร $ XDG_RUNTIME_DIR ยังมีไดเรกทอรีด้านบน gvfs:

$ env | grep user
[...]
XDG_RUNTIME_DIR=/run/user/1000

/run/user/1000/gvfsดังนั้นในระบบของฉันฉันมี

โปรดดูเพิ่มเติมที่ เหตุใด gvfs ของฉันจึงไม่แสดงภายใต้ ~ / .gvfs หรือ / run / user / <login> / gvfs


ขอบคุณมาก heemayl และ belacqua (ด้วยความล่าช้าเล็กน้อย - ฉันไม่ได้ใช้กระบวนการถามอูบุนตู) แต่นี่คือสิ่งที่ฉันอยากรู้ มีประโยชน์มาก !!!
Laurent06000

ฉันต้องการสคริปต์บรรทัดคำสั่งเพื่อเข้าถึงการแชร์แซมบ้าแบบรีโมตที่เมาท์โดยป้อน smb: // url ในแถบที่อยู่ nautilus ใน Ubuntu รุ่นก่อนหน้าจุดเชื่อมต่อสำหรับ URL นั้นถูกสร้างขึ้นใน ~ / .gvfs ฉันสูญเสียการติดตามตำแหน่งใหม่ตลอดหลายปีที่ผ่านมา ขอบคุณ. ฉันสามารถยืนยันตำแหน่งใหม่ยังคงเหมือนเดิมสำหรับ 15.04, 15.10 และ 16.04
Hatoru Hansou

0

มันอยู่ใน$HOMEไดเรกทอรีของคุณ

$ locate .gvfs
/home/avinash/.gvfs

ขอบคุณสำหรับความช่วยเหลือทัวร์ ในที่สุดฉันก็ลดระดับเป็น 13.10 ในบางครั้ง
Laurent06000
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.