Automounting FUSE filesystems


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Automounting FUSE filesystems
# 1  
Old 03-04-2008
Automounting FUSE filesystems

Tue, 04 Mar 2008 16:00:00 GMT
One of the main things that gets annoying with FUSE, or Filesystem in Userspace, is that it won't automatically mount a filesystem when you first attempt to access the filesystem. This means you must manually track mountpoints and specify what program to run in order to mount each FUSE filesystem. Placing the exact commands to mount each FUSE filesystem into shell scripts can make things a little easier, but with afuse, you can mount FUSE filesystems on demand without the need for any explicit mounting.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Solaris

NFS mounts not automounting on boot

I have several Solaris 11.2 zones. when I reboot them I have to go in and do mountall to mount the NFS mounts. any ideas where to troubleshoot why they are not automounting? (2 Replies)
Discussion started by: os2mac
2 Replies

2. Solaris

vfstab entries not automounting

Please see my vfstab entries below.. #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # fd - /dev/fd fd - no - /proc - /proc proc - no ... (3 Replies)
Discussion started by: Tuxidow
3 Replies

3. Filesystems, Disks and Memory

automounting cifs folder

Hello, I have searched the forum but I can't find what I need. I have to mount an NTFS folder onto 2 redhat OS based servers, from an auto table set on an AIX 4.3.3 NIS server. I have the auto.xxx table set with some other UNIX share folders, for example : toto unixsrv:/fold1/& I'd... (0 Replies)
Discussion started by: davchris
0 Replies

4. UNIX for Advanced & Expert Users

Problem: Automounting Home directory for nis & nfs configuration doesn't work

Hi all, First of all, i am so sorry about my bad level in English writing. I have some problem in linux and i hope the experts of this forum to help me if they have enough time to reply to me. I have a scenario of configuring NIS and NFS in Redhat Linux environment such that user can login... (0 Replies)
Discussion started by: pioneer
0 Replies

5. HP-UX

how to configure automounting in HPUX

Hi, could any one help me by giving the steps to configure automount on HPUX? i have tried as below but it is not working. Pls tell me where i went wrong? automount configuration: 1. vi /etc/auto_master /sunil /etc/auto.sunil vi /etc/auto.sunil tedata ... (0 Replies)
Discussion started by: sunilvadranapu
0 Replies
Login or Register to Ask a Question
HTTPFS2(1)																HTTPFS2(1)

NAME
httpfs2 - mount a file from a http server into the filesystem SYNOPSIS
httpfs2 [OPTIONS] URL FUSE-OPTIONS httpfs2_ssl [OPTIONS] URL FUSE-OPTIONS DESCRIPTION
httpfs2 is a FUSE based filesystem for mounting http or https URLS as files in the filesystem. There is no notion of listable directories in http so only a single URL can be mounted. The server must be able to send byte ranges. OPTIONS
-c console Attempt to use the file ior device console for output after fork. The default is /dev/console. -f Do not fork, stay in foreground. -t timeout Use different timeout for connections. Default '30's. URL The url should specify the protocol as http or https, and it may specify basic authentication username and password. Currently special characters like whitespace are not handled so the URL cannot contain them. See a sample URL below: http://user:password@server.com/dir/file FUSE-OPTIONS These options are passed to the FUSE library. At the very least the mount point should be specified. EXIT STATUS
0 Successfully connected to the server other Failure (url parsing error, server error, FUSE setup error). Some FUSE errors may happen only after the process forks so they will not be returned in exit value. BUGS
The process can be stopped by typing ^Z on the terminal which may not be desirable under some circumstances. AUTHORS
Miklos Szeredi <miklos@szeredi.hu> hmb marionraven at users.sourceforge.net Michal Suchanek <hramrach@centrum.cz> COPYING
Free use of this software is granted under the terms of the GNU General Public License (GPL). 03/13/2010 HTTPFS2(1)