Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
lm-sensors /
examples /
hotplug /
Delete
Unzip
Name
Size
Permission
Date
Action
README.p4b
1.46
KB
-rw-r--r--
2019-10-18 00:43
unhide_ICH_SMBus
1.81
KB
-rwxr-xr-x
2019-10-18 00:43
Save
Rename
#!/bin/bash # (C) Rudolf Marek <r.marek@assembler.cz>, # Copyright (C) 2007-2011 Jean Delvare <jdelvare@suse.de> # # Thanks Jean Delvare and Oliver Dreier <oliver@dinux.de> for testing. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 # as published by the Free Software Foundation # # Supports the following Intel ICH chipsets: # PCI ID # ICH 8086:2410 # ICH2 8086:2440 # ICH2-M 8086:244C # ICH3 8086:2480 # ICH3-M 8086:248C # ICH4 8086:24C0 # ICH4-M 8086:24CC # ICH5 8086:24D0 pcibus="/sys/bus/pci/slots" device="00:1f" if [ "$UID" -ne 0 ] ; then echo "You need to be root to run this script!" exit 252 fi smbus=`lspci -n -s $device.3 | grep -i '0c05: *8086'` if [ -n "$smbus" ] ; then echo "ICH SMBus is already there!" lspci -s $device.3 exit fi intel=`lspci -n -s $device.0 | grep -i '8086:24[148CD][0C]'` if [ -z "$intel" ] ; then echo "Not for your chipset - Intel (ICH) only" echo "Supported: ICH, ICH2, ICH2-M, ICH3, ICH3-M, ICH4, ICH4-M, ICH5" exit 255; fi modprobe fakephp &> /dev/null if [ ! -d "$pcibus" ] ; then echo "You need the fake PCI hotplug driver! (fakephp.ko, kernel 2.6.5 or later)" exit 255; fi echo "Enabling SMBus PCI device ..." newval=$( printf '%x' $((0x$(setpci -s $device.0 f2.w) & 0xfff7))) setpci -s $device.0 f2.w=$newval echo "Rescanning the bus ..." echo 1 > $pcibus/0000:$device.0/power 2>/dev/null if [ ! -d "$pcibus/0000:$device.3" ] ; then echo "Failed to enable the SMBUS" exit 253; fi if [ ! -d "/sys/bus/pci/drivers/i801_smbus" ] ; then echo "Loading i2c-i801 ..." modprobe i2c-i801 if [ $? -ne 0 ] ; then exit 251 fi fi lspci -s $device.3 echo "Done!" echo "Remember: system suspend/resume is no longer safe to use."