linux kernel module

  1. D

    Source code repository for Guest Linux kernel modules

    Where can I find the source code repository for Guest Linux kernel module? Is there a place we can see the latest available code, or do we depend on the parallels-tools iso file that comes with Parallels installation?
  2. A

    Problem installing kali linux on parallels 13

    Hi, i 've a problem installing parallels tools in kali linux 2017.1. I don't find the linux headers which are needed by parallels for installing parallels tools. So, someone know some tricks to solve this problem? I can't update parallels and I need to install a version of kali linux in...
  3. T

    Kernel module load failed on shared directory

    I wrote a very simple kernel module doing only helloworld. ------- #include <linux/init.h> #include <linux/module.h> MODULE_LICENSE("GPL"); static int hello_init(void) { printk(KERN_ALERT "Hello World!!\n"); return 0; } static void hello_exit(void) { printk(KERN_ALERT "Goodbye..\n"); }...
Back
Top