Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

convmvfs(1) [debian man page]

CONVMVFS(1)						      General Commands Manual						       CONVMVFS(1)

NAME
convmvfs - utility that mirrors a whole filesystem tree from one charset to another. SYNOPSIS
convmvfs mountpoint [ options ] DESCRIPTION
This manual page documents briefly the convmvfs command. convmvfs is a FUSE (File System in Userspace) utility that transparently mirrors a filesystem tree converting the filenames from one charset to another on the fly. Only the names of files and directories are converted, the file content remains intact. The mirrored tree is mounted at the given mountpoint. OPTIONS
General options -o opt[,opt...] mount options -h, --help print help -V, --version print version -h, --help show summary of options FUSE options -d, -o debug enable debug output (implies -f) -f foreground operation -s disable multi-threaded operation -o Mount options are specified with a -o flag followed by a comma separated list of options. The following options are recognized: allow_other allow access to other users allow_root allow access to root nonempty allow mounts over non-empty file/dir default_permissions enable permission checking by kernel fsname=NAME set filesystem name large_read issue large read requests (2.4 only) max_read=N set maximum size of read requests hard_remove immediate removal (don't hide files) use_ino let filesystem set inode numbers readdir_ino try to fill in d_ino in readdir direct_io use direct I/O kernel_cache cache files in kernel umask=M set file permissions (octal) uid=N set file owner gid=N set file group entry_timeout=T cache timeout for names (1.0s) negative_timeout=T cache timeout for deleted names (0.0s) attr_timeout=T cache timeout for attributes (1.0s) srcdir=PATH which directory to convert icharset=CHARSET charset used in srcdir ocharset=CHARSET charset used in mounted filesystem NOTES
If you use a normal user account to mount the file system be sure to have r/w permissions to /dev/fuse. Use iconv --list to see which charsets are supported. To allow other users to access the mount point use allow_other option. IMPORTANT: if the mount point and srcdir point at the same directory, readdir call will enter a dead loop. BE SURE TO AVOID THIS SITUA- TION! SAMPLE USE
to mount: $ convmvfs /ftp/pub_gbk -o srcdir=/ftp/pub,icharset=utf8,ocharset=gbk to unmount: $ fusermount -u /ftp/pub_gbk SEE ALSO
fusermount(1), mount(8) AUTHOR
convmvfs was written by Z.C. Miao <hellwolf.misty@gmail.com>. This manual page was written by Stanislav Maslovski <stanislav.maslovski@gmail.com>, for the Debian project (but may be used by others). October 3, 2007 CONVMVFS(1)

Check Out this Related Man Page

FUSEFAT(1)							   User Commands							FUSEFAT(1)

NAME
FUSEFAT - FUSE module for FAT SYNOPSIS
fusefat [OPTION]... imagefile mountpoint fusefat imagefile mountpoint [OPTION]... OPTIONS
General options -o opt,[opt...] mount options -h --help print help -V --version print version FUSEFAT options: -o rw+ enable read-write mount (EXPERIMENTAL) FUSE options: -d, -o debug enable debug output (implies -f) -f foreground operation -s disable multi-threaded operation -o allow_other allow access to other users -o allow_root allow access to root -o nonempty allow mounts over non-empty file/dir -o default_permissions enable permission checking by kernel -o fsname=NAME set filesystem name -o large_read issue large read requests (2.4 only) -o max_read=N set maximum size of read requests -o hard_remove immediate removal (don't hide files) -o use_ino let filesystem set inode numbers -o readdir_ino try to fill in d_ino in readdir -o direct_io use direct I/O -o kernel_cache cache files in kernel -o [no]auto_cache enable caching based on modification times -o umask=M set file permissions (octal) -o uid=N set file owner -o gid=N set file group -o entry_timeout=T cache timeout for names (1.0s) -o negative_timeout=T cache timeout for deleted names (0.0s) -o attr_timeout=T cache timeout for attributes (1.0s) -o ac_attr_timeout=T auto cache timeout for attributes (attr_timeout) -o intr allow requests to be interrupted -o intr_signal=NUM signal to send on interrupt (10) -o max_write=N set maximum size of write requests -o max_readahead=N set maximum readahead -o async_read perform reads asynchronously (default) -o sync_read perform reads synchronously AUTHORS
See http://wiki.virtualsquare.org. SEE ALSO
fuseiso9660(1), fuseext2(1) FUSE
/UMFUSE modules June 19, 2008 FUSEFAT(1)
Man Page