Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17292 /
usr /
share /
initramfs-tools /
Delete
Unzip
Name
Size
Permission
Date
Action
conf-hooks.d
[ DIR ]
drwxr-xr-x
2020-09-24 14:02
conf.d
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
hooks
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
modules.d
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
scripts
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
compcache.hooks.diverted
3.52
KB
-rwxr-xr-x
2019-10-07 10:53
console_setup.hooks.diverted
3.02
KB
-rwxr-xr-x
2019-04-10 21:25
console_setup.init.top.diverted
3.41
KB
-rwxr-xr-x
2019-04-10 21:25
console_setup.panic.diverted
3.4
KB
-rwxr-xr-x
2019-04-10 21:25
hook-functions
18.49
KB
-rw-r--r--
2019-10-07 10:53
init
6.78
KB
-rwxr-xr-x
2019-10-07 10:53
kbd.hooks.diverted
301
B
-rwxr-xr-x
2016-09-22 17:33
modules
357
B
-rw-r--r--
2019-10-07 10:53
thermal.hooks.diverted
1.25
KB
-rwxr-xr-x
2019-10-07 10:53
Save
Rename
#!/bin/sh PREREQ="" prereqs() { echo "$PREREQ" } case $1 in # get pre-requisites prereqs) prereqs exit 0 ;; esac # Hooks for loading thermal bits into the initramfs . /usr/share/initramfs-tools/hook-functions case "$DPKG_ARCH" in # copy the right modules powerpc|ppc64) # Only G5 Mac machines need to load # therm_pm72 or one of the windfarm_pm* modules. [ -r /proc/cpuinfo ] || exit 0 MODEL="`grep model /proc/cpuinfo`" MODEL="${MODEL##*: }" case "$MODEL" in RackMac3,1|PowerMac7,2|PowerMac7,3) force_load therm_pm72 ;; PowerMac8,1|PowerMac8,2) force_load windfarm_pm81 ;; PowerMac9,1) force_load windfarm_pm91 ;; PowerMac11,2) force_load windfarm_pm112 ;; PowerMac12,1) force_load windfarm_pm121 ;; *) # No other machine needs windfarm_* modules on initrd. exit 0 ;; esac manual_add_modules windfarm_core manual_add_modules windfarm_cpufreq_clamp manual_add_modules windfarm_lm75_sensor manual_add_modules windfarm_max6690_sensor manual_add_modules windfarm_pid manual_add_modules windfarm_smu_controls manual_add_modules windfarm_smu_sat manual_add_modules windfarm_smu_sensors ;; i386|amd64|ia64) manual_add_modules fan manual_add_modules thermal ;; esac