lk/system/kernel.md
2025-02-12 15:01:15 +01:00

608 B

title tags
kernel
system

Check which kernel modules are loaded into memory:

su root
/sbin/lsmod 

Check which virtual box modules are loaded into memory

/sbin/lsmod | grep vbox 

Virtual box is using vboxpci, vboxnetadp, vboxnetflt, vboxdr.

Look at what's claiming wifi:

lshw -C network

If this shows that the device is 'unclaimed' then it's time to add a module, e.g. ath9k.

modprobe ath9k

Modules can also be 'restarted' by removing and adding them, e.g. the video module, 'uvcvideo':

rmmod uvcvideo
modprobe uvcvideo