1.Linux login interface1. Check the current file directory: After connecting to the Linux system through Xshell Enter the command: ls 2. Create a new code/kernel folder 2. Write code1. Create hello_module.c Command: vim hello_module.c 2. Press i to enter edit mode and enter the following code The above code is explained as follows: 3. Save and exit, and press ESC to view the file directory; 3. Write the Makefilevim Makefile obj-m := hello_module.o KERNELBUILD := /lib/modules/$(shell uname -r)/build CURRENT_PATH := $(shell pwd) all: make -C $(KERNELBUILD) M=$(CURRENT_PATH) modules clean: make -C $(KERNELBUILD) M=$(CURRENT_PATH) clean The above code is explained as follows: :wq save and exit 4. Compile:Enter the command: make You can see the compiled files Check compiled modules You can also use the modinfo command to further check: 5. Insert moduleInsert the module using the insmod command. After the insertion is complete, you can use the lsmod command to check whether the current module has been loaded into the system: The first one is. After the system loads the module, it will also create a new directory named after the module under the "/sys/module" directory: 6. View log outputSince prink() uses the default output level in this demonstration, you can view the output results through the "dmesg" or "tail /var/log/kern.log" command. This is the end of this article about Ubuntu compiling kernel modules and the content reflected in the system log. For more relevant content about Ubuntu compiling kernel modules, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Concat() of combined fields in MySQL
>>: Using CSS3 and JavaScript to develop web color picker example code
Table of contents 1. Maven Dependency 2. Menu rel...
Uninstall old versions If you have installed an o...
Table of contents 1. Location Object 1. URL 2. Pr...
Friends who are learning HTML, CSS and JS front-e...
In the horizontal direction, you can set the row ...
When you learn MySQL, you will find that it comes...
The key codes are as follows: Copy code The code i...
【Introduction】: Handtrack.js is a prototype libra...
Recently, when using Apple.com/Ebay.com/Amazon.co...
Set the table's style="table-layout:fixed...
Add multiple lines to the specified file in Docke...
Table of contents 1. Problem Description 2. Probl...
If people have been idle for too long, they will ...
Table of contents Preface 1. Routing lazy loading...
In fact many people will say “I’ve seen that table...