Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
update-notifier /
Delete
Unzip
Name
Size
Permission
Date
Action
apt-cdrom-check
2.39
KB
-rwxr-xr-x
2021-05-31 19:40
apt-check
18.22
KB
-rwxr-xr-x
2021-05-31 19:40
apt_check.py
18.22
KB
-rwxr-xr-x
2021-05-31 19:40
backend_helper.py
4.73
KB
-rwxr-xr-x
2021-05-31 19:40
cddistupgrader
619
B
-rwxr-xr-x
2021-05-31 19:40
package-data-downloader
11.41
KB
-rwxr-xr-x
2021-05-31 19:40
package-system-locked
358
B
-rwxr-xr-x
2021-05-31 19:40
update-motd-fsck-at-reboot
2.71
KB
-rwxr-xr-x
2021-05-31 19:40
update-motd-reboot-required
115
B
-rwxr-xr-x
2021-05-31 19:40
update-motd-updates-available
1.45
KB
-rwxr-xr-x
2021-05-31 19:40
Save
Rename
#!/bin/sh # CDROM_MOUNT="$1" for d in "$CDROM_MOUNT"/dists/*/main/dist-upgrader/binary-all/; do if [ -d "$d" ]; then UPGRADER_DIR="$d" break fi done TAR=$(basename "$UPGRADER_DIR"/*.tar.gz) CODENAME=${TAR%.tar.gz} # get a tempdir TMPDIR=$(mktemp -t -d distupgrade.XXXXXX) cd $TMPDIR # extract the tar tar xzf "$UPGRADER_DIR"/"$TAR" # apply any patches needed before running the upgrade for apatch in /usr/share/update-notifier/upgrader-patches/*.diff; do if patch --dry-run < "$apatch"; then patch < "$apatch" fi done # run it "$TMPDIR"/"$CODENAME" --cdrom "$CDROM_MOUNT"