我需要cp (或dd)一些文件。我尝试过:https://superuser.com/questions/281986/bashterminal-access-to-camera-files-mounted-as-gphoto2-usb001-003-dcim?answertab=active#tab-top;,但是文件夹(.gvfs)是空的。
Volume(0): iPhone
Type: GProxyVolume (GProxyVolumeMonitorGPhoto2)
ids:
unix-device: '/dev/bus/usb/001/003'
activation_root=gphoto2://[usb:001,003]/
themed icons: [camera-photo]
can_mount=1
can_eject=0
should_automount=1
Mount(0): iPhone -> gphoto2://[usb:001,003]/
Type: GProxyShadowMount (GProxyVolumeMonitorGPhoto2)
default_location=gphoto2://[usb:001,003]/
themed icons: [camera-photo]
x_content_types: x-content/image-dcf
can_unmount=1
can_eject=0
is_shadowed=0
Mount(1): iPhone -> gphoto2://[usb:001,003]/
Type: GDaemonMount
default_location=gphoto2://[usb:001,003]/
themed icons: [camera-photo] [camera]
x_content_types: x-content/image-dcf
can_unmount=1
can_eject=0
is_shadowed=1发布于 2013-08-21 06:15:34
从Ubuntu12.10开始,GVFS挂载现在是在/run/user/<your_username>/gvfs/下而不是~/.gvfs/下。所以你应该会在这个新目录下找到你的文件。
发布于 2014-02-22 06:05:54
在Xubuntu 13.10中,我发现我的佳能Powershot是
/run/user/1000/gvfs/。。。
很难找到这些信息,希望它能有所帮助。
发布于 2014-02-22 06:11:12
如果你打算使用'dd‘,你不需要挂载。只需使用块设备即可。
/dev/bus/usb/001/003
如果你
dd if=/dev/bus/usb/001/003 of=~/images.img你最终会得到一个扁平的文件系统,你仍然需要挂载它才能使用图片。
https://stackoverflow.com/questions/12449705
复制相似问题