https://github.com/cyring/dumptask
A simple kernel module to dump the tasks
https://github.com/cyring/dumptask
hacking kernel-module linux-kernel scheduled-tasks
Last synced: 10 months ago
JSON representation
A simple kernel module to dump the tasks
- Host: GitHub
- URL: https://github.com/cyring/dumptask
- Owner: cyring
- Created: 2017-01-09T14:02:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T20:29:00.000Z (over 3 years ago)
- Last Synced: 2025-03-25T11:49:23.389Z (10 months ago)
- Topics: hacking, kernel-module, linux-kernel, scheduled-tasks
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 4
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dumptask
## Build
1- Download or clone the source code into a working directory.
2- Build the programs.
```
make
```
## Run (as root)
3- Load the kernel module.
```
modprobe dumptask
```
_or_
```
insmod dumptask.ko
```
4- List the tasks.
```
showtask
```
### Unload
5- Unload the kernel module with the ```rmmod``` command
```
rmmod dumptask.ko
```
## Screenshots
### Linux kernel module
Use ```dmesg``` or ```journalctl -k``` to check the module state
```
dumptask: loaded
dumptask: unload
```


# About
[CyrIng](https://github.com/cyring)
Copyright (C) 2017-2019 CYRIL INGENIERIE
-------