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
/
snap /
lxd /
38800 /
commands /
Delete
Unzip
Name
Size
Permission
Date
Action
buginfo
2.21
KB
-rwxr-xr-x
2026-03-31 05:48
daemon.activate
3.88
KB
-rwxr-xr-x
2026-03-31 05:48
daemon.reload
301
B
-rwxr-xr-x
2026-03-31 05:48
daemon.start
24.68
KB
-rwxr-xr-x
2026-03-31 05:48
daemon.stop
4.54
KB
-rwxr-xr-x
2026-03-31 05:48
lxc
2.17
KB
-rwxr-xr-x
2026-03-31 05:48
lxc-to-lxd
629
B
-rwxr-xr-x
2026-03-31 05:48
lxd
1.29
KB
-rwxr-xr-x
2026-03-31 05:48
lxd-benchmark
790
B
-rwxr-xr-x
2026-03-31 05:48
lxd-check-kernel
232
B
-rwxr-xr-x
2026-03-31 05:48
lxd-migrate
1.57
KB
-rwxr-xr-x
2026-03-31 05:48
lxd-user
572
B
-rwxr-xr-x
2026-03-31 05:48
refresh
154
B
-rwxr-xr-x
2026-03-31 05:48
Save
Rename
#!/bin/sh set -eu # Re-exec outside of apparmor confinement if [ -d /sys/kernel/security/apparmor ] && [ "$(cat /proc/self/attr/current)" != "unconfined" ]; then exec aa-exec -p unconfined -- "$0" "$@" fi # Check that we're root if [ "$(id -u)" != "0" ]; then echo "error: This tool must be run as root." exit 1 fi # shellcheck disable=SC2155 export SNAP_CURRENT="$(realpath "${SNAP}/..")/current" export LXD_DIR="${LXD_DIR:-"${SNAP_COMMON}/lxd/"}" export LXD_CONF="${SNAP_USER_COMMON}/config" export LXD_GLOBAL_CONF="${LXD_GLOBAL_CONF:-"${SNAP_COMMON}/global-conf/"}" exec "${SNAP_CURRENT}/bin/lxc-to-lxd" "$@"