Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-136 /
arch /
parisc /
Delete
Unzip
Name
Size
Permission
Date
Action
boot
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
include
[ DIR ]
drwxr-xr-x
2026-07-17 06:28
kernel
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
lib
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
math-emu
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
mm
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
net
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
video
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
Kbuild
108
B
-rw-r--r--
2024-03-10 20:38
Kconfig
9.71
KB
-rw-r--r--
2026-07-01 19:48
Kconfig.debug
776
B
-rw-r--r--
2024-03-10 20:38
Makefile
6.12
KB
-rw-r--r--
2026-07-01 19:48
install.sh
892
B
-rwxr-xr-x
2024-03-10 20:38
Save
Rename
#!/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 i386 architecture # # Arguments: # $1 - kernel version # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) if [ "$(basename $2)" = "vmlinuz" ]; then # Compressed install echo "Installing compressed kernel" base=vmlinuz else # Normal install echo "Installing normal kernel" base=vmlinux fi if [ -f $4/$base-$1 ]; then mv $4/$base-$1 $4/$base-$1.old fi cat $2 > $4/$base-$1 # Install system map file if [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.old fi cp $3 $4/System.map-$1