Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 13.59.58.68
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-aws-headers-4.15.0-1021 /
arch /
m68k /
[ HOME SHELL ]
Name
Size
Permission
Action
68000
[ DIR ]
drwxr-xr-x
amiga
[ DIR ]
drwxr-xr-x
apollo
[ DIR ]
drwxr-xr-x
atari
[ DIR ]
drwxr-xr-x
bvme6000
[ DIR ]
drwxr-xr-x
coldfire
[ DIR ]
drwxr-xr-x
emu
[ DIR ]
drwxr-xr-x
fpsp040
[ DIR ]
drwxr-xr-x
hp300
[ DIR ]
drwxr-xr-x
ifpsp060
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
kernel
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mac
[ DIR ]
drwxr-xr-x
math-emu
[ DIR ]
drwxr-xr-x
mm
[ DIR ]
drwxr-xr-x
mvme147
[ DIR ]
drwxr-xr-x
mvme16x
[ DIR ]
drwxr-xr-x
q40
[ DIR ]
drwxr-xr-x
sun3
[ DIR ]
drwxr-xr-x
sun3x
[ DIR ]
drwxr-xr-x
tools
[ DIR ]
drwxr-xr-x
Kconfig
3.22
KB
-rw-r--r--
Kconfig.bus
2.12
KB
-rw-r--r--
Kconfig.cpu
12.5
KB
-rw-r--r--
Kconfig.debug
1.37
KB
-rw-r--r--
Kconfig.devices
4.38
KB
-rw-r--r--
Kconfig.machine
12.44
KB
-rw-r--r--
Makefile
5.12
KB
-rw-r--r--
install.sh
1.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install.sh
#!/bin/sh # # This file is subject to the terms and conditions of the GNU General Public # License. See the file "COPYING" in the main directory of this archive # for more details. # # Copyright (C) 1995 by Linus Torvalds # # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin # # "make install" script for m68k architecture # # Arguments: # $1 - kernel version # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) # verify () { if [ ! -f "$1" ]; then echo "" 1>&2 echo " *** Missing file: $1" 1>&2 echo ' *** You need to run "make" before "make install".' 1>&2 echo "" 1>&2 exit 1 fi } # Make sure the files actually exist verify "$2" verify "$3" # User may have a custom install script if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi # Default install - same as make zlilo if [ -f $4/vmlinuz ]; then mv $4/vmlinuz $4/vmlinuz.old fi if [ -f $4/System.map ]; then mv $4/System.map $4/System.old fi cat $2 > $4/vmlinuz cp $3 $4/System.map sync
Close