「FUSE」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
 
(英語版から転載)
タグ: リダイレクト解消
1行目: 1行目:
  +
[[Category:FUSE]]
#redirect[[ファイルシステム#FUSE ベースのファイルシステム]]
 
  +
[[en:FUSE]]
  +
[[es:FUSE]]
  +
[[ru:FUSE]]
  +
[[zh-hans:FUSE]]
  +
{{Related articles start}}
  +
{{Related|ファイルシステム}}
  +
{{Related articles end}}
  +
[[Wikipedia:ja:Filesystem in Userspace|Filesystem in Userspace]] (FUSE) は、Unix 系オペレーティングシステム用のメカニズムで、カーネルコードを変更せずに非特権ユーザが独自のファイルシステムを作成できるようにします。これは、ファイルシステムのコードを''ユーザ空間''で実行することにより達成され、一方、FUSE カーネルモジュールは実際のカーネルインターフェイスへの「橋渡し」のみを提供します。
  +
  +
== アンマウント ==
  +
  +
FUSE ファイルシステムは、{{Pkg|fuse3}} で提供されている {{man|1|fusermount3}} を使うか、{{Pkg|fuse2}} で提供されている {{man|1|fusermount}} を使ってアンマウントできます。例えば:
  +
  +
$ fusermount3 -u ''マウントポイント''
  +
  +
== FUSE ファイルシステムの一覧 ==
  +
  +
