LIBPERFUSE(2) BSD System Calls Manual LIBPERFUSE(2)NAME
perfuse_mount, perfuse_open -- Request a puffs(3) mount from perfused(8)LIBRARY
library ``libperfuse''
SYNOPSIS
#include <perfuse.h>
int
perfuse_mount(const char *source, const char *dir, const char *filesystemtype, long int mountflags, void *data);
int
perfuse_open(const char *path, int flags);
DESCRIPTION
perfuse_mount() sends a mount request to perfused(8). It is intended as a drop-in replacement for mount(2) for FUSE file systems daemons and
libraries, so that they can work with perfused(8).
The function prototype mimics Linux's mount(2), with the following arguments:
source The source file system that will appear in df(1) and mount(8) listings. Defaults to /dev/fuse if NULL.
dir The file system mount point.
filesystemtype
The file system type, as displayed by df(1) and mount(8). Defaults to ``fuse'' if NULL.
mountflags
This contains the same value as a mount(2) flags argument.
data This contains the same value as a mount(2) data argument.
perfuse_open() is a drop-in replacement for the open(2) system call where /dev/fuse is used. If path is different than /dev/fuse,
perfuse_open() handles control to the regular open(2).
RETURN VALUES
perfuse_mount() returns a file descriptor to the /dev/fuse socket on success, and causes exit on failure.
SEE ALSO df(1), mount(2), open(2), mount(8), perfused(8)AUTHORS
The program was written by Emmanuel Dreyfus <manu@NetBSD.org>.
BSD August 12, 2010 BSD
Check Out this Related Man Page
DEVFS(5) BSD File Formats Manual DEVFS(5)NAME
devfs -- device file system
SYNOPSIS
devfs /dev devfs rw 0 0
DESCRIPTION
The device file system, or devfs, provides access to kernel's device namespace in the global file system namespace. The conventional mount
point is /dev.
The file system includes several directories, links, symbolic links and devices, some of which can also be written. In a chroot'ed environ-
ment, devfs can be used to create a new /dev mount point.
The mknod(8) tool can be used to recover deleted device entries under devfs.
The fdescfs(5) filesystem is an alternate means for populating /dev/fd. The character devices that both devfs and fdescfs(5) present in
/dev/fd correspond to the open file descriptors of the process accessing the directory. devfs only creates files for the standard file
descriptors 0, 1 and 2. fdescfs(5) creates files for all open descriptors.
The options are as follows:
-o options
Use the specified mount options, as described in mount(8). The following devfs file system-specific options are available:
ruleset=ruleset
Set ruleset number ruleset as the current ruleset for the mount-point and apply all its rules. If the ruleset number ruleset
does not exist, an empty ruleset with the number ruleset is created. See devfs(8) for more information on working with devfs
rulesets.
FILES
/dev The normal devfs mount point.
EXAMPLES
To mount a devfs volume located on /mychroot/dev:
mount -t devfs devfs /mychroot/dev
SEE ALSO fdescfs(5), devfs(8), mount(8)HISTORY
The devfs file system first appeared in FreeBSD 2.0. It became the preferred method for accessing devices in FreeBSD 5.0 and the only method
in FreeBSD 6.0. The devfs manual page first appeared in FreeBSD 2.2.
AUTHORS
The devfs manual page was written by Mike Pritchard <mpp@FreeBSD.org>.
BSD February 9, 2012 BSD
hi people,
I'm trying to create a mount point, but am having no sucess at all, with the following:
mount -F ufs /dev/dsk/diskname /newdirectory
but i keep getting - mount-point /newdirectory doesn't exist.
What am i doing wrong/missing?
Thanks
Rc (1 Reply)
Dear All
Last day in Aix 5.2 server by executing
# df –g
I found following:
Filesystem GB blocks Free %Used Iused %Iused Mounted on
.
.
/dev/fslv00 58.00 136.70 -135% 212103 1% /sprod
After shutting down by following command
# shutdown –h
And when... (1 Reply)
Hello All,
I need to mount below harddisk.I try with mount /dev/sdb /mnt/external2 But unable to mount.Error in "device is busy".How to mount /dev/sdb fully.Any other option.please advice
Disk /dev/sdb: 250.0 GB, 250000000000 bytes
255 heads, 63 sectors/track, 30394 cylinders
Units =... (3 Replies)
Hi All,
I have two mount points have the same data with little changes between them
/appabc1
/appabc2
Both of them have the same data, there is some little changes on the data between them
I want /appabc2 to has the same data of /appabc1 exactly including to those little changes... (6 Replies)
Hello all
When I insert my USB , its says : umass0 detected . I want to ls files present in the USB.
I tried
mount -t msdosfs /dev/da0s1 /mnt
Whats is dev/da0s1 ?????
How can I mount it to use it ?
Regards (3 Replies)
I have oi_151a7 and installed from sfe fuse-ext, libfuse and e2fsprogs. Mount e.g.
# mount -F ext2fs /dev/dsk/c4t0d0p1 /mnt
returns
"mount: Operation not applicable to FSType ext2fs"
and
$ fuse-ext2 /dev/dsk/c4t0d0p1 ~/tmp/a/
does not output anything but the filesystem seems not to be... (3 Replies)
Dear all,
I have two directories in /med/app/ :
drwxr-x--- 7 fuse staff 4.0K Jul 12 13:46 fuse
drwxr-xr-x 23 debmed tabs 88K Jul 12 13:52 debmed
fuse & debmed are two separate users on the system.
I have a script in /med/appl/fuse/:
-rwxr-xr-x 1 fuse ... (1 Reply)
Requirement:
Under fuse application we have placeholders called containers;
Every container has their logs under:
<container1>/data/log/fuse.log
<container1>/data/log/fuse.log.1
<container1>/data/log/fuse.log.XX
<container2>/data/log/fuse.log... (6 Replies)