web-dev-qa-db-ja.com

14.04で「.gvfs」が削除された場所

私の質問は「シンプル」です。

接続している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
11
Laurent06000

LewisTMのおかげで、gvfsフォルダーは/run/user/$UID/gvfsにあります。

$ mount | grep gvfs

this も参照してください。

10
pse_nltjtt

.gvfsがもうない場合は、mount | grep gvfsで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を返すだけです。

12.10より前の場合は、~/.gvfsが必要ですが、12.10以降は/ run/user /user_id/ gvfs /を確認します。
~/.gvfsが既に存在する場合(以前のリリースからアップグレードした場合に発生します)、新しいリリースでは上書きされませんが、とにかく新しいディレクトリが作成されます。

Uidは、/etc/passwdを調べるか、id --userまたはecho "$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の下に表示されないのですか? も参照してください

5
belacqua

$HOMEディレクトリ内にあります。

$ locate .gvfs
/home/avinash/.gvfs
0
Avinash Raj