1

Topic: sshfs [fuse: device not found, try 'modprobe fuse' first]

Cuando utilizo sshfs me aparece este aviso:

fuse: device not found, try 'modprobe fuse' first

como hago para que

modprobe fuse

sea impostado de dafault?

2

Re: sshfs [fuse: device not found, try 'modprobe fuse' first]

Hello,

sorry for answering in English, so I hope my translations worked out and I can help you with your questions.

To load a module:

doas modprobe fuse

To view what you have loaded in a comprehensive way:

doas modprobe -c | less

It is also possible to enforce the kernel loading direct at boot your preferred modules. If you prefer this way: Give me a note and I explain this also. smile

Human being in favor with clear principles and so also for freedom in soft- and hardware!

Certainly anyone who has the power to make you believe absurdities has the power to make you commit injustices: For a life of every being full with peace and kindness, including diversity and freedom. Capitalism is destroying our minds, the planet itself and the universe in the end!

3

Re: sshfs [fuse: device not found, try 'modprobe fuse' first]

to enforce the kernel loading direct at boot

This I would like to do.

4

Re: sshfs [fuse: device not found, try 'modprobe fuse' first]

Sure thing: You can modify your local file /etc/conf.d/modules when using OpenRC:

# Linux users can define a list of modules for a specific kernel version,
# a released kernel version, a main kernel version or all kernel versions.
# The most specific versioned variable will take precedence.
# FreeBSD users can only use the modules="foo bar" setting.
#modules_2_6_23_gentoo_r5="ieee1394 ohci1394"
#modules_2_6_23="tun ieee1394"
#modules_2_6="tun"
#modules_2="ipv6"
#modules="ohci1394"

So your line could be then:

modules="fuse"

Please remember: You should for sure uncomment or add a new "modules"-line therefore. wink

Human being in favor with clear principles and so also for freedom in soft- and hardware!

Certainly anyone who has the power to make you believe absurdities has the power to make you commit injustices: For a life of every being full with peace and kindness, including diversity and freedom. Capitalism is destroying our minds, the planet itself and the universe in the end!

5

Re: sshfs [fuse: device not found, try 'modprobe fuse' first]

Perfect! it works

Thank you!