__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 # Kselftest framework requirement - SKIP code is 4. ksft_skip=4 if [ $EUID -ne 0 ] then echo "Run as root" exit $ksft_skip fi damon_reclaim_enabled="/sys/module/damon_reclaim/parameters/enabled" if [ ! -f "$damon_reclaim_enabled" ] then echo "No 'enabled' file. Maybe DAMON_RECLAIM not built" exit $ksft_skip fi nr_kdamonds=$(pgrep kdamond | wc -l) if [ "$nr_kdamonds" -ne 0 ] then echo "Another kdamond is running" exit $ksft_skip fi echo Y > "$damon_reclaim_enabled" nr_kdamonds=$(pgrep kdamond | wc -l) if [ "$nr_kdamonds" -ne 1 ] then echo "kdamond is not turned on" exit 1 fi echo N > "$damon_reclaim_enabled" nr_kdamonds=$(pgrep kdamond | wc -l) if [ "$nr_kdamonds" -ne 0 ] then echo "kdamond is not turned off" exit 1 fi
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Makefile | File | 658 B | 0644 |
|
| _chk_dependency.sh | File | 943 B | 0644 |
|
| _debugfs_common.sh | File | 1.1 KB | 0644 |
|
| lru_sort.sh | File | 798 B | 0755 |
|
| reclaim.sh | File | 793 B | 0755 |
|
| sysfs.sh | File | 8.73 KB | 0755 |
|
| sysfs_update_removed_scheme_dir.sh | File | 1.54 KB | 0755 |
|