Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.152
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
pm-utils /
sleep.d /
Delete
Unzip
Name
Size
Permission
Date
Action
00logging
274
B
-rwxr-xr-x
2014-09-16 18:20
00powersave
203
B
-rwxr-xr-x
2014-09-16 18:20
01grub
1.22
KB
-rwxr-xr-x
2014-09-16 18:20
49bluetooth
664
B
-rwxr-xr-x
2014-09-16 18:20
55NetworkManager
1.2
KB
-rwxr-xr-x
2014-09-16 18:20
56dhclient
1.77
KB
-rwxr-xr-x
2024-05-23 11:19
75modules
453
B
-rwxr-xr-x
2014-09-16 18:20
90clock
614
B
-rwxr-xr-x
2014-09-16 18:20
94cpufreq
1.07
KB
-rwxr-xr-x
2014-09-16 18:20
95led
297
B
-rwxr-xr-x
2014-09-16 18:20
98video-quirk-db-handler
13.57
KB
-rwxr-xr-x
2014-09-16 18:20
99video
5.53
KB
-rwxr-xr-x
2014-09-16 18:20
Save
Rename
#!/bin/sh # Ensure cpu governor is set to something sane. # TODO: Which of the cpu governors is still insane? File bugs against # those that are. . "${PM_FUNCTIONS}" [ -d /sys/devices/system/cpu/ ] || exit $NA hibernate_cpufreq() { ( cd /sys/devices/system/cpu/ for x in cpu[0-9]*; do # if cpufreq is a symlink, it is handled by another cpu. Skip. [ -L "$x/cpufreq" ] && continue gov="$x/cpufreq/scaling_governor" # if we do not have a scaling_governor file, skip. [ -f "$gov" ] || continue # if our temporary governor is not available, skip. grep -q "$TEMPORARY_CPUFREQ_GOVERNOR" \ "$x/cpufreq/scaling_available_governors" || continue savestate "${x}_governor" < "$gov" echo "$TEMPORARY_CPUFREQ_GOVERNOR" > "$gov" done ) } thaw_cpufreq() { ( cd /sys/devices/system/cpu/ for x in cpu[0-9]*/cpufreq/scaling_governor ; do [ -f "$x" ] || continue state_exists "${x%%/*}_governor" || continue restorestate "${x%%/*}_governor" > "$x" done ) } case "$1" in suspend|hibernate) hibernate_cpufreq ;; resume|thaw) thaw_cpufreq ;; *) exit $NA ;; esac