Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
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-5.15.0-186-generic /
Delete
Unzip
Name
Size
Permission
Date
Action
Documentation
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
arch
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
block
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
certs
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
crypto
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
drivers
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
fs
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
include
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
init
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
io_uring
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
ipc
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
kernel
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
lib
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
mm
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
net
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
samples
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
scripts
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
security
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
sound
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
tools
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
ubuntu
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
usr
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
virt
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
.config
255.99
KB
-rw-r--r--
2026-06-21 00:49
.gitignore
39
B
-rw-r--r--
2026-06-21 00:49
.missing-syscalls.d
1.1
KB
-rw-r--r--
2026-06-21 00:49
Kbuild
1.3
KB
-rw-r--r--
2021-11-01 05:53
Kconfig
580
B
-rw-r--r--
2026-06-21 00:49
Makefile
66.61
KB
-rw-r--r--
2026-06-21 00:49
Module.symvers
1.74
MB
-rw-r--r--
2026-06-21 00:49
Save
Rename
# SPDX-License-Identifier: GPL-2.0 # # Kbuild for top-level directory of the kernel ##### # Generate bounds.h bounds-file := include/generated/bounds.h always-y := $(bounds-file) targets := kernel/bounds.s $(bounds-file): kernel/bounds.s FORCE $(call filechk,offsets,__LINUX_BOUNDS_H__) ##### # Generate timeconst.h timeconst-file := include/generated/timeconst.h filechk_gentimeconst = echo $(CONFIG_HZ) | bc -q $< $(timeconst-file): kernel/time/timeconst.bc FORCE $(call filechk,gentimeconst) ##### # Generate asm-offsets.h offsets-file := include/generated/asm-offsets.h always-y += $(offsets-file) targets += arch/$(SRCARCH)/kernel/asm-offsets.s arch/$(SRCARCH)/kernel/asm-offsets.s: $(timeconst-file) $(bounds-file) $(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE $(call filechk,offsets,__ASM_OFFSETS_H__) ##### # Check for missing system calls always-y += missing-syscalls quiet_cmd_syscalls = CALL $< cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE $(call cmd,syscalls) ##### # Check atomic headers are up-to-date always-y += old-atomics quiet_cmd_atomics = CALL $< cmd_atomics = $(CONFIG_SHELL) $< old-atomics: scripts/atomic/check-atomics.sh FORCE $(call cmd,atomics)