Bisher habe ich mich mit dem Thema Kernel noch nicht näher beschäftigen müssen. Nun bin ich aber auf ein Problem gestoßen, bei dem ich da nun nicht mehr herum komme.
Ich habe mir bei 1Blu einen VServer mit Debian 11 minimal (Kernel: 4.19.0) aufgesetzt. Hier möchte ich jetzt Sachen umsetzen, die ich zuvor im kleinen auf einem Pi mit Raspbian getestet habe. Aber jetzt scheitere ich schon daran, ein Webdav-Laufwerk einzubinden.
Beim Mounten bekomme ich die Fehlermeldung, das "fuse" nicht gefunden wird, welches ich aber aktuell installiert habe.
Code: Alles auswählen
Password:
/sbin/mount.davfs: loading kernel module fuse
modprobe: FATAL: Module fuse not found in directory /lib/modules/4.19.0
/sbin/mount.davfs: loading kernel module fuse failed
/sbin/mount.davfs: waiting for /dev/fuse to be created
/sbin/mount.davfs: can't open fuse device
Meine Recherche hat mich bis jetzt so weit gebracht, dass in meinem Verzeichnis /lib/modules/4.19.0 keine Unterordner vorhanden sind. Auch fehlen Dateien, die auf dem RaspPi vorhanden sind.
1blu-Server
Code: Alles auswählen
root@v7492:/lib/modules/4.19.0# ls -la
total 36
drwxr-xr-x 2 root root 4096 Aug 29 02:14 .
drwxr-xr-x 3 root root 4096 Aug 29 02:14 ..
-rw-r--r-- 1 root root 45 Aug 28 23:13 modules.alias
-rw-r--r-- 1 root root 12 Aug 28 23:13 modules.alias.bin
-rw-r--r-- 1 root root 12 Aug 28 23:13 modules.builtin.alias.bin
-rw-r--r-- 1 root root 0 Aug 28 23:13 modules.builtin.bin
-rw-r--r-- 1 root root 0 Aug 28 23:13 modules.dep
-rw-r--r-- 1 root root 12 Aug 28 23:13 modules.dep.bin
-rw-r--r-- 1 root root 0 Aug 28 23:13 modules.devname
-rw-r--r-- 1 root root 55 Aug 28 23:13 modules.softdep
-rw-r--r-- 1 root root 49 Aug 28 23:13 modules.symbols
-rw-r--r-- 1 root root 12 Aug 28 23:13 modules.symbols.bin
Code: Alles auswählen
1234@serverpi:/lib/modules/5.15.56-v8+ $ ls -la
insgesamt 2576
drwxr-xr-x 3 root root 4096 26. Aug 11:03 .
drwxr-xr-x 6 root root 4096 26. Aug 11:03 ..
drwxr-xr-x 11 root root 4096 26. Aug 11:03 kernel
-rw-r--r-- 1 root root 603725 11. Aug 12:23 modules.alias
-rw-r--r-- 1 root root 628398 11. Aug 12:23 modules.alias.bin
-rw-r--r-- 1 root root 15386 11. Aug 12:23 modules.builtin
-rw-r--r-- 1 root root 28860 11. Aug 12:23 modules.builtin.alias.bin
-rw-r--r-- 1 root root 17015 11. Aug 12:23 modules.builtin.bin
-rw-r--r-- 1 root root 88262 11. Aug 12:23 modules.builtin.modinfo
-rw-r--r-- 1 root root 223541 11. Aug 12:23 modules.dep
-rw-r--r-- 1 root root 300613 11. Aug 12:23 modules.dep.bin
-rw-r--r-- 1 root root 384 11. Aug 12:23 modules.devname
-rw-r--r-- 1 root root 67319 11. Aug 12:23 modules.order
-rw-r--r-- 1 root root 883 11. Aug 12:23 modules.softdep
-rw-r--r-- 1 root root 279141 11. Aug 12:23 modules.symbols
-rw-r--r-- 1 root root 338178 11. Aug 12:23 modules.symbols.bin
Ich bedanke mich schon mal für eure Antworten und hoffe ich habe meine Frage verständlich formuliert.
FBeye71