* {{App|adbfs|Mount an Android device connected via USB.|https://github.com/isieo/adbFS|{{AUR|adbfs-git}}}}
  +
* {{App|apfs-fuse|FUSE driver for APFS (Apple File System).|https://github.com/sgan81/apfs-fuse|{{AUR|apfs-fuse-git}}}}
  +
* {{App|astreamfs|A(synchronous) Stream(ing) (fuse) F(ile)S(ystem).|https://gitlab.com/BylonAkila/astreamfs/tree/master|{{AUR|astreamfs-git}}}}
  +
* {{App|[[CurlFtpFS]]|Filesystem for accessing FTP hosts based on FUSE and libcurl.|http://curlftpfs.sourceforge.net/|{{Pkg|curlftpfs}}}}
  +
* {{App|[[davfs2]]|File system driver that allows you to mount a WebDAV folder.|https://savannah.nongnu.org/projects/davfs2|{{AUR|davfs2}}}}
  +
* {{App|[[EncFS]]|Userspace stackable cryptographic file-system.|https://vgough.github.io/encfs/|{{Pkg|encfs}}}}
  +
* {{App|fuse-archive|Serves an archive or compressed file as a read-only FUSE file system.|https://github.com/google/fuse-archive|{{AUR|fuse-archive}}}}
  +
* {{App|fuseiso|Mount an ISO as a regular user.|https://sourceforge.net/projects/fuseiso/|{{Pkg|fuseiso}}}}
  +
* {{App|GDriveFS|Innovative FUSE wrapper for Google Drive.|https://github.com/dsoprea/GDriveFS|{{AUR|gdrivefs}}}}
  +
* {{App|[[gitfs]]|gitfs is a FUSE file system that fully integrates with git.|https://www.presslabs.com/gitfs/|{{AUR|gitfs}}}}
  +
* {{App|[[gocryptfs]]|gocryptfs is a userspace stackable cryptographic file-system.|https://nuetzlich.net/gocryptfs/|{{Pkg|gocryptfs}}}}
  +
* {{App|google-drive-ocamlfuse|FUSE-based file system backed by Google Drive, written in OCaml.|https://astrada.github.io/google-drive-ocamlfuse/|{{AUR|google-drive-ocamlfuse}}}}
  +
* {{App|gphotofs|FUSE module to mount camera as a filesystem.|http://www.gphoto.org/proj/gphotofs/|{{AUR|gphotofs}}}}
  +
* {{App|HubicFuse|FUSE filesystem to access HubiC cloud storage.|https://github.com/TurboGit/hubicfuse|{{AUR|hubicfuse}}}}
  +
* {{App|iFuse|A fuse filesystem to access the contents of an iPhone or iPod Touch.|https://libimobiledevice.org/|{{Pkg|ifuse}}}}
  +
* {{App|[[NTFS-3G]]|NTFS driver with extended capabilities.|https://github.com/tuxera/ntfs-3g|{{Pkg|ntfs-3g}}}}
  +
* {{App|s3fs|FUSE-based file system backed by Amazon S3.|https://github.com/s3fs-fuse/s3fs-fuse|{{Pkg|s3fs-fuse}}}}
  +
* {{App|splitviewfuse|A view on a directory that splits/merges files into segments.|https://github.com/seiferma/splitviewfuse|{{AUR|splitviewfuse}}}}
  +
* {{App|[[SSHFS]]|FUSE-based filesystem client for mounting directories over SSH.|https://github.com/libfuse/sshfs|{{Pkg|sshfs}}}}
  +
* {{App|TMSU|A command-line tool for tagging your files and accessing them through a virtual filesystem.|https://tmsu.org/|{{AUR|tmsu}}}}
  +
* {{App|vdfuse|Mounting VirtualBox disk images (VDI/VMDK/VHD).|https://github.com/muflone/virtualbox-includes|{{AUR|vdfuse}}}}
  +
* {{App|vramfs|VRAM based file system.|https://github.com/Overv/vramfs|{{AUR|vramfs-git}}}}
  +
* {{App|wimmount|Mount Windows Imaging Format (WIM) images.|https://wimlib.net/|{{Pkg|wimlib}}}}
  +
* {{App|xbfuse|Mount an Xbox (360) ISO.|https://multimedia.cx/xbfuse/|{{AUR|xbfuse-git}}}}
  +
* {{App|xmlfs|Represent an XML file as a directory structure for easy access.|https://github.com/halhen/xmlfs|{{AUR|xmlfs}}}}
  +
* [[Media Transfer Protocol#FUSE filesystems]]
  +
  +
== 参照 ==
  +
  +
* [[Wikipedia:Filesystem in Userspace#Applications]]

2023年1月13日 (金) 13:41時点における版

関連記事

Filesystem in Userspace (FUSE) は、Unix 系オペレーティングシステム用のメカニズムで、カーネルコードを変更せずに非特権ユーザが独自のファイルシステムを作成できるようにします。これは、ファイルシステムのコードをユーザ空間で実行することにより達成され、一方、FUSE カーネルモジュールは実際のカーネルインターフェイスへの「橋渡し」のみを提供します。

アンマウント

FUSE ファイルシステムは、fuse3 で提供されている fusermount3(1) を使うか、fuse2 で提供されている fusermount(1) を使ってアンマウントできます。例えば:

$ fusermount3 -u マウントポイント

FUSE ファイルシステムの一覧

  • adbfs — Mount an Android device connected via USB.
https://github.com/isieo/adbFS || adbfs-gitAUR
  • apfs-fuse — FUSE driver for APFS (Apple File System).
https://github.com/sgan81/apfs-fuse || apfs-fuse-gitAUR
  • astreamfs — A(synchronous) Stream(ing) (fuse) F(ile)S(ystem).
https://gitlab.com/BylonAkila/astreamfs/tree/master || astreamfs-gitAUR
  • CurlFtpFS — Filesystem for accessing FTP hosts based on FUSE and libcurl.
http://curlftpfs.sourceforge.net/ || curlftpfs
  • davfs2 — File system driver that allows you to mount a WebDAV folder.
https://savannah.nongnu.org/projects/davfs2 || davfs2AUR
  • EncFS — Userspace stackable cryptographic file-system.
https://vgough.github.io/encfs/ || encfs
  • fuse-archive — Serves an archive or compressed file as a read-only FUSE file system.
https://github.com/google/fuse-archive || fuse-archiveAUR
  • fuseiso — Mount an ISO as a regular user.
https://sourceforge.net/projects/fuseiso/ || fuseiso
  • GDriveFS — Innovative FUSE wrapper for Google Drive.
https://github.com/dsoprea/GDriveFS || gdrivefsAUR
  • gitfs — gitfs is a FUSE file system that fully integrates with git.
https://www.presslabs.com/gitfs/ || gitfsAUR
  • gocryptfs — gocryptfs is a userspace stackable cryptographic file-system.
https://nuetzlich.net/gocryptfs/ || gocryptfs
  • google-drive-ocamlfuse — FUSE-based file system backed by Google Drive, written in OCaml.
https://astrada.github.io/google-drive-ocamlfuse/ || google-drive-ocamlfuseAUR
  • gphotofs — FUSE module to mount camera as a filesystem.
http://www.gphoto.org/proj/gphotofs/ || gphotofsAUR
  • HubicFuse — FUSE filesystem to access HubiC cloud storage.
https://github.com/TurboGit/hubicfuse || hubicfuseAUR
  • iFuse — A fuse filesystem to access the contents of an iPhone or iPod Touch.
https://libimobiledevice.org/ || ifuse
  • NTFS-3G — NTFS driver with extended capabilities.
https://github.com/tuxera/ntfs-3g || ntfs-3g
  • s3fs — FUSE-based file system backed by Amazon S3.
https://github.com/s3fs-fuse/s3fs-fuse || s3fs-fuse
  • splitviewfuse — A view on a directory that splits/merges files into segments.
https://github.com/seiferma/splitviewfuse || splitviewfuseAUR
  • SSHFS — FUSE-based filesystem client for mounting directories over SSH.
https://github.com/libfuse/sshfs || sshfs
  • TMSU — A command-line tool for tagging your files and accessing them through a virtual filesystem.
https://tmsu.org/ || tmsuAUR
  • vdfuse — Mounting VirtualBox disk images (VDI/VMDK/VHD).
https://github.com/muflone/virtualbox-includes || vdfuseAUR
  • vramfs — VRAM based file system.
https://github.com/Overv/vramfs || vramfs-gitAUR
  • wimmount — Mount Windows Imaging Format (WIM) images.
https://wimlib.net/ || wimlib
  • xbfuse — Mount an Xbox (360) ISO.
https://multimedia.cx/xbfuse/ || xbfuse-gitAUR
  • xmlfs — Represent an XML file as a directory structure for easy access.
https://github.com/halhen/xmlfs || xmlfsAUR

参照