An open API service indexing awesome lists of open source software.

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

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
```

![alt text](http://blog.cyring.free.fr/images/dumptask_first.png "dumptask")

![alt text](http://blog.cyring.free.fr/images/dumptask_last.png "dumptask")

# About
[CyrIng](https://github.com/cyring)

Copyright (C) 2017-2019 CYRIL INGENIERIE
-------