initial commit

This commit is contained in:
Malin Freeborn
2020-01-02 01:04:35 +01:00
commit 6befc5d3c1
162 changed files with 19086 additions and 0 deletions

25
system/kernel.md Normal file
View File

@@ -0,0 +1,25 @@
Check which kernet modules are loaded into memory
> sudo /sbin/lsmod
Check which virtual box modules are loaded into memory
> sudo /sbin/lsmod | grep vbox
Virtual box is using vboxpci, vboxnetadp, vboxnetflt, vboxdr.
Look at what's claiming wifi:
> sudo lshw -C network
If this shows that the device is 'unclaimed' then it's time to add a module, e.g. ath9k.
> sudo modprobe ath9k
Modules can also be 'restarted' by removing and adding them, e.g. the video module, 'uvcvideo':
> sudo rmmod uvcvideo
> sudo modprobe uvcvideo