1

I am trying to use 9p to mount a remote FS. The client machine is a tiny core linux machine. modprobe 9pnet says that module 9pnet cant be found at modules.dep How to add 9p kernel modules to the tiny core linux?

user301916
  • 163
  • 1
  • 1
  • 5
  • at first try to find this module `find /lib/modules/`uname -r` -name "9pnet"` If find fails, try search `find /lib/modules/`uname -r` -name "9p*"` If module found - you can load it by insmod "full path to module" if you can't find it, than you should install it. – BaZZiliO Sep 10 '15 at 18:51
  • it is not there. hmm does installing it requires recompiling the kernel? – user301916 Sep 10 '15 at 19:00
  • I think yes, i've post an answer to your topic. – BaZZiliO Sep 10 '15 at 20:29

1 Answers1

0

at first try to find this module find /lib/modules/uname -r-name "9pnet"

If find fails, try search find /lib/modules/uname -r-name "9p*" If module found - you can load it by insmod "full path to module"

If you can't find it, than you should install it.

As described there i think, you should recompile kernel.

BaZZiliO
  • 300
  • 1
  • 2
  • 11