Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
rcS.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01iscsid
1.47
KB
-rwxr-xr-x
K01open-iscsi
2.38
KB
-rwxr-xr-x
K01ufw
2.03
KB
-rwxr-xr-x
S01apparmor
3.65
KB
-rwxr-xr-x
S01cryptdisks
937
B
-rwxr-xr-x
S01cryptdisks-early
896
B
-rwxr-xr-x
S01keyboard-setup.sh
1.44
KB
-rwxr-xr-x
S01kmod
2
KB
-rwxr-xr-x
S01lvm2
695
B
-rwxr-xr-x
S01networking
4.38
KB
-rwxr-xr-x
S01nfs-common
5.53
KB
-rwxr-xr-x
S01plymouth-log
760
B
-rwxr-xr-x
S01procps
959
B
-rwxr-xr-x
S01rpcbind
2.45
KB
-rwxr-xr-x
S01screen-cleanup
1.19
KB
-rwxr-xr-x
S01scsitools-pre.sh
2.24
KB
-rwxr-xr-x
S01scsitools.sh
2.72
KB
-rwxr-xr-x
S01udev
6.71
KB
-rwxr-xr-x
S01x11-common
2.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01scsitools-pre.sh
#!/bin/sh ### BEGIN INIT INFO # Provides: scsitools-pre # Required-Start: mountdevsubfs # Required-Stop: # X-Start-Before: checkroot # Default-Start: S # Default-Stop: # Short-Description: Create aliases for SCSI devices under /dev/scsi ### END INIT INFO # # This script is run early at boot time (before S10checkroot.sh), so / is not # yet writable. Therefore it is needed to set up a ramdisk for /dev/scsi. # The ramdisk will be removed later, after / has been remounted rw and swap # activated (see scsitools.sh). # # Written by Eric Delaunay <delaunay@debian.org> based on sources found in # scsidev 2.10 from Kurt Garloff <garloff@suse.de>. # # Licensed under GPL. . /lib/lsb/init-functions scsidevrw=0 # is /dev/scsi writable at boot time? needscsidev=0 # is scsidev needed at all? # if no mount points on /dev/scsi in /etc/fstab, scsidev might be not needed # NB: does not work with devfs if [ ! -e /dev/.devfsd ]; then if grep -q '^/dev/scsi' /etc/fstab; then needscsidev=1 fi fi # check for writable /dev/scsi if [ $needscsidev -eq 1 ]; then test -d /dev/scsi || mkdir --mode=755 /dev/scsi || true : 2> /dev/null > /dev/scsi/__try || true if [ -f /dev/scsi/__try ]; then scsidevrw=1 rm -f /dev/scsi/__try fi fi case "$1" in start) if [ -x /sbin/scsidev -a "$needscsidev" = 1 ]; then if [ "$scsidevrw" = 0 ]; then echo "Setting up SCSI devices (first part)..." # /dev is not writable, setup a small ramdisk (128kB) # (ignore all errors in case there is no ramdisk support compiled # in the kernel). dd if=/dev/zero of=/dev/ram3 bs=1024 count=128 > /dev/null 2>&1 mke2fs -q -F -i1024 -g4096 /dev/ram3 128 > /dev/null 2>&1 mount -n -t ext2 /dev/ram3 /dev/scsi > /dev/null 2>&1 if [ ! -d /dev/scsi/lost+found ]; then echo "Error creating ramdisk on /dev/scsi. Is ramdisk supported by the kernel?" fi else echo "Setting up SCSI devices..." fi /sbin/scsidev -r -q fi ;; reload | restart | force-reload | stop) echo "This script is not designed to work with <$0> argument." echo "Use /etc/init.d/scsitools.sh instead." exit 1 ;; *) echo "Usage: $0 {start|stop|restart|reload|force-reload}" exit 1 ;; esac unset needscsidev scsidevrw
Close