home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / modprobe.d / fuse < prev    next >
Encoding:
Text File  |  2007-03-12  |  343 b   |  5 lines

  1. install fuse /sbin/modprobe --ignore-install fuse && \
  2.         { if grep -q fusectl /proc/filesystems; then /bin/mount -t fusectl fusectl /sys/fs/fuse/connections; fi ; : ; }
  3. remove fuse { if grep -q " /sys/fs/fuse/connections " /proc/mounts; then /bin/umount /sys/fs/fuse/connections; fi } && \
  4.         /sbin/modprobe -r --ignore-remove fuse
  5.