osdir.com
mailing list archive

Subject: Re: [sshfs] failed to open /dev/fuse - msg#00009

List: file-systems.fuse.sshfs

Date: Prev Next Index Thread: Prev Next Index
David Liontooth wrote:

>I just installed the Debian version on an amd64 system with linux
>2.6.14. I loaded the fuse module from the (vanilla) kernel, but the
>/dev/fuse device node did not get created. I created it manually:
>
> mknod /dev/fuse c 0 0
> chown root.fuse /dev/fuse
> chmod 0666 /dev/fuse
>
>But this does not appear to be what sshfs needs:
>
> $ sshfs chi:/tv4 tv4
> fusermount: failed to open /dev/fuse: No such device or address
>
>I don't think it's a permissions issue -- same response from user root.
>I'm not using udev (it thoroughly messes up my system). How do I do this
>manually?
>
>Dave
>
>
PS here's what my kernel module says -- don't know why it's not creating
/dev/fuse:

# modinfo fuse
filename: /lib/modules/2.6.14/kernel/fs/fuse/fuse.ko
alias: char-major-10-229
license: GPL
description: Filesystem in Userspace
author: Miklos Szeredi <miklos@xxxxxxxxxx>
depends:
vermagic: 2.6.14 SMP gcc-4.0

linux/Doc*/devices.txt has

10 char Non-serial mice, misc features
229 = /dev/fuse Fuse (virtual filesystem in user-space)

I have fuse-utils 2.4.0-1 and libfuse2
2.4.0-1

I tried creating

mknod -m 666 /dev/fuse c 10 229

OK -- that seems to have done it! Nice.

It doesn't show up in df, but the drive is mounted (with "sshfs
machine:/dir mountpoint".
It unmounts with "fusermount -u mountpoint".

Great stuff. Worth adding the device node creation instructions in the
man page or somewhere though.

Dave




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click


Find Programming Jobs at git.net
(osdir sister site)

Thread at a glance:

Previous Message by Date: (click to view message preview)

[sshfs] failed to open /dev/fuse

I just installed the Debian version on an amd64 system with linux 2.6.14. I loaded the fuse module from the (vanilla) kernel, but the /dev/fuse device node did not get created. I created it manually: mknod /dev/fuse c 0 0 chown root.fuse /dev/fuse chmod 0666 /dev/fuse But this does not appear to be what sshfs needs: $ sshfs chi:/tv4 tv4 fusermount: failed to open /dev/fuse: No such device or address I don't think it's a permissions issue -- same response from user root. I'm not using udev (it thoroughly messes up my system). How do I do this manually? Dave ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

Next Message by Date: click to view message preview

Re: [sshfs] failed to open /dev/fuse

> PS here's what my kernel module says -- don't know why it's not creating > /dev/fuse: > > # modinfo fuse > filename: /lib/modules/2.6.14/kernel/fs/fuse/fuse.ko > alias: char-major-10-229 > license: GPL > description: Filesystem in Userspace > author: Miklos Szeredi <miklos@xxxxxxxxxx> > depends: > vermagic: 2.6.14 SMP gcc-4.0 > > linux/Doc*/devices.txt has > > 10 char Non-serial mice, misc features > 229 = /dev/fuse Fuse (virtual filesystem in user-space) > > I have fuse-utils 2.4.0-1 and libfuse2 > 2.4.0-1 > > I tried creating > > mknod -m 666 /dev/fuse c 10 229 > > OK -- that seems to have done it! Nice. > > It doesn't show up in df, but the drive is mounted (with "sshfs > machine:/dir mountpoint". > It unmounts with "fusermount -u mountpoint". > > Great stuff. Worth adding the device node creation instructions in the > man page or somewhere though. Can you please add it to the FAQ at http://fuse.sourceforge.net/wiki/index.php/SshfsFaq Thanks, Miklos ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

Previous Message by Thread: click to view message preview

[sshfs] failed to open /dev/fuse

I just installed the Debian version on an amd64 system with linux 2.6.14. I loaded the fuse module from the (vanilla) kernel, but the /dev/fuse device node did not get created. I created it manually: mknod /dev/fuse c 0 0 chown root.fuse /dev/fuse chmod 0666 /dev/fuse But this does not appear to be what sshfs needs: $ sshfs chi:/tv4 tv4 fusermount: failed to open /dev/fuse: No such device or address I don't think it's a permissions issue -- same response from user root. I'm not using udev (it thoroughly messes up my system). How do I do this manually? Dave ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

Next Message by Thread: click to view message preview

Re: [sshfs] failed to open /dev/fuse

> PS here's what my kernel module says -- don't know why it's not creating > /dev/fuse: > > # modinfo fuse > filename: /lib/modules/2.6.14/kernel/fs/fuse/fuse.ko > alias: char-major-10-229 > license: GPL > description: Filesystem in Userspace > author: Miklos Szeredi <miklos@xxxxxxxxxx> > depends: > vermagic: 2.6.14 SMP gcc-4.0 > > linux/Doc*/devices.txt has > > 10 char Non-serial mice, misc features > 229 = /dev/fuse Fuse (virtual filesystem in user-space) > > I have fuse-utils 2.4.0-1 and libfuse2 > 2.4.0-1 > > I tried creating > > mknod -m 666 /dev/fuse c 10 229 > > OK -- that seems to have done it! Nice. > > It doesn't show up in df, but the drive is mounted (with "sshfs > machine:/dir mountpoint". > It unmounts with "fusermount -u mountpoint". > > Great stuff. Worth adding the device node creation instructions in the > man page or somewhere though. Can you please add it to the FAQ at http://fuse.sourceforge.net/wiki/index.php/SshfsFaq Thanks, Miklos ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

Web Hosting Reviews from OSDir.com Sister Site iBizWebHosting.com

Home | News | Patents | Sitemap | FAQ | advertise | OSDir is an Inevitable website. GBiz & git.net are too!

Advertising by