usmannasir / cyberpanel

Cyber Panel - The hosting control panel for OpenLiteSpeed
GNU General Public License v3.0
1.52k stars 589 forks source link

[BUG] Cannot install on Ubuntu Server LTS 22.04.2 (Minimal) #1056

Open shoulders opened 1 year ago

shoulders commented 1 year ago

Important Checked

Describe the bug I cannot successfully install CyberPanel on my fresh installation of Ubuntu Server 22.04.2 LTS (Minimal)

During the installation I get the following 3 errors:

Issue 1: Ping not found

./cyberpanel.sh: line 1249: ping: command not found

The network is down.. :(

This is caused by ping not being installed and referenced by https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1249

This can be fixed by running apt install iputils-ping before running the script. But the script should be modified to install this.

Issue 2: 8.8.8.8 is hardcoded preventing DNS resolution because of my DNS-Hijacking see https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1265

The name server is hardcoded to use googles 8.8.8.8 but because I employ DNS-Hijacking this IP address is forbidden. I got around this by temporarily disabling my DNS hijacking which is not ideal. Can you set this up to use the network cards DNS server instead? At the very least update the install instructions to tell users to disable DNS-Hijacking while installing.

Issue 3: acme.sh: No such file or directory

/root/.acme.sh/acme.sh --upgrade --auto-upgrade has failed for 40 times
Wait for 3 seconds and try again...

./cyberpanel.sh: line 181: /root/.acme.sh/acme.sh: No such file or directory

/root/.acme.sh/acme.sh --upgrade --auto-upgrade has failed for 41 times
Wait for 3 seconds and try again...

I could not figure out how to fix this one. The script does not appear to download the script or it is not downloading the script to the correct place.

see https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1350

I think this is where the issue starts to occur.

To Reproduce What steps did you take when the issue occurred?

  1. Setup a fresh installation of Ubuntu Server 22.04.2 LTS (Minimal)
  2. install CyberPanel
  3. See errors

Expected behavior CyberPanel should install with no error

Screenshots n/a

Operating system: Ubuntu Server 20.04 LTS (Minimal)

CyberPanel version: v2.3.3

Additional context I am installing using the root account and not sudo

qtwrk commented 1 year ago

I will fix the 1)

for 2) and 3)

Are you doing this on a server in China ?

because that acme should only apply to Chinese server if I recall , altered to gitee in case of github as it is blocked in China

shoulders commented 1 year ago

Setup

More info

I did a search on my partial cyberpanel install for acme

root@cyberpanel:~# find / -name acme
/usr/local/CyberPanel/lib/python3.10/site-packages/acme
/usr/share/doc/acme
/usr/share/lintian/overrides/acme
/usr/bin/acme
root@cyberpanel:~#

More of the acme.sh code https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1347-L1365

https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1394-L1412

shoulders commented 1 year ago

is it this line that is broken?

https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1350

qtwrk commented 1 year ago

Not exactly, that was meant to run only in Chinese server, where replacing the python script that installs acme from Github to gitee

Please use script command and bash -x, to log out what exactly was happening

shoulders commented 1 year ago
shoulders commented 1 year ago

Logs as requested (Via Putty)

failed-install.log This is the log where the installation fails. (DNS Hijacking was disabled and I had installed iputils-ping) failed-install.log

the-error.txt Error from the end of the log which all relates to cron the-error.txt

Working instructions

# Log in as root
# Disable DNS-Hijacking (removing hardcoded DNS entries is better: 1.1.1.1, 8.8.8.8)
apt update && apt upgrade -y
apt install iputils-ping
apt install cron
sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh)

My Conclusion Installing iputils-ping and cron and disabling DNS-Hijacking allows Cyberpanel to install.

So perhaps these packages should be added to the install.sh and hardcoded DNS servers should be made optional in the script or the script should pick up the DNS server from the network card.

Thanks

qtwrk commented 1 year ago
[Mon Apr 24 06:47:59 PM UTC 2023] It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'.
[Mon Apr 24 06:47:59 PM UTC 2023] We need to set cron job to renew the certs automatically.
[Mon Apr 24 06:47:59 PM UTC 2023] Otherwise, your certs will not be able to be renewed automatically.
[Mon Apr 24 06:47:59 PM UTC 2023] Please add '--force' and try install again to go without crontab.
[Mon Apr 24 06:47:59 PM UTC 2023] ./acme.sh --install --force
[Mon Apr 24 06:47:59 PM UTC 2023] Pre-check failed, can not install.

so somehow , the acme.sh installation failed , looks like you have the solution already , still not sure about the DNS part, I will do some more check with it

and what does it show if you run curl https://cyberpanel.sh/?country ?


if I recall correctly , some (or many , if not all) newer system comes with systemd-resolve , which conflicts with PowerDNS , so I had to disable it and overwrite /etc/resolv.conf in order to make PowerDNS works while server can still resolve domains properly

if I remove that part , then user needs to manually disable systemd-resolve and set up /etc/resolv.conf , this will affect more users and give more trouble

best I can do for you , is to add a hidden parameter for you only , to disable the DNS override , what do you think ?

shoulders commented 1 year ago

Hijacking DNS

Mine is an edge case now and maybe very popular among security people, but it will become more common among the technical community, lets says nerds installing their own webserver running on Linux box 😄

Country

As you mentioned you should keep PowerDNS as you are doing now and I think my method will work fine.

Have I missed something?

I know a little bit of PHP programming (which can be dangerous) so if you see any mistakes in my thoughts feel free to update me 😄

Hardcode DNS locations

https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1240-L1241

https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1265

https://github.com/usmannasir/cyberpanel/blob/749c4bcd166fe25b017781f1187d0d39775dc1f4/cyberpanel.sh#L1962-L1963

qtwrk commented 1 year ago

I will seek implement the option 1) then

only line 1240-1241 is hardcoded , the line 1265 was to find a location of certain code based on that line , it does not change anything , it just did a "grep" or search

line 1962-1963 was to get the server's hostname (like full qualified domain name with outside DNS resolver) , it does not change anything either.

shoulders commented 1 year ago

Sounds good, here is some additional information on my DNS hijacking setup:

ARHAEEM commented 8 months ago

I've same error. and i use Hetzner.

Terminal Full Log

```Shell root@Wordpress:~# hostnamectl set-hostname 789456123.arab.gg root@Wordpress:~# hostnamectl Static hostname: 789456123.arab.gg Icon name: computer-vm Chassis: vm Machine ID: a481fe6cde424fdc8b14d510e5c7a8c0 Boot ID: 383aa52861d2403e9b29ed030e824b52 Virtualization: kvm Operating System: Ubuntu 20.04.6 LTS Kernel: Linux 5.4.0-169-generic Architecture: arm64 root@Wordpress:~# sudo apt update && sudo apt -y upgrade Get:1 https://mirror.hetzner.com/ubuntu/packages focal InRelease [265 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates InRelease [114 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-backports InRelease [108 kB] Get:4 https://mirror.hetzner.com/ubuntu/security focal-security InRelease [114 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 Packages [940 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal/main Translation-en [506 kB] Get:7 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 c-n-f Metadata [28.6 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal/restricted arm64 Packages [1,300 B] Get:9 https://mirror.hetzner.com/ubuntu/packages focal/restricted Translation-en [6,212 B] Get:10 https://mirror.hetzner.com/ubuntu/packages focal/restricted arm64 c-n-f Metadata [108 B] Get:11 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 Packages [8,458 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal/universe Translation-en [5,124 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 c-n-f Metadata [255 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal/multiverse arm64 Packages [114 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal/multiverse Translation-en [104 kB] Get:16 https://mirror.hetzner.com/ubuntu/packages focal/multiverse arm64 c-n-f Metadata [8,024 B] Get:17 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 Packages [2,290 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal-updates/main Translation-en [488 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 c-n-f Metadata [16.8 kB] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted arm64 Packages [38.4 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted Translation-en [359 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted arm64 c-n-f Metadata [376 B] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 Packages [1,056 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe Translation-en [273 kB] Get:25 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 c-n-f Metadata [23.9 kB] Get:26 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse arm64 Packages [8,472 B] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse Translation-en [7,484 B] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse arm64 c-n-f Metadata [380 B] Get:29 https://mirror.hetzner.com/ubuntu/packages focal-backports/main arm64 Packages [45.4 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal-backports/main Translation-en [16.3 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal-backports/main arm64 c-n-f Metadata [1,420 B] Get:32 https://mirror.hetzner.com/ubuntu/packages focal-backports/restricted arm64 c-n-f Metadata [116 B] Get:33 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe arm64 Packages [24.3 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe Translation-en [16.3 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe arm64 c-n-f Metadata [864 B] Get:36 https://mirror.hetzner.com/ubuntu/packages focal-backports/multiverse arm64 c-n-f Metadata [116 B] Get:37 https://mirror.hetzner.com/ubuntu/security focal-security/main arm64 Packages [1,984 kB] Get:38 https://mirror.hetzner.com/ubuntu/security focal-security/main Translation-en [405 kB] Get:39 https://mirror.hetzner.com/ubuntu/security focal-security/main arm64 c-n-f Metadata [12.9 kB] Get:40 https://mirror.hetzner.com/ubuntu/security focal-security/restricted arm64 Packages [38.2 kB] Get:41 https://mirror.hetzner.com/ubuntu/security focal-security/restricted Translation-en [342 kB] Get:42 https://mirror.hetzner.com/ubuntu/security focal-security/restricted arm64 c-n-f Metadata [380 B] Get:43 https://mirror.hetzner.com/ubuntu/security focal-security/universe arm64 Packages [831 kB] Get:44 https://mirror.hetzner.com/ubuntu/security focal-security/universe Translation-en [192 kB] Get:45 https://mirror.hetzner.com/ubuntu/security focal-security/universe arm64 c-n-f Metadata [17.2 kB] Get:46 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse arm64 Packages [3,068 B] Get:47 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse Translation-en [5,504 B] Get:48 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse arm64 c-n-f Metadata [116 B] Fetched 24.6 MB in 3s (8,979 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done 12 packages can be upgraded. Run 'apt list --upgradable' to see them. Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done The following packages will be upgraded: libssh-4 openssh-client openssh-server openssh-sftp-server python3-update-manager tar update-manager-core vim vim-common vim-runtime vim-tiny xxd 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 10 standard LTS security updates Need to get 9,174 kB of archives. After this operation, 22.5 kB disk space will be freed. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 tar arm64 1.30+dfsg-7ubuntu0.20.04.4 [228 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim arm64 2:8.1.2269-1ubuntu5.21 [1,141 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-tiny arm64 2:8.1.2269-1ubuntu5.21 [535 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-runtime all 2:8.1.2269-1ubuntu5.21 [5,878 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 xxd arm64 2:8.1.2269-1ubuntu5.21 [52.6 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-common all 2:8.1.2269-1ubuntu5.21 [88.2 kB] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-sftp-server arm64 1:8.2p1-4ubuntu0.10 [48.6 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-server arm64 1:8.2p1-4ubuntu0.10 [355 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-client arm64 1:8.2p1-4ubuntu0.10 [638 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 python3-update-manager all 1:20.04.10.18 [38.3 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 update-manager-core all 1:20.04.10.18 [11.6 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libssh-4 arm64 0.9.3-2ubuntu2.4 [160 kB] Fetched 9,174 kB in 0s (72.9 MB/s) Preconfiguring packages ... (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../tar_1.30+dfsg-7ubuntu0.20.04.4_arm64.deb ... Unpacking tar (1.30+dfsg-7ubuntu0.20.04.4) over (1.30+dfsg-7ubuntu0.20.04.3) ... Setting up tar (1.30+dfsg-7ubuntu0.20.04.4) ... (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../00-vim_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking vim (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../01-vim-tiny_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking vim-tiny (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../02-vim-runtime_2%3a8.1.2269-1ubuntu5.21_all.deb ... Unpacking vim-runtime (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../03-xxd_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking xxd (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../04-vim-common_2%3a8.1.2269-1ubuntu5.21_all.deb ... Unpacking vim-common (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../05-openssh-sftp-server_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-sftp-server (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../06-openssh-server_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-server (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../07-openssh-client_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-client (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../08-python3-update-manager_1%3a20.04.10.18_all.deb ... Unpacking python3-update-manager (1:20.04.10.18) over (1:20.04.10.11) ... Preparing to unpack .../09-update-manager-core_1%3a20.04.10.18_all.deb ... Unpacking update-manager-core (1:20.04.10.18) over (1:20.04.10.11) ... Preparing to unpack .../10-libssh-4_0.9.3-2ubuntu2.4_arm64.deb ... Unpacking libssh-4:arm64 (0.9.3-2ubuntu2.4) over (0.9.3-2ubuntu2.3) ... Setting up openssh-client (1:8.2p1-4ubuntu0.10) ... Setting up xxd (2:8.1.2269-1ubuntu5.21) ... Setting up vim-common (2:8.1.2269-1ubuntu5.21) ... Setting up libssh-4:arm64 (0.9.3-2ubuntu2.4) ... Setting up python3-update-manager (1:20.04.10.18) ... Setting up vim-runtime (2:8.1.2269-1ubuntu5.21) ... Setting up openssh-sftp-server (1:8.2p1-4ubuntu0.10) ... Setting up vim (2:8.1.2269-1ubuntu5.21) ... Setting up openssh-server (1:8.2p1-4ubuntu0.10) ... rescue-ssh.target is a disabled or a static unit, not starting it. Setting up vim-tiny (2:8.1.2269-1ubuntu5.21) ... Setting up update-manager-core (1:20.04.10.18) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Processing triggers for ufw (0.36-6ubuntu1.1) ... Processing triggers for systemd (245.4-4ubuntu3.22) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for mime-support (3.64ubuntu1) ... root@Wordpress:~# sudo apt -y install curl wget Reading package lists... Done Building dependency tree Reading state information... Done curl is already the newest version (7.68.0-1ubuntu2.21). wget is already the newest version (1.20.3-1ubuntu2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@Wordpress:~# sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2344 100 2344 0 0 20382 0 --:--:-- --:--:-- --:--:-- 20206 curl is already the newest version (7.68.0-1ubuntu2.21). wget is already the newest version (1.20.3-1ubuntu2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Initializing... Fetching latest data from CyberPanel server... This may take few seconds... Branch name fetched...v2.3.4 Checking root privileges... You are runing as root... Valid IP detected... Checking server location... Desktop OS not detected. Proceeding System: Ubuntu 20 detected... Checking virtualization type... Initialized... CyberPanel Installer v2.3.4 1. Install CyberPanel. 2. Exit. Please enter the number[1-2]: 1 CyberPanel Installer v2.3.4 RAM check : 132/3821MB (3.45%) Disk check : 2/38GB (6%) (Minimal 10GB free space) 1. Install CyberPanel with OpenLiteSpeed. 2. Install Cyberpanel with LiteSpeed Enterprise. 3. Exit. Please enter the number[1-3]: 1 Install Full service for CyberPanel? This will include PowerDNS, Postfix and Pure-FTPd. Full installation [Y/n]: Y Full installation selected... Do you want to setup Remote MySQL? (This will skip installation of local MySQL) (Default = No) Remote MySQL [y/N]: N Local MySQL selected... Press Enter key to continue with latest version or Enter specific version such as: 1.9.4 , 2.0.1 , 2.0.2 ...etc Branch name set to v2.3.4 Please choose to use default admin password 1234567, randomly generate one (recommended) or specify the admin password? Choose [d]fault, [r]andom or [s]et password: [d/r/s] r Admin password will be provided once installation is completed... Do you wish to install Memcached process and its PHP extension? Please select [Y/n]: Y Install Memcached process and its PHP extension set to Yes... Do you wish to install Redis process and its PHP extension? Please select [Y/n]: Y Install Redis process and its PHP extension set to Yes... Would you like to set up a WatchDog (beta) for Web service and Database service ? The watchdog script will be automatically started up after installation and server reboot If you want to kill the watchdog , run watchdog kill Please type Yes or no (with capital Y, default Yes): Yes Install Watchdog set to Yes... Hit:1 https://mirror.hetzner.com/ubuntu/packages focal InRelease Hit:2 https://mirror.hetzner.com/ubuntu/packages focal-updates InRelease Hit:3 https://mirror.hetzner.com/ubuntu/packages focal-backports InRelease Hit:4 https://mirror.hetzner.com/ubuntu/security focal-security InRelease Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Done Building dependency tree Reading state information... Done htop is already the newest version (2.2.0-2build1). libattr1 is already the newest version (1:2.4.48-5). libattr1 set to manually installed. net-tools is already the newest version (1.60+git20180626.aebd88e-1ubuntu1). git is already the newest version (1:2.25.1-1ubuntu3.11). libgssapi-krb5-2 is already the newest version (1.17-6ubuntu4.4). libgssapi-krb5-2 set to manually installed. libk5crypto3 is already the newest version (1.17-6ubuntu4.4). libk5crypto3 set to manually installed. vim is already the newest version (2:8.1.2269-1ubuntu5.21). The following additional packages will be installed: comerr-dev krb5-multidev libassuan-dev libc-ares2 libc-dev-bin libc6-dev libcrypt-dev libdpkg-perl libev4 libfile-fcntllock-perl libgmp-dev libgmpxx4ldbl libgnutls-dane0 libgnutls-openssl27 libgnutlsxx28 libgpg-error-dev libgssrpc4 libjansson4 libjemalloc2 libkadm5clnt-mit11 libkadm5srv-mit11 libkdb5-9 libmariadb-dev libmariadb3 libp11-kit-dev libtasn1-6-dev libtasn1-doc libunbound8 linux-libc-dev manpages-dev mariadb-common mysql-common nghttp2-client nghttp2-proxy nghttp2-server pkg-config python-pip-whl python3-appdirs python3-distlib python3-filelock python3-virtualenv zlib1g-dev Suggested packages: doc-base krb5-doc glibc-doc libcurl4-doc libidn11-dev libssh2-1-dev debian-keyring gcc | c-compiler binutils bzr libgcrypt20-doc gmp-doc libgmp10-doc libmpfr-dev dns-root-data gnutls-bin gnutls-doc krb5-user liblzma-doc libnghttp2-doc libssl-doc dpkg-dev The following NEW packages will be installed: comerr-dev dnsutils idn2 krb5-multidev libassuan-dev libattr1-dev libc-ares2 libc-dev-bin libc6-dev libcomerr2 libcrypt-dev libcurl4-gnutls-dev libdpkg-perl libev4 libfile-fcntllock-perl libgcrypt20-dev libgmp-dev libgmpxx4ldbl libgnutls-dane0 libgnutls-openssl27 libgnutls28-dev libgnutlsxx28 libgpg-error-dev libgpgme-dev libgssrpc4 libidn2-0-dev libidn2-dev libjansson4 libjemalloc2 libkadm5clnt-mit11 libkadm5srv-mit11 libkdb5-9 libkrb5-dev libldap2-dev liblzma-dev libmariadb-dev libmariadb3 libmariadbclient-dev libnghttp2-dev libp11-kit-dev libpsl-dev librtmp-dev libssl-dev libtasn1-6-dev libtasn1-doc libunbound8 linux-libc-dev manpages-dev mariadb-common mysql-common nettle-dev nghttp2 nghttp2-client nghttp2-proxy nghttp2-server pkg-config python-pip-whl python3-appdirs python3-distlib python3-filelock python3-virtualenv socat telnet unzip virtualenv zip zlib1g-dev 0 upgraded, 67 newly installed, 0 to remove and 0 not upgraded. Need to get 17.6 MB of archives. After this operation, 76.3 MB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc-ares2 arm64 1.15.0-1ubuntu0.4 [35.3 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 libev4 arm64 1:4.31-1 [29.3 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 libjemalloc2 arm64 5.2.1-1ubuntu1 [172 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-proxy arm64 1.40.0-1ubuntu0.2 [332 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 telnet arm64 0.17-41.2build1 [61.9 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 dnsutils all 1:9.16.1-0ubuntu2.16 [2,760 B] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgssrpc4 arm64 1.17-6ubuntu4.4 [52.7 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkdb5-9 arm64 1.17-6ubuntu4.4 [36.2 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkadm5srv-mit11 arm64 1.17-6ubuntu4.4 [47.7 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkadm5clnt-mit11 arm64 1.17-6ubuntu4.4 [36.0 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc-dev-bin arm64 2.31-0ubuntu9.14 [64.2 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 linux-libc-dev arm64 5.4.0-169.187 [1,105 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libcrypt-dev arm64 1:4.4.10-10ubuntu4 [111 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc6-dev arm64 2.31-0ubuntu9.14 [2,069 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 comerr-dev arm64 2.1-1.45.5-2ubuntu1.1 [40.0 kB] Get:16 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 krb5-multidev arm64 1.17-6ubuntu4.4 [120 kB] Get:17 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libgpg-error-dev arm64 1.37-1 [108 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libassuan-dev arm64 2.5.3-7ubuntu2 [92.0 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcomerr2 arm64 1.45.5-2ubuntu1.1 [2,712 B] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcurl4-gnutls-dev arm64 7.68.0-1ubuntu2.21 [309 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libdpkg-perl all 1.19.7ubuntu3.2 [231 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libfile-fcntllock-perl arm64 0.22-3build4 [33.0 kB] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgcrypt20-dev arm64 1.8.5-5ubuntu1.1 [405 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgmpxx4ldbl arm64 2:6.2.0+dfsg-4ubuntu0.1 [8,836 B] Get:25 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgmp-dev arm64 2:6.2.0+dfsg-4ubuntu0.1 [301 kB] Get:26 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls-openssl27 arm64 3.6.13-2ubuntu1.9 [28.0 kB] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libunbound8 arm64 1.9.4-2ubuntu1.4 [317 kB] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls-dane0 arm64 3.6.13-2ubuntu1.9 [27.6 kB] Get:29 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutlsxx28 arm64 3.6.13-2ubuntu1.9 [13.0 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn2-dev arm64 2.2.0-2 [64.3 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libp11-kit-dev arm64 0.23.20-1ubuntu0.1 [65.1 kB] Get:32 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libtasn1-6-dev arm64 4.16.0-2 [85.0 kB] Get:33 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 nettle-dev arm64 3.5.1+really3.5.1-2ubuntu0.2 [997 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls28-dev arm64 3.6.13-2ubuntu1.9 [893 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libjansson4 arm64 2.12-1build1 [28.5 kB] Get:36 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 mysql-common all 5.8+1.0.5ubuntu2 [7,496 B] Get:37 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 mariadb-common all 1:10.3.38-0ubuntu0.20.04.1 [15.9 kB] Get:38 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadb3 arm64 1:10.3.38-0ubuntu0.20.04.1 [145 kB] Get:39 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 zlib1g-dev arm64 1:1.2.11.dfsg-2ubuntu1.5 [154 kB] Get:40 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadb-dev arm64 1:10.3.38-0ubuntu0.20.04.1 [1,001 kB] Get:41 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadbclient-dev arm64 1:10.3.38-0ubuntu0.20.04.1 [12.6 kB] Get:42 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 pkg-config arm64 0.29.1-0ubuntu4 [43.8 kB] Get:43 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libnghttp2-dev arm64 1.40.0-1ubuntu0.2 [95.6 kB] Get:44 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libpsl-dev arm64 0.21.0-1ubuntu1 [71.2 kB] Get:45 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libssl-dev arm64 1.1.1f-1ubuntu2.20 [1,460 kB] Get:46 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 manpages-dev all 5.05-1 [2,266 kB] Get:47 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-client arm64 1.40.0-1ubuntu0.2 [141 kB] Get:48 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-server arm64 1.40.0-1ubuntu0.2 [81.6 kB] Get:49 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2 all 1.40.0-1ubuntu0.2 [5,636 B] Get:50 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python-pip-whl all 20.0.2-5ubuntu1.10 [1,805 kB] Get:51 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 python3-appdirs all 1.4.3-2.1 [10.8 kB] Get:52 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-distlib all 0.3.0-1 [116 kB] Get:53 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-filelock all 3.0.12-2 [7,948 B] Get:54 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-virtualenv all 20.0.17-1ubuntu0.4 [62.7 kB] Get:55 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 unzip arm64 6.0-25ubuntu1.1 [162 kB] Get:56 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 virtualenv all 20.0.17-1ubuntu0.4 [2,144 B] Get:57 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 zip arm64 3.0-11build1 [146 kB] Get:58 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 idn2 arm64 2.2.0-2 [20.6 kB] Get:59 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libattr1-dev arm64 1:2.4.48-5 [22.9 kB] Get:60 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgpgme-dev arm64 1.13.1-7ubuntu2.1 [320 kB] Get:61 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn2-0-dev arm64 2.2.0-2 [2,844 B] Get:62 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkrb5-dev arm64 1.17-6ubuntu4.4 [11.8 kB] Get:63 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libldap2-dev arm64 2.4.49+dfsg-2ubuntu1.9 [262 kB] Get:64 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 liblzma-dev arm64 5.2.4-1ubuntu1.1 [144 kB] Get:65 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 librtmp-dev arm64 2.4+20151223.gitfa8646d.1-2build1 [62.5 kB] Get:66 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libtasn1-doc all 4.16.0-2 [303 kB] Get:67 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 socat arm64 1.7.3.3-2 [315 kB] Fetched 17.6 MB in 1s (31.6 MB/s) Extracting templates from packages: 100% Selecting previously unselected package libc-ares2:arm64. (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../00-libc-ares2_1.15.0-1ubuntu0.4_arm64.deb ... Unpacking libc-ares2:arm64 (1.15.0-1ubuntu0.4) ... Selecting previously unselected package libev4:arm64. Preparing to unpack .../01-libev4_1%3a4.31-1_arm64.deb ... Unpacking libev4:arm64 (1:4.31-1) ... Selecting previously unselected package libjemalloc2:arm64. Preparing to unpack .../02-libjemalloc2_5.2.1-1ubuntu1_arm64.deb ... Unpacking libjemalloc2:arm64 (5.2.1-1ubuntu1) ... Selecting previously unselected package nghttp2-proxy. Preparing to unpack .../03-nghttp2-proxy_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-proxy (1.40.0-1ubuntu0.2) ... Selecting previously unselected package telnet. Preparing to unpack .../04-telnet_0.17-41.2build1_arm64.deb ... Unpacking telnet (0.17-41.2build1) ... Selecting previously unselected package dnsutils. Preparing to unpack .../05-dnsutils_1%3a9.16.1-0ubuntu2.16_all.deb ... Unpacking dnsutils (1:9.16.1-0ubuntu2.16) ... Selecting previously unselected package libgssrpc4:arm64. Preparing to unpack .../06-libgssrpc4_1.17-6ubuntu4.4_arm64.deb ... Unpacking libgssrpc4:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkdb5-9:arm64. Preparing to unpack .../07-libkdb5-9_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkdb5-9:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkadm5srv-mit11:arm64. Preparing to unpack .../08-libkadm5srv-mit11_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkadm5srv-mit11:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkadm5clnt-mit11:arm64. Preparing to unpack .../09-libkadm5clnt-mit11_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkadm5clnt-mit11:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../10-libc-dev-bin_2.31-0ubuntu9.14_arm64.deb ... Unpacking libc-dev-bin (2.31-0ubuntu9.14) ... Selecting previously unselected package linux-libc-dev:arm64. Preparing to unpack .../11-linux-libc-dev_5.4.0-169.187_arm64.deb ... Unpacking linux-libc-dev:arm64 (5.4.0-169.187) ... Selecting previously unselected package libcrypt-dev:arm64. Preparing to unpack .../12-libcrypt-dev_1%3a4.4.10-10ubuntu4_arm64.deb ... Unpacking libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ... Selecting previously unselected package libc6-dev:arm64. Preparing to unpack .../13-libc6-dev_2.31-0ubuntu9.14_arm64.deb ... Unpacking libc6-dev:arm64 (2.31-0ubuntu9.14) ... Selecting previously unselected package comerr-dev:arm64. Preparing to unpack .../14-comerr-dev_2.1-1.45.5-2ubuntu1.1_arm64.deb ... Unpacking comerr-dev:arm64 (2.1-1.45.5-2ubuntu1.1) ... Selecting previously unselected package krb5-multidev:arm64. Preparing to unpack .../15-krb5-multidev_1.17-6ubuntu4.4_arm64.deb ... Unpacking krb5-multidev:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libgpg-error-dev. Preparing to unpack .../16-libgpg-error-dev_1.37-1_arm64.deb ... Unpacking libgpg-error-dev (1.37-1) ... Selecting previously unselected package libassuan-dev. Preparing to unpack .../17-libassuan-dev_2.5.3-7ubuntu2_arm64.deb ... Unpacking libassuan-dev (2.5.3-7ubuntu2) ... Selecting previously unselected package libcomerr2:arm64. Preparing to unpack .../18-libcomerr2_1.45.5-2ubuntu1.1_arm64.deb ... Unpacking libcomerr2:arm64 (1.45.5-2ubuntu1.1) ... Selecting previously unselected package libcurl4-gnutls-dev:arm64. Preparing to unpack .../19-libcurl4-gnutls-dev_7.68.0-1ubuntu2.21_arm64.deb ... Unpacking libcurl4-gnutls-dev:arm64 (7.68.0-1ubuntu2.21) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../20-libdpkg-perl_1.19.7ubuntu3.2_all.deb ... Unpacking libdpkg-perl (1.19.7ubuntu3.2) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../21-libfile-fcntllock-perl_0.22-3build4_arm64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build4) ... Selecting previously unselected package libgcrypt20-dev. Preparing to unpack .../22-libgcrypt20-dev_1.8.5-5ubuntu1.1_arm64.deb ... Unpacking libgcrypt20-dev (1.8.5-5ubuntu1.1) ... Selecting previously unselected package libgmpxx4ldbl:arm64. Preparing to unpack .../23-libgmpxx4ldbl_2%3a6.2.0+dfsg-4ubuntu0.1_arm64.deb ... Unpacking libgmpxx4ldbl:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Selecting previously unselected package libgmp-dev:arm64. Preparing to unpack .../24-libgmp-dev_2%3a6.2.0+dfsg-4ubuntu0.1_arm64.deb ... Unpacking libgmp-dev:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Selecting previously unselected package libgnutls-openssl27:arm64. Preparing to unpack .../25-libgnutls-openssl27_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls-openssl27:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libunbound8:arm64. Preparing to unpack .../26-libunbound8_1.9.4-2ubuntu1.4_arm64.deb ... Unpacking libunbound8:arm64 (1.9.4-2ubuntu1.4) ... Selecting previously unselected package libgnutls-dane0:arm64. Preparing to unpack .../27-libgnutls-dane0_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls-dane0:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libgnutlsxx28:arm64. Preparing to unpack .../28-libgnutlsxx28_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutlsxx28:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libidn2-dev:arm64. Preparing to unpack .../29-libidn2-dev_2.2.0-2_arm64.deb ... Unpacking libidn2-dev:arm64 (2.2.0-2) ... Selecting previously unselected package libp11-kit-dev:arm64. Preparing to unpack .../30-libp11-kit-dev_0.23.20-1ubuntu0.1_arm64.deb ... Unpacking libp11-kit-dev:arm64 (0.23.20-1ubuntu0.1) ... Selecting previously unselected package libtasn1-6-dev:arm64. Preparing to unpack .../31-libtasn1-6-dev_4.16.0-2_arm64.deb ... Unpacking libtasn1-6-dev:arm64 (4.16.0-2) ... Selecting previously unselected package nettle-dev:arm64. Preparing to unpack .../32-nettle-dev_3.5.1+really3.5.1-2ubuntu0.2_arm64.deb ... Unpacking nettle-dev:arm64 (3.5.1+really3.5.1-2ubuntu0.2) ... Selecting previously unselected package libgnutls28-dev:arm64. Preparing to unpack .../33-libgnutls28-dev_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls28-dev:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libjansson4:arm64. Preparing to unpack .../34-libjansson4_2.12-1build1_arm64.deb ... Unpacking libjansson4:arm64 (2.12-1build1) ... Selecting previously unselected package mysql-common. Preparing to unpack .../35-mysql-common_5.8+1.0.5ubuntu2_all.deb ... Unpacking mysql-common (5.8+1.0.5ubuntu2) ... Selecting previously unselected package mariadb-common. Preparing to unpack .../36-mariadb-common_1%3a10.3.38-0ubuntu0.20.04.1_all.deb ... Unpacking mariadb-common (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package libmariadb3:arm64. Preparing to unpack .../37-libmariadb3_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadb3:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package zlib1g-dev:arm64. Preparing to unpack .../38-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu1.5_arm64.deb ... Unpacking zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ... Selecting previously unselected package libmariadb-dev. Preparing to unpack .../39-libmariadb-dev_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadb-dev (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package libmariadbclient-dev:arm64. Preparing to unpack .../40-libmariadbclient-dev_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadbclient-dev:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package pkg-config. Preparing to unpack .../41-pkg-config_0.29.1-0ubuntu4_arm64.deb ... Unpacking pkg-config (0.29.1-0ubuntu4) ... Selecting previously unselected package libnghttp2-dev. Preparing to unpack .../42-libnghttp2-dev_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking libnghttp2-dev (1.40.0-1ubuntu0.2) ... Selecting previously unselected package libpsl-dev:arm64. Preparing to unpack .../43-libpsl-dev_0.21.0-1ubuntu1_arm64.deb ... Unpacking libpsl-dev:arm64 (0.21.0-1ubuntu1) ... Selecting previously unselected package libssl-dev:arm64. Preparing to unpack .../44-libssl-dev_1.1.1f-1ubuntu2.20_arm64.deb ... Unpacking libssl-dev:arm64 (1.1.1f-1ubuntu2.20) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../45-manpages-dev_5.05-1_all.deb ... Unpacking manpages-dev (5.05-1) ... Selecting previously unselected package nghttp2-client. Preparing to unpack .../46-nghttp2-client_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-client (1.40.0-1ubuntu0.2) ... Selecting previously unselected package nghttp2-server. Preparing to unpack .../47-nghttp2-server_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-server (1.40.0-1ubuntu0.2) ... Selecting previously unselected package nghttp2. Preparing to unpack .../48-nghttp2_1.40.0-1ubuntu0.2_all.deb ... Unpacking nghttp2 (1.40.0-1ubuntu0.2) ... Selecting previously unselected package python-pip-whl. Preparing to unpack .../49-python-pip-whl_20.0.2-5ubuntu1.10_all.deb ... Unpacking python-pip-whl (20.0.2-5ubuntu1.10) ... Selecting previously unselected package python3-appdirs. Preparing to unpack .../50-python3-appdirs_1.4.3-2.1_all.deb ... Unpacking python3-appdirs (1.4.3-2.1) ... Selecting previously unselected package python3-distlib. Preparing to unpack .../51-python3-distlib_0.3.0-1_all.deb ... Unpacking python3-distlib (0.3.0-1) ... Selecting previously unselected package python3-filelock. Preparing to unpack .../52-python3-filelock_3.0.12-2_all.deb ... Unpacking python3-filelock (3.0.12-2) ... Selecting previously unselected package python3-virtualenv. Preparing to unpack .../53-python3-virtualenv_20.0.17-1ubuntu0.4_all.deb ... Unpacking python3-virtualenv (20.0.17-1ubuntu0.4) ... Selecting previously unselected package unzip. Preparing to unpack .../54-unzip_6.0-25ubuntu1.1_arm64.deb ... Unpacking unzip (6.0-25ubuntu1.1) ... Selecting previously unselected package virtualenv. Preparing to unpack .../55-virtualenv_20.0.17-1ubuntu0.4_all.deb ... Unpacking virtualenv (20.0.17-1ubuntu0.4) ... Selecting previously unselected package zip. Preparing to unpack .../56-zip_3.0-11build1_arm64.deb ... Unpacking zip (3.0-11build1) ... Selecting previously unselected package idn2. Preparing to unpack .../57-idn2_2.2.0-2_arm64.deb ... Unpacking idn2 (2.2.0-2) ... Selecting previously unselected package libattr1-dev:arm64. Preparing to unpack .../58-libattr1-dev_1%3a2.4.48-5_arm64.deb ... Unpacking libattr1-dev:arm64 (1:2.4.48-5) ... Selecting previously unselected package libgpgme-dev. Preparing to unpack .../59-libgpgme-dev_1.13.1-7ubuntu2.1_arm64.deb ... Unpacking libgpgme-dev (1.13.1-7ubuntu2.1) ... Selecting previously unselected package libidn2-0-dev:arm64. Preparing to unpack .../60-libidn2-0-dev_2.2.0-2_arm64.deb ... Unpacking libidn2-0-dev:arm64 (2.2.0-2) ... Selecting previously unselected package libkrb5-dev:arm64. Preparing to unpack .../61-libkrb5-dev_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkrb5-dev:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libldap2-dev:arm64. Preparing to unpack .../62-libldap2-dev_2.4.49+dfsg-2ubuntu1.9_arm64.deb ... Unpacking libldap2-dev:arm64 (2.4.49+dfsg-2ubuntu1.9) ... Selecting previously unselected package liblzma-dev:arm64. Preparing to unpack .../63-liblzma-dev_5.2.4-1ubuntu1.1_arm64.deb ... Unpacking liblzma-dev:arm64 (5.2.4-1ubuntu1.1) ... Selecting previously unselected package librtmp-dev:arm64. Preparing to unpack .../64-librtmp-dev_2.4+20151223.gitfa8646d.1-2build1_arm64.deb ... Unpacking librtmp-dev:arm64 (2.4+20151223.gitfa8646d.1-2build1) ... Selecting previously unselected package libtasn1-doc. Preparing to unpack .../65-libtasn1-doc_4.16.0-2_all.deb ... Unpacking libtasn1-doc (4.16.0-2) ... Selecting previously unselected package socat. Preparing to unpack .../66-socat_1.7.3.3-2_arm64.deb ... Unpacking socat (1.7.3.3-2) ... Setting up idn2 (2.2.0-2) ... Setting up manpages-dev (5.05-1) ... Setting up mysql-common (5.8+1.0.5ubuntu2) ... update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up python3-filelock (3.0.12-2) ... Setting up libgnutls-openssl27:arm64 (3.6.13-2ubuntu1.9) ... Setting up telnet (0.17-41.2build1) ... update-alternatives: using /usr/bin/telnet.netkit to provide /usr/bin/telnet (telnet) in auto mode Setting up libfile-fcntllock-perl (0.22-3build4) ... Setting up libev4:arm64 (1:4.31-1) ... Setting up unzip (6.0-25ubuntu1.1) ... Setting up libtasn1-doc (4.16.0-2) ... Setting up linux-libc-dev:arm64 (5.4.0-169.187) ... Setting up libc-ares2:arm64 (1.15.0-1ubuntu0.4) ... Setting up libjemalloc2:arm64 (5.2.1-1ubuntu1) ... Setting up dnsutils (1:9.16.1-0ubuntu2.16) ... Setting up python3-distlib (0.3.0-1) ... Setting up libcurl4-gnutls-dev:arm64 (7.68.0-1ubuntu2.21) ... Setting up nghttp2-proxy (1.40.0-1ubuntu0.2) ... Created symlink /etc/systemd/system/multi-user.target.wants/nghttpx.service → /lib/systemd/system/nghttpx.service. Setting up nghttp2-server (1.40.0-1ubuntu0.2) ... Setting up libjansson4:arm64 (2.12-1build1) ... Setting up libpsl-dev:arm64 (0.21.0-1ubuntu1) ... Setting up nghttp2-client (1.40.0-1ubuntu0.2) ... Setting up mariadb-common (1:10.3.38-0ubuntu0.20.04.1) ... update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up libldap2-dev:arm64 (2.4.49+dfsg-2ubuntu1.9) ... Setting up libgssrpc4:arm64 (1.17-6ubuntu4.4) ... Setting up zip (3.0-11build1) ... Setting up libunbound8:arm64 (1.9.4-2ubuntu1.4) ... Setting up libgmpxx4ldbl:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Setting up libgpg-error-dev (1.37-1) ... Setting up socat (1.7.3.3-2) ... Setting up libssl-dev:arm64 (1.1.1f-1ubuntu2.20) ... Setting up libmariadb3:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Setting up libassuan-dev (2.5.3-7ubuntu2) ... Setting up libgnutlsxx28:arm64 (3.6.13-2ubuntu1.9) ... Setting up libidn2-dev:arm64 (2.2.0-2) ... Setting up libdpkg-perl (1.19.7ubuntu3.2) ... Setting up liblzma-dev:arm64 (5.2.4-1ubuntu1.1) ... Setting up libcomerr2:arm64 (1.45.5-2ubuntu1.1) ... Setting up libkdb5-9:arm64 (1.17-6ubuntu4.4) ... Setting up libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ... Setting up python-pip-whl (20.0.2-5ubuntu1.10) ... Setting up libkadm5srv-mit11:arm64 (1.17-6ubuntu4.4) ... Setting up libc-dev-bin (2.31-0ubuntu9.14) ... Setting up libidn2-0-dev:arm64 (2.2.0-2) ... Setting up libtasn1-6-dev:arm64 (4.16.0-2) ... Setting up python3-appdirs (1.4.3-2.1) ... Setting up libp11-kit-dev:arm64 (0.23.20-1ubuntu0.1) ... Setting up libkadm5clnt-mit11:arm64 (1.17-6ubuntu4.4) ... Setting up libgnutls-dane0:arm64 (3.6.13-2ubuntu1.9) ... Setting up libgmp-dev:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Setting up nettle-dev:arm64 (3.5.1+really3.5.1-2ubuntu0.2) ... Setting up nghttp2 (1.40.0-1ubuntu0.2) ... Setting up python3-virtualenv (20.0.17-1ubuntu0.4) ... Setting up virtualenv (20.0.17-1ubuntu0.4) ... Setting up pkg-config (0.29.1-0ubuntu4) ... Setting up libc6-dev:arm64 (2.31-0ubuntu9.14) ... Setting up libgnutls28-dev:arm64 (3.6.13-2ubuntu1.9) ... Setting up libnghttp2-dev (1.40.0-1ubuntu0.2) ... Setting up libattr1-dev:arm64 (1:2.4.48-5) ... Setting up libgcrypt20-dev (1.8.5-5ubuntu1.1) ... Setting up comerr-dev:arm64 (2.1-1.45.5-2ubuntu1.1) ... Setting up libgpgme-dev (1.13.1-7ubuntu2.1) ... Setting up zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ... Setting up krb5-multidev:arm64 (1.17-6ubuntu4.4) ... Setting up libkrb5-dev:arm64 (1.17-6ubuntu4.4) ... Setting up librtmp-dev:arm64 (2.4+20151223.gitfa8646d.1-2build1) ... Setting up libmariadb-dev (1:10.3.38-0ubuntu0.20.04.1) ... Setting up libmariadbclient-dev:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for install-info (6.7.0.dfsg.2-5) ... Processing triggers for mime-support (3.64ubuntu1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Processing triggers for systemd (245.4-4ubuntu3.22) ... Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: binutils binutils-aarch64-linux-gnu binutils-common build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libexpat1-dev libfakeroot libgcc-9-dev libgomp1 libisl22 libitm1 liblsan0 libmpc3 libpython3-dev libpython3.8-dev libstdc++-9-dev libtsan0 libubsan1 make python3-dev python3-wheel python3.8-dev Suggested packages: binutils-doc cpp-doc gcc-9-locales debian-keyring gcc-9-doc gcc-multilib autoconf automake libtool flex bison gdb gcc-doc libstdc++-9-doc make-doc The following NEW packages will be installed: binutils binutils-aarch64-linux-gnu binutils-common build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libexpat1-dev libfakeroot libgcc-9-dev libgomp1 libisl22 libitm1 liblsan0 libmpc3 libpython3-dev libpython3.8-dev libstdc++-9-dev libtsan0 libubsan1 make python3-dev python3-pip python3-wheel python3.8-dev 0 upgraded, 40 newly installed, 0 to remove and 0 not upgraded. Need to get 37.6 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils-common arm64 2.34-6ubuntu1.7 [207 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libbinutils arm64 2.34-6ubuntu1.7 [475 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libctf-nobfd0 arm64 2.34-6ubuntu1.7 [44.6 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libctf0 arm64 2.34-6ubuntu1.7 [43.2 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.34-6ubuntu1.7 [1,987 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils arm64 2.34-6ubuntu1.7 [3,360 B] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 gcc-9-base arm64 9.4.0-1ubuntu1~20.04.2 [18.9 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libisl22 arm64 0.22.1-1 [537 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libmpc3 arm64 1.1.0-1 [37.2 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 cpp-9 arm64 9.4.0-1ubuntu1~20.04.2 [5,985 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 cpp arm64 4:9.3.0-1ubuntu2 [27.6 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcc1-0 arm64 10.5.0-1ubuntu1~20.04 [46.2 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgomp1 arm64 10.5.0-1ubuntu1~20.04 [93.5 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libitm1 arm64 10.5.0-1ubuntu1~20.04 [24.1 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libatomic1 arm64 10.5.0-1ubuntu1~20.04 [9,808 B] Get:16 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libasan5 arm64 9.4.0-1ubuntu1~20.04.2 [2,690 kB] Get:17 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 liblsan0 arm64 10.5.0-1ubuntu1~20.04 [800 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libtsan0 arm64 10.5.0-1ubuntu1~20.04 [1,972 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libubsan1 arm64 10.5.0-1ubuntu1~20.04 [765 kB] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgcc-9-dev arm64 9.4.0-1ubuntu1~20.04.2 [920 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 gcc-9 arm64 9.4.0-1ubuntu1~20.04.2 [6,736 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 gcc arm64 4:9.3.0-1ubuntu2 [5,228 B] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libstdc++-9-dev arm64 9.4.0-1ubuntu1~20.04.2 [1,687 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 g++-9 arm64 9.4.0-1ubuntu1~20.04.2 [6,843 kB] Get:25 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 g++ arm64 4:9.3.0-1ubuntu2 [1,592 B] Get:26 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 make arm64 4.2.1-1.2 [154 kB] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 dpkg-dev all 1.19.7ubuntu3.2 [679 kB] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 build-essential arm64 12.8ubuntu1.1 [4,664 B] Get:29 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libfakeroot arm64 1.24-1 [26.0 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 fakeroot arm64 1.24-1 [61.9 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-diff-perl all 1.19.03-2 [46.6 kB] Get:32 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6 [11.1 kB] Get:33 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libexpat1-dev arm64 2.2.9-1ubuntu0.6 [104 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libpython3.8-dev arm64 3.8.10-0ubuntu1~20.04.9 [3,758 kB] Get:36 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libpython3-dev arm64 3.8.2-0ubuntu2 [7,236 B] Get:37 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 python3.8-dev arm64 3.8.10-0ubuntu1~20.04.9 [514 kB] Get:38 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 python3-dev arm64 3.8.2-0ubuntu2 [1,212 B] Get:39 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-wheel all 0.34.2-1ubuntu0.1 [23.9 kB] Get:40 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-pip all 20.0.2-5ubuntu1.10 [231 kB] Fetched 37.6 MB in 1s (73.0 MB/s) Extracting templates from packages: 100% Selecting previously unselected package binutils-common:arm64. (Reading database ... 47825 files and directories currently installed.) Preparing to unpack .../00-binutils-common_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils-common:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libbinutils:arm64. Preparing to unpack .../01-libbinutils_2.34-6ubuntu1.7_arm64.deb ... Unpacking libbinutils:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libctf-nobfd0:arm64. Preparing to unpack .../02-libctf-nobfd0_2.34-6ubuntu1.7_arm64.deb ... Unpacking libctf-nobfd0:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libctf0:arm64. Preparing to unpack .../03-libctf0_2.34-6ubuntu1.7_arm64.deb ... Unpacking libctf0:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package binutils-aarch64-linux-gnu. Preparing to unpack .../04-binutils-aarch64-linux-gnu_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils-aarch64-linux-gnu (2.34-6ubuntu1.7) ... Selecting previously unselected package binutils. Preparing to unpack .../05-binutils_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils (2.34-6ubuntu1.7) ... Selecting previously unselected package gcc-9-base:arm64. Preparing to unpack .../06-gcc-9-base_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking gcc-9-base:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package libisl22:arm64. Preparing to unpack .../07-libisl22_0.22.1-1_arm64.deb ... Unpacking libisl22:arm64 (0.22.1-1) ... Selecting previously unselected package libmpc3:arm64. Preparing to unpack .../08-libmpc3_1.1.0-1_arm64.deb ... Unpacking libmpc3:arm64 (1.1.0-1) ... Selecting previously unselected package cpp-9. Preparing to unpack .../09-cpp-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking cpp-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package cpp. Preparing to unpack .../10-cpp_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking cpp (4:9.3.0-1ubuntu2) ... Selecting previously unselected package libcc1-0:arm64. Preparing to unpack .../11-libcc1-0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libcc1-0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libgomp1:arm64. Preparing to unpack .../12-libgomp1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libgomp1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libitm1:arm64. Preparing to unpack .../13-libitm1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libitm1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libatomic1:arm64. Preparing to unpack .../14-libatomic1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libatomic1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libasan5:arm64. Preparing to unpack .../15-libasan5_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libasan5:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package liblsan0:arm64. Preparing to unpack .../16-liblsan0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking liblsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libtsan0:arm64. Preparing to unpack .../17-libtsan0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libtsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libubsan1:arm64. Preparing to unpack .../18-libubsan1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libubsan1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libgcc-9-dev:arm64. Preparing to unpack .../19-libgcc-9-dev_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libgcc-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package gcc-9. Preparing to unpack .../20-gcc-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking gcc-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package gcc. Preparing to unpack .../21-gcc_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking gcc (4:9.3.0-1ubuntu2) ... Selecting previously unselected package libstdc++-9-dev:arm64. Preparing to unpack .../22-libstdc++-9-dev_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libstdc++-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package g++-9. Preparing to unpack .../23-g++-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking g++-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package g++. Preparing to unpack .../24-g++_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking g++ (4:9.3.0-1ubuntu2) ... Selecting previously unselected package make. Preparing to unpack .../25-make_4.2.1-1.2_arm64.deb ... Unpacking make (4.2.1-1.2) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../26-dpkg-dev_1.19.7ubuntu3.2_all.deb ... Unpacking dpkg-dev (1.19.7ubuntu3.2) ... Selecting previously unselected package build-essential. Preparing to unpack .../27-build-essential_12.8ubuntu1.1_arm64.deb ... Unpacking build-essential (12.8ubuntu1.1) ... Selecting previously unselected package libfakeroot:arm64. Preparing to unpack .../28-libfakeroot_1.24-1_arm64.deb ... Unpacking libfakeroot:arm64 (1.24-1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../29-fakeroot_1.24-1_arm64.deb ... Unpacking fakeroot (1.24-1) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../30-libalgorithm-diff-perl_1.19.03-2_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-2) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../31-libalgorithm-diff-xs-perl_0.04-6_arm64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-6) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../32-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libexpat1-dev:arm64. Preparing to unpack .../33-libexpat1-dev_2.2.9-1ubuntu0.6_arm64.deb ... Unpacking libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ... Selecting previously unselected package libpython3.8-dev:arm64. Preparing to unpack .../34-libpython3.8-dev_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package libpython3-dev:arm64. Preparing to unpack .../35-libpython3-dev_3.8.2-0ubuntu2_arm64.deb ... Unpacking libpython3-dev:arm64 (3.8.2-0ubuntu2) ... Selecting previously unselected package python3.8-dev. Preparing to unpack .../36-python3.8-dev_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking python3.8-dev (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package python3-dev. Preparing to unpack .../37-python3-dev_3.8.2-0ubuntu2_arm64.deb ... Unpacking python3-dev (3.8.2-0ubuntu2) ... Selecting previously unselected package python3-wheel. Preparing to unpack .../38-python3-wheel_0.34.2-1ubuntu0.1_all.deb ... Unpacking python3-wheel (0.34.2-1ubuntu0.1) ... Selecting previously unselected package python3-pip. Preparing to unpack .../39-python3-pip_20.0.2-5ubuntu1.10_all.deb ... Unpacking python3-pip (20.0.2-5ubuntu1.10) ... Setting up libalgorithm-diff-perl (1.19.03-2) ... Setting up binutils-common:arm64 (2.34-6ubuntu1.7) ... Setting up libctf-nobfd0:arm64 (2.34-6ubuntu1.7) ... Setting up libgomp1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up python3-wheel (0.34.2-1ubuntu0.1) ... Setting up libfakeroot:arm64 (1.24-1) ... Setting up fakeroot (1.24-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode Setting up libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ... Setting up libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.9) ... Setting up make (4.2.1-1.2) ... Setting up libmpc3:arm64 (1.1.0-1) ... Setting up libatomic1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up python3-pip (20.0.2-5ubuntu1.10) ... Setting up python3.8-dev (3.8.10-0ubuntu1~20.04.9) ... Setting up libubsan1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libisl22:arm64 (0.22.1-1) ... Setting up libbinutils:arm64 (2.34-6ubuntu1.7) ... Setting up libalgorithm-diff-xs-perl (0.04-6) ... Setting up libcc1-0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up liblsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libitm1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up gcc-9-base:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up libtsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libctf0:arm64 (2.34-6ubuntu1.7) ... Setting up libpython3-dev:arm64 (3.8.2-0ubuntu2) ... Setting up binutils-aarch64-linux-gnu (2.34-6ubuntu1.7) ... Setting up binutils (2.34-6ubuntu1.7) ... Setting up dpkg-dev (1.19.7ubuntu3.2) ... Setting up libasan5:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up python3-dev (3.8.2-0ubuntu2) ... Setting up cpp-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up libgcc-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up cpp (4:9.3.0-1ubuntu2) ... Setting up gcc-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up libstdc++-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up gcc (4:9.3.0-1ubuntu2) ... Setting up g++-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up g++ (4:9.3.0-1ubuntu2) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up build-essential (12.8ubuntu1.1) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... ln: failed to create symbolic link '/usr/bin/pip': File exists Reading package lists... Done Building dependency tree Reading state information... Done python3-dev is already the newest version (3.8.2-0ubuntu2). python3-dev set to manually installed. build-essential is already the newest version (12.8ubuntu1.1). build-essential set to manually installed. libssl-dev is already the newest version (1.1.1f-1ubuntu2.20). The following NEW packages will be installed: libffi-dev 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 53.5 kB of archives. After this operation, 278 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libffi-dev arm64 3.3-4 [53.5 kB] Fetched 53.5 kB in 0s (1,678 kB/s) Selecting previously unselected package libffi-dev:arm64. (Reading database ... 50043 files and directories currently installed.) Preparing to unpack .../libffi-dev_3.3-4_arm64.deb ... Unpacking libffi-dev:arm64 (3.3-4) ... Setting up libffi-dev:arm64 (3.3-4) ... Processing triggers for install-info (6.7.0.dfsg.2-5) ... Processing triggers for man-db (2.9.1-1) ... Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: python3.8-venv The following NEW packages will be installed: python3-venv python3.8-venv 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 6,676 B of archives. After this operation, 38.9 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3.8-venv arm64 3.8.10-0ubuntu1~20.04.9 [5,448 B] Get:2 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-venv arm64 3.8.2-0ubuntu2 [1,228 B] Fetched 6,676 B in 0s (128 kB/s) Selecting previously unselected package python3.8-venv. (Reading database ... 50077 files and directories currently installed.) Preparing to unpack .../python3.8-venv_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking python3.8-venv (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package python3-venv. Preparing to unpack .../python3-venv_3.8.2-0ubuntu2_arm64.deb ... Unpacking python3-venv (3.8.2-0ubuntu2) ... Setting up python3.8-venv (3.8.10-0ubuntu1~20.04.9) ... Setting up python3-venv (3.8.2-0ubuntu2) ... Processing triggers for man-db (2.9.1-1) ... Reading package lists... Done Building dependency tree Reading state information... Done cron is already the newest version (3.0pl1-136ubuntu1). The following packages will be REMOVED: iputils-ping The following NEW packages will be installed: inetutils-ping libidn11 0 upgraded, 2 newly installed, 1 to remove and 0 not upgraded. Need to get 103 kB of archives. After this operation, 486 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn11 arm64 1.33-2.2ubuntu2 [45.3 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 inetutils-ping arm64 2:1.9.4-11ubuntu0.2 [58.1 kB] Fetched 103 kB in 0s (814 kB/s) (Reading database ... 50086 files and directories currently installed.) Removing iputils-ping (3:20190709-3) ... Selecting previously unselected package libidn11:arm64. (Reading database ... 50076 files and directories currently installed.) Preparing to unpack .../libidn11_1.33-2.2ubuntu2_arm64.deb ... Unpacking libidn11:arm64 (1.33-2.2ubuntu2) ... Selecting previously unselected package inetutils-ping. Preparing to unpack .../inetutils-ping_2%3a1.9.4-11ubuntu0.2_arm64.deb ... Unpacking inetutils-ping (2:1.9.4-11ubuntu0.2) ... Setting up libidn11:arm64 (1.33-2.2ubuntu2) ... Setting up inetutils-ping (2:1.9.4-11ubuntu0.2) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Reading package lists... Done Building dependency tree Reading state information... Done locales is already the newest version (2.31-0ubuntu9.14). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Generating locales (this might take a while)... en_US.UTF-8... done Generation complete. Collecting virtualenv==16.7.9 Downloading virtualenv-16.7.9-py2.py3-none-any.whl (3.4 MB) |████████████████████████████████| 3.4 MB 9.0 MB/s Installing collected packages: virtualenv Attempting uninstall: virtualenv Found existing installation: virtualenv 20.0.17 Not uninstalling virtualenv at /usr/lib/python3/dist-packages, outside environment /usr Can't uninstall 'virtualenv'. No files were found to uninstall. Successfully installed virtualenv-16.7.9 --2023-12-29 10:19:18-- https://raw.githubusercontent.com/usmannasir/cyberpanel/v2.3.4/requirments.txt Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 2606:50c0:8001::154, 2606:50c0:8002::154, 2606:50c0:8003::154, ... Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8001::154|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 1461 (1.4K) [text/plain] Saving to: ‘/usr/local/requirments.txt’ /usr/local/requirments.txt 100%[============================================================================>] 1.43K --.-KB/s in 0s 2023-12-29 10:19:18 (10.0 MB/s) - ‘/usr/local/requirments.txt’ saved [1461/1461] Already using interpreter /usr/bin/python3 Using base prefix '/usr' New python executable in /usr/local/CyberPanel/bin/python3 Also creating executable in /usr/local/CyberPanel/bin/python Installing setuptools, pip, wheel... done. Collecting acme==1.9.0 (from -r /usr/local/requirments.txt (line 1)) Downloading acme-1.9.0-py2.py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.9/42.9 kB 4.5 MB/s eta 0:00:00 Collecting asgiref==3.3.1 (from -r /usr/local/requirments.txt (line 2)) Downloading asgiref-3.3.1-py3-none-any.whl (19 kB) Collecting asn1crypto==1.4.0 (from -r /usr/local/requirments.txt (line 3)) Downloading asn1crypto-1.4.0-py2.py3-none-any.whl (104 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.0/104.0 kB 13.4 MB/s eta 0:00:00 Collecting Babel==2.8.0 (from -r /usr/local/requirments.txt (line 4)) Downloading Babel-2.8.0-py2.py3-none-any.whl (8.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 116.6 MB/s eta 0:00:00 Collecting backports.ssl-match-hostname==3.7.0.1 (from -r /usr/local/requirments.txt (line 5)) Downloading backports.ssl_match_hostname-3.7.0.1.tar.gz (5.7 kB) Preparing metadata (setup.py) ... done Collecting bcrypt==3.2.0 (from -r /usr/local/requirments.txt (line 6)) Downloading bcrypt-3.2.0-cp36-abi3-manylinux2014_aarch64.whl (56 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.8/56.8 kB 8.1 MB/s eta 0:00:00 Collecting beautifulsoup4==4.9.3 (from -r /usr/local/requirments.txt (line 7)) Downloading beautifulsoup4-4.9.3-py3-none-any.whl (115 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 115.8/115.8 kB 17.9 MB/s eta 0:00:00 Collecting boto3==1.18.26 (from -r /usr/local/requirments.txt (line 8)) Downloading boto3-1.18.26-py3-none-any.whl (131 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 131.6/131.6 kB 22.5 MB/s eta 0:00:00 Collecting botocore==1.21.26 (from -r /usr/local/requirments.txt (line 9)) Downloading botocore-1.21.26-py3-none-any.whl (7.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 133.2 MB/s eta 0:00:00 Collecting cachetools==4.1.1 (from -r /usr/local/requirments.txt (line 10)) Downloading cachetools-4.1.1-py3-none-any.whl (10 kB) Collecting certifi==2020.11.8 (from -r /usr/local/requirments.txt (line 11)) Downloading certifi-2020.11.8-py2.py3-none-any.whl (155 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.4/155.4 kB 24.1 MB/s eta 0:00:00 Collecting cffi==1.14.3 (from -r /usr/local/requirments.txt (line 12)) Downloading cffi-1.14.3-cp38-cp38-manylinux2014_aarch64.whl (208 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 208.2/208.2 kB 24.3 MB/s eta 0:00:00 Collecting chardet==3.0.4 (from -r /usr/local/requirments.txt (line 13)) Downloading chardet-3.0.4-py2.py3-none-any.whl (133 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.4/133.4 kB 22.4 MB/s eta 0:00:00 Collecting cloudflare==2.8.13 (from -r /usr/local/requirments.txt (line 14)) Downloading cloudflare-2.8.13.tar.gz (65 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.6/65.6 kB 10.5 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting ConfigArgParse==1.2.3 (from -r /usr/local/requirments.txt (line 15)) Downloading ConfigArgParse-1.2.3.tar.gz (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.7/42.7 kB 5.9 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting configobj==5.0.6 (from -r /usr/local/requirments.txt (line 16)) Downloading configobj-5.0.6.tar.gz (33 kB) Preparing metadata (setup.py) ... done Collecting cryptography==3.2.1 (from -r /usr/local/requirments.txt (line 17)) Downloading cryptography-3.2.1-cp35-abi3-manylinux2014_aarch64.whl (2.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/2.6 MB 121.0 MB/s eta 0:00:00 Collecting decorator==4.4.2 (from -r /usr/local/requirments.txt (line 18)) Downloading decorator-4.4.2-py2.py3-none-any.whl (9.2 kB) Collecting Django==3.1.3 (from -r /usr/local/requirments.txt (line 19)) Downloading Django-3.1.3-py3-none-any.whl (7.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 132.6 MB/s eta 0:00:00 Collecting docker==4.3.1 (from -r /usr/local/requirments.txt (line 20)) Downloading docker-4.3.1-py2.py3-none-any.whl (145 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 145.2/145.2 kB 23.7 MB/s eta 0:00:00 Collecting docker-pycreds==0.4.0 (from -r /usr/local/requirments.txt (line 21)) Downloading docker_pycreds-0.4.0-py2.py3-none-any.whl (9.0 kB) Collecting docutils==0.16 (from -r /usr/local/requirments.txt (line 22)) Downloading docutils-0.16-py2.py3-none-any.whl (548 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 548.2/548.2 kB 58.1 MB/s eta 0:00:00 Collecting enum34==1.1.10 (from -r /usr/local/requirments.txt (line 23)) Downloading enum34-1.1.10-py3-none-any.whl (11 kB) Collecting filelock==3.0.12 (from -r /usr/local/requirments.txt (line 24)) Downloading filelock-3.0.12-py3-none-any.whl (7.6 kB) Collecting funcsigs==1.0.2 (from -r /usr/local/requirments.txt (line 25)) Downloading funcsigs-1.0.2-py2.py3-none-any.whl (17 kB) Collecting future==0.18.2 (from -r /usr/local/requirments.txt (line 26)) Downloading future-0.18.2.tar.gz (829 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 829.2/829.2 kB 77.5 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting google-api-core==1.23.0 (from -r /usr/local/requirments.txt (line 27)) Downloading google_api_core-1.23.0-py2.py3-none-any.whl (91 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 92.0/92.0 kB 12.7 MB/s eta 0:00:00 Collecting google-api-python-client==1.12.5 (from -r /usr/local/requirments.txt (line 28)) Downloading google_api_python_client-1.12.5-py2.py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.4/61.4 kB 3.3 MB/s eta 0:00:00 Collecting google-auth==1.23.0 (from -r /usr/local/requirments.txt (line 29)) Downloading google_auth-1.23.0-py2.py3-none-any.whl (114 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.7/114.7 kB 19.1 MB/s eta 0:00:00 Collecting google-auth-httplib2==0.0.4 (from -r /usr/local/requirments.txt (line 30)) Downloading google_auth_httplib2-0.0.4-py2.py3-none-any.whl (9.1 kB) Collecting google-auth-oauthlib==0.4.2 (from -r /usr/local/requirments.txt (line 31)) Downloading google_auth_oauthlib-0.4.2-py2.py3-none-any.whl (18 kB) Collecting googleapis-common-protos==1.52.0 (from -r /usr/local/requirments.txt (line 32)) Downloading googleapis_common_protos-1.52.0-py2.py3-none-any.whl (100 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.2/100.2 kB 15.5 MB/s eta 0:00:00 Collecting httplib2==0.18.1 (from -r /usr/local/requirments.txt (line 33)) Downloading httplib2-0.18.1-py3-none-any.whl (95 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 95.3/95.3 kB 12.3 MB/s eta 0:00:00 Collecting idna==2.10 (from -r /usr/local/requirments.txt (line 34)) Downloading idna-2.10-py2.py3-none-any.whl (58 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.8/58.8 kB 8.2 MB/s eta 0:00:00 Collecting ipaddress==1.0.23 (from -r /usr/local/requirments.txt (line 35)) Downloading ipaddress-1.0.23-py2.py3-none-any.whl (18 kB) Collecting IPy==1.0 (from -r /usr/local/requirments.txt (line 36)) Downloading IPy-1.00.tar.gz (35 kB) Preparing metadata (setup.py) ... done Collecting Jinja2==2.11.3 (from -r /usr/local/requirments.txt (line 37)) Downloading Jinja2-2.11.3-py2.py3-none-any.whl (125 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 125.7/125.7 kB 20.6 MB/s eta 0:00:00 Collecting jmespath==0.10.0 (from -r /usr/local/requirments.txt (line 38)) Downloading jmespath-0.10.0-py2.py3-none-any.whl (24 kB) Collecting josepy==1.5.0 (from -r /usr/local/requirments.txt (line 39)) Downloading josepy-1.5.0-py2.py3-none-any.whl (57 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.8/57.8 kB 8.1 MB/s eta 0:00:00 Collecting jsonlines==1.2.0 (from -r /usr/local/requirments.txt (line 40)) Downloading jsonlines-1.2.0-py2.py3-none-any.whl (7.6 kB) Collecting jsonpatch==1.26 (from -r /usr/local/requirments.txt (line 41)) Downloading jsonpatch-1.26-py2.py3-none-any.whl (11 kB) Collecting jsonpointer==2.0 (from -r /usr/local/requirments.txt (line 42)) Downloading jsonpointer-2.0-py2.py3-none-any.whl (7.6 kB) Collecting MarkupSafe==1.1.1 (from -r /usr/local/requirments.txt (line 43)) Downloading MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl (33 kB) Collecting mock==4.0.2 (from -r /usr/local/requirments.txt (line 44)) Downloading mock-4.0.2-py3-none-any.whl (28 kB) Collecting mysqlclient==2.0.1 (from -r /usr/local/requirments.txt (line 45)) Downloading mysqlclient-2.0.1.tar.gz (87 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.8/87.8 kB 11.5 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting oauthlib==3.1.0 (from -r /usr/local/requirments.txt (line 46)) Downloading oauthlib-3.1.0-py2.py3-none-any.whl (147 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.4/147.4 kB 21.0 MB/s eta 0:00:00 Collecting paramiko==2.7.2 (from -r /usr/local/requirments.txt (line 47)) Downloading paramiko-2.7.2-py2.py3-none-any.whl (206 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 206.8/206.8 kB 30.3 MB/s eta 0:00:00 Collecting parsedatetime==2.6 (from -r /usr/local/requirments.txt (line 48)) Downloading parsedatetime-2.6-py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.5/42.5 kB 5.6 MB/s eta 0:00:00 Collecting pbr==5.5.1 (from -r /usr/local/requirments.txt (line 49)) Downloading pbr-5.5.1-py2.py3-none-any.whl (106 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.2/106.2 kB 15.0 MB/s eta 0:00:00 Collecting pysftp (from -r /usr/local/requirments.txt (line 50)) Downloading pysftp-0.2.9.tar.gz (25 kB) Preparing metadata (setup.py) ... done Collecting pexpect==4.8.0 (from -r /usr/local/requirments.txt (line 51)) Downloading pexpect-4.8.0-py2.py3-none-any.whl (59 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.0/59.0 kB 9.1 MB/s eta 0:00:00 Collecting prettytable==1.0.1 (from -r /usr/local/requirments.txt (line 52)) Downloading prettytable-1.0.1-py2.py3-none-any.whl (22 kB) Collecting protobuf==3.13.0 (from -r /usr/local/requirments.txt (line 53)) Downloading protobuf-3.13.0-py2.py3-none-any.whl (438 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 438.4/438.4 kB 46.4 MB/s eta 0:00:00 Collecting psutil==5.7.3 (from -r /usr/local/requirments.txt (line 54)) Downloading psutil-5.7.3.tar.gz (465 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 465.6/465.6 kB 46.5 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting ptyprocess==0.6.0 (from -r /usr/local/requirments.txt (line 55)) Downloading ptyprocess-0.6.0-py2.py3-none-any.whl (39 kB) Collecting py3dns==3.2.1 (from -r /usr/local/requirments.txt (line 56)) Downloading py3dns-3.2.1.tar.gz (30 kB) Preparing metadata (setup.py) ... done Collecting pyasn1==0.4.8 (from -r /usr/local/requirments.txt (line 57)) Downloading pyasn1-0.4.8-py2.py3-none-any.whl (77 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 77.1/77.1 kB 12.2 MB/s eta 0:00:00 Collecting pyasn1-modules==0.2.8 (from -r /usr/local/requirments.txt (line 58)) Downloading pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.3/155.3 kB 18.5 MB/s eta 0:00:00 Collecting pycparser==2.20 (from -r /usr/local/requirments.txt (line 59)) Downloading pycparser-2.20-py2.py3-none-any.whl (112 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.0/112.0 kB 20.2 MB/s eta 0:00:00 Collecting pygpgme==0.3 (from -r /usr/local/requirments.txt (line 60)) Downloading pygpgme-0.3.tar.gz (50 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.1/50.1 kB 5.6 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting PyNaCl==1.4.0 (from -r /usr/local/requirments.txt (line 61)) Downloading PyNaCl-1.4.0.tar.gz (3.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 66.8 MB/s eta 0:00:00 Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting pyOpenSSL==19.1.0 (from -r /usr/local/requirments.txt (line 62)) Downloading pyOpenSSL-19.1.0-py2.py3-none-any.whl (53 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.7/53.7 kB 8.1 MB/s eta 0:00:00 Collecting pyotp==2.4.1 (from -r /usr/local/requirments.txt (line 63)) Downloading pyotp-2.4.1-py2.py3-none-any.whl (11 kB) Collecting pyRFC3339==1.1 (from -r /usr/local/requirments.txt (line 64)) Downloading pyRFC3339-1.1-py2.py3-none-any.whl (5.7 kB) Collecting python-dateutil==2.8.1 (from -r /usr/local/requirments.txt (line 65)) Downloading python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 227.2/227.2 kB 34.1 MB/s eta 0:00:00 Collecting pytz==2020.4 (from -r /usr/local/requirments.txt (line 66)) Downloading pytz-2020.4-py2.py3-none-any.whl (509 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.0/509.0 kB 48.8 MB/s eta 0:00:00 Collecting pyudev==0.22.0 (from -r /usr/local/requirments.txt (line 67)) Downloading pyudev-0.22.0.tar.gz (85 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 85.1/85.1 kB 13.1 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting pyxattr==0.7.1 (from -r /usr/local/requirments.txt (line 68)) Downloading pyxattr-0.7.1.tar.gz (30 kB) Preparing metadata (setup.py) ... done Collecting requests==2.26.0 (from -r /usr/local/requirments.txt (line 69)) Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.3/62.3 kB 8.9 MB/s eta 0:00:00 Collecting requests-file==1.5.1 (from -r /usr/local/requirments.txt (line 70)) Downloading requests_file-1.5.1-py2.py3-none-any.whl (3.7 kB) Collecting requests-oauthlib==1.3.0 (from -r /usr/local/requirments.txt (line 71)) Downloading requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB) Collecting requests-toolbelt==0.9.1 (from -r /usr/local/requirments.txt (line 72)) Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.3/54.3 kB 7.2 MB/s eta 0:00:00 Collecting rsa==4.6 (from -r /usr/local/requirments.txt (line 73)) Downloading rsa-4.6-py3-none-any.whl (47 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.4/47.4 kB 6.9 MB/s eta 0:00:00 Collecting s3transfer==0.5.0 (from -r /usr/local/requirments.txt (line 74)) Downloading s3transfer-0.5.0-py3-none-any.whl (79 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.2/79.2 kB 12.3 MB/s eta 0:00:00 Collecting six==1.15.0 (from -r /usr/local/requirments.txt (line 75)) Downloading six-1.15.0-py2.py3-none-any.whl (10 kB) Collecting soupsieve==2.0.1 (from -r /usr/local/requirments.txt (line 76)) Downloading soupsieve-2.0.1-py3-none-any.whl (32 kB) Collecting sqlparse==0.4.2 (from -r /usr/local/requirments.txt (line 77)) Downloading sqlparse-0.4.2-py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 kB 6.1 MB/s eta 0:00:00 Collecting tldextract==3.0.2 (from -r /usr/local/requirments.txt (line 78)) Downloading tldextract-3.0.2-py2.py3-none-any.whl (86 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 86.4/86.4 kB 13.3 MB/s eta 0:00:00 Collecting tornado==6.1 (from -r /usr/local/requirments.txt (line 79)) Downloading tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl (427 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 427.9/427.9 kB 53.0 MB/s eta 0:00:00 Collecting uritemplate==3.0.1 (from -r /usr/local/requirments.txt (line 80)) Downloading uritemplate-3.0.1-py2.py3-none-any.whl (15 kB) Collecting urllib3==1.26.5 (from -r /usr/local/requirments.txt (line 81)) Downloading urllib3-1.26.5-py2.py3-none-any.whl (138 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.1/138.1 kB 20.2 MB/s eta 0:00:00 Collecting validators==0.18.1 (from -r /usr/local/requirments.txt (line 82)) Downloading validators-0.18.1-py3-none-any.whl (19 kB) Collecting wcwidth==0.2.5 (from -r /usr/local/requirments.txt (line 83)) Downloading wcwidth-0.2.5-py2.py3-none-any.whl (30 kB) Collecting websocket-client==0.57.0 (from -r /usr/local/requirments.txt (line 84)) Downloading websocket_client-0.57.0-py2.py3-none-any.whl (200 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 200.9/200.9 kB 29.0 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /usr/local/CyberPanel/lib/python3.8/site-packages (from acme==1.9.0->-r /usr/local/requirments.txt (line 1)) (69.0.3) Collecting pyyaml (from cloudflare==2.8.13->-r /usr/local/requirments.txt (line 14)) Downloading PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.metadata (2.1 kB) Collecting charset-normalizer~=2.0.0 (from requests==2.26.0->-r /usr/local/requirments.txt (line 69)) Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Downloading PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (723 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 723.8/723.8 kB 56.8 MB/s eta 0:00:00 Building wheels for collected packages: backports.ssl-match-hostname, cloudflare, ConfigArgParse, configobj, future, IPy, mysqlclient, psutil, py3dns, pygpgme, PyNaCl, pyudev, pyxattr, pysftp Building wheel for backports.ssl-match-hostname (setup.py) ... done Created wheel for backports.ssl-match-hostname: filename=backports.ssl_match_hostname-3.7.0.1-py2.py3-none-any.whl size=6731 sha256=266d9c02358ca1c6a827c704aba532b5131953a00738f272cc2173f05a3951fc Stored in directory: /root/.cache/pip/wheels/20/46/1e/7f787654ba5b7900e9a3be46a6fd89a99da05f4cefb655d3d6 Building wheel for cloudflare (setup.py) ... done Created wheel for cloudflare: filename=cloudflare-2.8.13-py3-none-any.whl size=57530 sha256=b3eb9679a2c05094d6fb336bd3f9647a76cebc055aa33bf8fe3b2fd8c26e0175 Stored in directory: /root/.cache/pip/wheels/db/5d/25/fb3ea0e47770e7f65a45835670720ae1a3d48df3bafa904fbc Building wheel for ConfigArgParse (setup.py) ... done Created wheel for ConfigArgParse: filename=ConfigArgParse-1.2.3-py3-none-any.whl size=19325 sha256=dbdc086e149165216172447a678ed42664a3a4ad78af4a9e8365abc455a79dab Stored in directory: /root/.cache/pip/wheels/b4/12/fe/1e4628f6ec22a9580d9e8fbef23df7a03948a1edde0821d7f5 Building wheel for configobj (setup.py) ... done Created wheel for configobj: filename=configobj-5.0.6-py3-none-any.whl size=34525 sha256=789bf4b51e453f631c1d3e7debf547e603ede1c4a802853c410910a05178a98b Stored in directory: /root/.cache/pip/wheels/34/2a/24/a490264ae9041fd48f778ff393526572c80bb498ddecb07ea5 Building wheel for future (setup.py) ... done Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491058 sha256=e0a116fb65ffb6818334da5dc2afcb281e50cdbef57e4a1a699447db1c14484a Stored in directory: /root/.cache/pip/wheels/8e/70/28/3d6ccd6e315f65f245da085482a2e1c7d14b90b30f239e2cf4 Building wheel for IPy (setup.py) ... done Created wheel for IPy: filename=IPy-1.0-py3-none-any.whl size=21145 sha256=9ad94b1b201d527396f56f43bf77d28d0eb86c449b9693c0161e4b9a47ef1964 Stored in directory: /root/.cache/pip/wheels/c0/d4/6b/a2f002ae5039ff6698980ffa0fe0a0ede66765bea8add246f7 Building wheel for mysqlclient (setup.py) ... done Created wheel for mysqlclient: filename=mysqlclient-2.0.1-cp38-cp38-linux_aarch64.whl size=115238 sha256=bb293f303b2d77b546ee10c3e8fb02e77097dd22c17227d50867fbfed65c89d9 Stored in directory: /root/.cache/pip/wheels/b9/b0/63/fb1bf1bfddaf244627c94fa2eb59e706d1170f4ca4f8b72d59 Building wheel for psutil (setup.py) ... done Created wheel for psutil: filename=psutil-5.7.3-cp38-cp38-linux_aarch64.whl size=295873 sha256=181fb4614414d9c07c39405969b21ad49fd773f5139ab7fc1584f7538b0aca60 Stored in directory: /root/.cache/pip/wheels/f6/59/c2/38111ef4c354088a156bc95fbeb5396c0cac91a0f62f7158b9 Building wheel for py3dns (setup.py) ... done Created wheel for py3dns: filename=py3dns-3.2.1-py3-none-any.whl size=20836 sha256=dfd6542036154ae2eb1a9697751a82365e090afe9cc0c6eff2ff3fd6cacfd27d Stored in directory: /root/.cache/pip/wheels/04/6c/59/20cadeb949daa0f469951136be59a742cef8de62cef2e8d288 Building wheel for pygpgme (setup.py) ... done Created wheel for pygpgme: filename=pygpgme-0.3-cp38-cp38-linux_aarch64.whl size=132615 sha256=379a2ac6f7c0b138aed0d800bdd11e5e8d9470db893cc7c930304fdfcfb03cec Stored in directory: /root/.cache/pip/wheels/a1/22/15/a13bf2d75ac301066b823bc8ac86ebadd1663e61f62b18f066 Building wheel for PyNaCl (pyproject.toml) ... done Created wheel for PyNaCl: filename=PyNaCl-1.4.0-cp38-cp38-linux_aarch64.whl size=556628 sha256=16f88da00a089474db0c3af81abd939ad9f4166d8ebf74063aad24a50cf7860d Stored in directory: /root/.cache/pip/wheels/10/23/c0/f42041fbad88c47b268b6119919130b407b48e24b41a349684 Building wheel for pyudev (setup.py) ... done Created wheel for pyudev: filename=pyudev-0.22.0-py3-none-any.whl size=63482 sha256=c83b104f4ef23b1f8e03e119721a30752702625b71d7987279e9f751a14e3694 Stored in directory: /root/.cache/pip/wheels/8b/d1/11/6a9855487e4bba54c63dfb07a09505787d50a5e27f90b0af33 Building wheel for pyxattr (setup.py) ... done Created wheel for pyxattr: filename=pyxattr-0.7.1-cp38-cp38-linux_aarch64.whl size=45289 sha256=0764ab73f1f58245cb227ce978fc6b89337ca0bafacfcca6a6cfc03774abd27f Stored in directory: /root/.cache/pip/wheels/03/d3/c1/9807f738ac9923269599cb2c9bb0a01ba3af79790b6adb5e4f Building wheel for pysftp (setup.py) ... done Created wheel for pysftp: filename=pysftp-0.2.9-py3-none-any.whl size=15496 sha256=5269b89eb9ea5604832e54dec70c3c6e7a8a18c61dad1e92427de5064307e974 Stored in directory: /root/.cache/pip/wheels/2b/ca/f6/862aaecc17fb92230cad02822949e8856d741e5c12ef55fb10 Successfully built backports.ssl-match-hostname cloudflare ConfigArgParse configobj future IPy mysqlclient psutil py3dns pygpgme PyNaCl pyudev pyxattr pysftp Installing collected packages: wcwidth, pytz, pyotp, pygpgme, pyasn1, py3dns, ptyprocess, parsedatetime, IPy, ipaddress, httplib2, funcsigs, filelock, enum34, chardet, certifi, backports.ssl-match-hostname, asn1crypto, urllib3, uritemplate, tornado, sqlparse, soupsieve, six, rsa, pyyaml, pyxattr, pyRFC3339, pycparser, pyasn1-modules, psutil, prettytable, pexpect, pbr, oauthlib, mysqlclient, mock, MarkupSafe, jsonpointer, jmespath, idna, future, docutils, decorator, ConfigArgParse, charset-normalizer, cachetools, Babel, asgiref, websocket-client, validators, requests, pyudev, python-dateutil, protobuf, jsonpatch, jsonlines, Jinja2, google-auth, docker-pycreds, Django, configobj, cffi, beautifulsoup4, requests-toolbelt, requests-oauthlib, requests-file, PyNaCl, googleapis-common-protos, google-auth-httplib2, docker, cryptography, cloudflare, botocore, bcrypt, tldextract, s3transfer, pyOpenSSL, paramiko, google-auth-oauthlib, google-api-core, pysftp, josepy, google-api-python-client, boto3, acme Successfully installed Babel-2.8.0 ConfigArgParse-1.2.3 Django-3.1.3 IPy-1.0 Jinja2-2.11.3 MarkupSafe-1.1.1 PyNaCl-1.4.0 acme-1.9.0 asgiref-3.3.1 asn1crypto-1.4.0 backports.ssl-match-hostname-3.7.0.1 bcrypt-3.2.0 beautifulsoup4-4.9.3 boto3-1.18.26 botocore-1.21.26 cachetools-4.1.1 certifi-2020.11.8 cffi-1.14.3 chardet-3.0.4 charset-normalizer-2.0.12 cloudflare-2.8.13 configobj-5.0.6 cryptography-3.2.1 decorator-4.4.2 docker-4.3.1 docker-pycreds-0.4.0 docutils-0.16 enum34-1.1.10 filelock-3.0.12 funcsigs-1.0.2 future-0.18.2 google-api-core-1.23.0 google-api-python-client-1.12.5 google-auth-1.23.0 google-auth-httplib2-0.0.4 google-auth-oauthlib-0.4.2 googleapis-common-protos-1.52.0 httplib2-0.18.1 idna-2.10 ipaddress-1.0.23 jmespath-0.10.0 josepy-1.5.0 jsonlines-1.2.0 jsonpatch-1.26 jsonpointer-2.0 mock-4.0.2 mysqlclient-2.0.1 oauthlib-3.1.0 paramiko-2.7.2 parsedatetime-2.6 pbr-5.5.1 pexpect-4.8.0 prettytable-1.0.1 protobuf-3.13.0 psutil-5.7.3 ptyprocess-0.6.0 py3dns-3.2.1 pyOpenSSL-19.1.0 pyRFC3339-1.1 pyasn1-0.4.8 pyasn1-modules-0.2.8 pycparser-2.20 pygpgme-0.3 pyotp-2.4.1 pysftp-0.2.9 python-dateutil-2.8.1 pytz-2020.4 pyudev-0.22.0 pyxattr-0.7.1 pyyaml-6.0.1 requests-2.26.0 requests-file-1.5.1 requests-oauthlib-1.3.0 requests-toolbelt-0.9.1 rsa-4.6 s3transfer-0.5.0 six-1.15.0 soupsieve-2.0.1 sqlparse-0.4.2 tldextract-3.0.2 tornado-6.1 uritemplate-3.0.1 urllib3-1.26.5 validators-0.18.1 wcwidth-0.2.5 websocket-client-0.57.0 Fetching files from https://github.com/usmannasir/cyberpanel.git... Cloning into 'cyberpanel'... remote: Enumerating objects: 31816, done. remote: Counting objects: 100% (4708/4708), done. remote: Compressing objects: 100% (543/543), done. remote: Total 31816 (delta 4293), reused 4312 (delta 4135), pack-reused 27108 Receiving objects: 100% (31816/31816), 416.03 MiB | 31.54 MiB/s, done. Resolving deltas: 100% (21065/21065), done. Updating files: 100% (4423/4423), done. CyberPanel source code downloaded... Branch 'v2.3.4' set up to track remote branch 'v2.3.4' from 'origin'. Switched to a new branch 'v2.3.4' /root Setting up swapspace version 1, size = 2 GiB (2147479552 bytes) no label, UUID=4b6e9ab9-d930-4d7b-9e60-3bbf79b31c20 /cyberpanel.swap swap swap sw 0 0 vm.swappiness = 10 SWAP set... The network is down.. :( Returns the nameservers settings to default.. Continue installation.. root@Wordpress:~# continue -bash: continue: only meaningful in a `for', `while', or `until' loop root@Wordpress:~# ls cyberpanel cyberpanel.sh root@Wordpress:~# cd cyberpanel root@Wordpress:~/cyberpanel# l AllCPUbuntu.json CONTRIBUTING.md dockerManager/ index.html* mailServer/ preUpgrade.sh tuning/ ApachController/ CPCent7repo.json emailMarketing/ install/ managePHP/ README.md* ubuntu-requirments.txt api/ CPScripts/ emailPremium/ install.sh manage.py* README.md.bak upgrade.sh* backup/ CyberCP/ examplePlugin/ key.pem manageServices/ requirments.txt* userManagment/ baseTemplate/ cyberpanel.min.js faq.sh LICENSE* manageSSL/ s3Backups/ version.txt cert.pem cyberpanel.sh FetchIP.sh locale/ packages/ serverLogs/ websiteFunctions/ cli/ cyberpanel.sh.bak filemanager/ loginSystem/ phpmyadmin.zip serverStatus/ WebTerminal/ CLManager/ cyberpanel_upgrade.sh firewall/ lscpd-0.2.7* plogical/ skin_customizations/ cloudAPI/ cyberpanel_utility.sh ftp/ lscpd-0.3.1* pluginHolder/ static/ CLScript/ databases/ highAvailability/ lscpd.0.4.0 pluginInstaller/ test.php containerization/ dns/ IncBackups/ lscpd.aarch64 postfixSenderPolicy/ test.sh* root@Wordpress:~/cyberpanel# test.sh test.sh: command not found root@Wordpress:~/cyberpanel# rn test.sh Command 'rn' not found, but can be installed with: apt install trn4 root@Wordpress:~/cyberpanel# exec test.sh -bash: exec: test.sh: not found root@Wordpress:~/cyberpanel# exec test.sh* -bash: exec: test.sh: not found root@Wordpress:~/cyberpanel# upgrade.sh upgrade.sh: command not found root@Wordpress:~/cyberpanel# sh <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh || wget -O - https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com Redirecting output to ‘wget-log’. root@Wordpress:~/cyberpanel# cd root@Wordpress:~# sh <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh || wget -O - https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com Redirecting output to ‘wget-log’. root@Wordpress:~# reboot Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-169-generic aarch64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Fri 29 Dec 2023 10:30:50 AM UTC System load: 0.04 Usage of /: 16.0% of 37.23GB Memory usage: 4% Swap usage: 0% Processes: 139 Users logged in: 0 IPv4 address for enp7s0: 10.0.0.3 IPv4 address for eth0: 91.107.212.123 IPv6 address for eth0: 2a01:4f8:1c17:7955::1 Expanded Security Maintenance for Applications is not enabled. 0 updates can be applied immediately. 1 additional security update can be applied with ESM Apps. Learn more about enabling ESM Apps service at https://ubuntu.com/esm New release '22.04.3 LTS' available. Run 'do-release-upgrade' to upgrade to it. Last login: Fri Dec 29 10:16:44 2023 from 88.240.182.11 root@789456123:~# sh <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh || wget -O - https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com Redirecting output to ‘wget-log.1’. root@789456123:~# sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: cyberpanel.net Redirecting output to ‘wget-log.2’. root@789456123:~# nano wget-log.2 root@789456123:~# ping wget-log.2 ping: unknown host root@789456123:~# ping cyberpanel.net ping: unknown host root@789456123:~# ping cyberpanel.net ping: unknown host root@789456123:~# Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-169-generic aarch64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Fri 29 Dec 2023 10:33:57 AM UTC System load: 0.8 Usage of /: 4.8% of 37.23GB Memory usage: 4% Swap usage: 0% Processes: 138 Users logged in: 0 IPv4 address for enp7s0: 10.0.0.3 IPv4 address for eth0: 91.107.212.123 IPv6 address for eth0: 2a01:4f8:1c17:7955::1 Expanded Security Maintenance for Applications is not enabled. 0 updates can be applied immediately. Enable ESM Apps to receive additional future security updates. See https://ubuntu.com/esm or run: sudo pro status The list of available updates is more than a week old. To check for new updates run: sudo apt update root@Wordpress:~# hostnamectl set-hostname 789456123.arab.gg root@Wordpress:~# sudo apt update && sudo apt -y upgrade Get:1 https://mirror.hetzner.com/ubuntu/packages focal InRelease [265 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates InRelease [114 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-backports InRelease [108 kB] Get:4 https://mirror.hetzner.com/ubuntu/security focal-security InRelease [114 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 Packages [940 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal/main Translation-en [506 kB] Get:7 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 c-n-f Metadata [28.6 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal/restricted arm64 Packages [1,300 B] Get:9 https://mirror.hetzner.com/ubuntu/packages focal/restricted Translation-en [6,212 B] Get:10 https://mirror.hetzner.com/ubuntu/packages focal/restricted arm64 c-n-f Metadata [108 B] Get:11 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 Packages [8,458 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal/universe Translation-en [5,124 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 c-n-f Metadata [255 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal/multiverse arm64 Packages [114 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal/multiverse Translation-en [104 kB] Get:16 https://mirror.hetzner.com/ubuntu/packages focal/multiverse arm64 c-n-f Metadata [8,024 B] Get:17 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 Packages [2,290 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal-updates/main Translation-en [488 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 c-n-f Metadata [16.8 kB] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted arm64 Packages [38.4 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted Translation-en [359 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal-updates/restricted arm64 c-n-f Metadata [376 B] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 Packages [1,056 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe Translation-en [273 kB] Get:25 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 c-n-f Metadata [23.9 kB] Get:26 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse arm64 Packages [8,472 B] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse Translation-en [7,484 B] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/multiverse arm64 c-n-f Metadata [380 B] Get:29 https://mirror.hetzner.com/ubuntu/packages focal-backports/main arm64 Packages [45.4 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal-backports/main Translation-en [16.3 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal-backports/main arm64 c-n-f Metadata [1,420 B] Get:32 https://mirror.hetzner.com/ubuntu/packages focal-backports/restricted arm64 c-n-f Metadata [116 B] Get:33 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe arm64 Packages [24.3 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe Translation-en [16.3 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal-backports/universe arm64 c-n-f Metadata [864 B] Get:36 https://mirror.hetzner.com/ubuntu/packages focal-backports/multiverse arm64 c-n-f Metadata [116 B] Get:37 https://mirror.hetzner.com/ubuntu/security focal-security/main arm64 Packages [1,984 kB] Get:38 https://mirror.hetzner.com/ubuntu/security focal-security/main Translation-en [405 kB] Get:39 https://mirror.hetzner.com/ubuntu/security focal-security/main arm64 c-n-f Metadata [12.9 kB] Get:40 https://mirror.hetzner.com/ubuntu/security focal-security/restricted arm64 Packages [38.2 kB] Get:41 https://mirror.hetzner.com/ubuntu/security focal-security/restricted Translation-en [342 kB] Get:42 https://mirror.hetzner.com/ubuntu/security focal-security/restricted arm64 c-n-f Metadata [380 B] Get:43 https://mirror.hetzner.com/ubuntu/security focal-security/universe arm64 Packages [831 kB] Get:44 https://mirror.hetzner.com/ubuntu/security focal-security/universe Translation-en [192 kB] Get:45 https://mirror.hetzner.com/ubuntu/security focal-security/universe arm64 c-n-f Metadata [17.2 kB] Get:46 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse arm64 Packages [3,068 B] Get:47 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse Translation-en [5,504 B] Get:48 https://mirror.hetzner.com/ubuntu/security focal-security/multiverse arm64 c-n-f Metadata [116 B] Fetched 24.6 MB in 3s (9,159 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done 12 packages can be upgraded. Run 'apt list --upgradable' to see them. Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done The following packages will be upgraded: libssh-4 openssh-client openssh-server openssh-sftp-server python3-update-manager tar update-manager-core vim vim-common vim-runtime vim-tiny xxd 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 10 standard LTS security updates Need to get 9,174 kB of archives. After this operation, 22.5 kB disk space will be freed. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 tar arm64 1.30+dfsg-7ubuntu0.20.04.4 [228 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim arm64 2:8.1.2269-1ubuntu5.21 [1,141 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-tiny arm64 2:8.1.2269-1ubuntu5.21 [535 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-runtime all 2:8.1.2269-1ubuntu5.21 [5,878 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 xxd arm64 2:8.1.2269-1ubuntu5.21 [52.6 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 vim-common all 2:8.1.2269-1ubuntu5.21 [88.2 kB] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-sftp-server arm64 1:8.2p1-4ubuntu0.10 [48.6 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-server arm64 1:8.2p1-4ubuntu0.10 [355 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 openssh-client arm64 1:8.2p1-4ubuntu0.10 [638 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 python3-update-manager all 1:20.04.10.18 [38.3 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 update-manager-core all 1:20.04.10.18 [11.6 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libssh-4 arm64 0.9.3-2ubuntu2.4 [160 kB] Fetched 9,174 kB in 0s (73.1 MB/s) Preconfiguring packages ... (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../tar_1.30+dfsg-7ubuntu0.20.04.4_arm64.deb ... Unpacking tar (1.30+dfsg-7ubuntu0.20.04.4) over (1.30+dfsg-7ubuntu0.20.04.3) ... Setting up tar (1.30+dfsg-7ubuntu0.20.04.4) ... (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../00-vim_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking vim (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../01-vim-tiny_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking vim-tiny (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../02-vim-runtime_2%3a8.1.2269-1ubuntu5.21_all.deb ... Unpacking vim-runtime (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../03-xxd_2%3a8.1.2269-1ubuntu5.21_arm64.deb ... Unpacking xxd (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../04-vim-common_2%3a8.1.2269-1ubuntu5.21_all.deb ... Unpacking vim-common (2:8.1.2269-1ubuntu5.21) over (2:8.1.2269-1ubuntu5.20) ... Preparing to unpack .../05-openssh-sftp-server_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-sftp-server (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../06-openssh-server_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-server (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../07-openssh-client_1%3a8.2p1-4ubuntu0.10_arm64.deb ... Unpacking openssh-client (1:8.2p1-4ubuntu0.10) over (1:8.2p1-4ubuntu0.9) ... Preparing to unpack .../08-python3-update-manager_1%3a20.04.10.18_all.deb ... Unpacking python3-update-manager (1:20.04.10.18) over (1:20.04.10.11) ... Preparing to unpack .../09-update-manager-core_1%3a20.04.10.18_all.deb ... Unpacking update-manager-core (1:20.04.10.18) over (1:20.04.10.11) ... Preparing to unpack .../10-libssh-4_0.9.3-2ubuntu2.4_arm64.deb ... Unpacking libssh-4:arm64 (0.9.3-2ubuntu2.4) over (0.9.3-2ubuntu2.3) ... Setting up openssh-client (1:8.2p1-4ubuntu0.10) ... Setting up xxd (2:8.1.2269-1ubuntu5.21) ... Setting up vim-common (2:8.1.2269-1ubuntu5.21) ... Setting up libssh-4:arm64 (0.9.3-2ubuntu2.4) ... Setting up python3-update-manager (1:20.04.10.18) ... Setting up vim-runtime (2:8.1.2269-1ubuntu5.21) ... Setting up openssh-sftp-server (1:8.2p1-4ubuntu0.10) ... Setting up vim (2:8.1.2269-1ubuntu5.21) ... Setting up openssh-server (1:8.2p1-4ubuntu0.10) ... rescue-ssh.target is a disabled or a static unit, not starting it. Setting up vim-tiny (2:8.1.2269-1ubuntu5.21) ... Setting up update-manager-core (1:20.04.10.18) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Processing triggers for ufw (0.36-6ubuntu1.1) ... Processing triggers for systemd (245.4-4ubuntu3.22) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for mime-support (3.64ubuntu1) ... root@Wordpress:~# sudo apt -y install curl wget Reading package lists... Done Building dependency tree Reading state information... Done curl is already the newest version (7.68.0-1ubuntu2.21). wget is already the newest version (1.20.3-1ubuntu2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@Wordpress:~# hostnamectl Static hostname: 789456123.arab.gg Icon name: computer-vm Chassis: vm Machine ID: a481fe6cde424fdc8b14d510e5c7a8c0 Boot ID: e067f8163afb4b2cab6a932d17cb868a Virtualization: kvm Operating System: Ubuntu 20.04.6 LTS Kernel: Linux 5.4.0-169-generic Architecture: arm64 root@Wordpress:~# sudo sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh) sh: 0: Can't open /dev/fd/63 root@Wordpress:~# % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2344 100 2344 0 0 19056 0 --:--:-- --:--:-- --:--:-- 19056 (23) Failed writing body ^C root@Wordpress:~# sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2344 100 2344 0 0 22980 0 --:--:-- --:--:-- --:--:-- 22980 curl is already the newest version (7.68.0-1ubuntu2.21). wget is already the newest version (1.20.3-1ubuntu2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Initializing... Fetching latest data from CyberPanel server... This may take few seconds... Branch name fetched...v2.3.4 Checking root privileges... You are runing as root... Valid IP detected... Checking server location... Desktop OS not detected. Proceeding System: Ubuntu 20 detected... Checking virtualization type... Initialized... CyberPanel Installer v2.3.4 1. Install CyberPanel. 2. Exit. Please enter the number[1-2]: 1 CyberPanel Installer v2.3.4 RAM check : 133/3822MB (3.48%) Disk check : 2/38GB (6%) (Minimal 10GB free space) 1. Install CyberPanel with OpenLiteSpeed. 2. Install Cyberpanel with LiteSpeed Enterprise. 3. Exit. Please enter the number[1-3]: 1 Install Full service for CyberPanel? This will include PowerDNS, Postfix and Pure-FTPd. Full installation [Y/n]: Y Full installation selected... Do you want to setup Remote MySQL? (This will skip installation of local MySQL) (Default = No) Remote MySQL [y/N]: N Local MySQL selected... Press Enter key to continue with latest version or Enter specific version such as: 1.9.4 , 2.0.1 , 2.0.2 ...etc Branch name set to v2.3.4 Please choose to use default admin password 1234567, randomly generate one (recommended) or specify the admin password? Choose [d]fault, [r]andom or [s]et password: [d/r/s] r Admin password will be provided once installation is completed... Do you wish to install Memcached process and its PHP extension? Please select [Y/n]: Y Install Memcached process and its PHP extension set to Yes... Do you wish to install Redis process and its PHP extension? Please select [Y/n]: Y Install Redis process and its PHP extension set to Yes... Would you like to set up a WatchDog (beta) for Web service and Database service ? The watchdog script will be automatically started up after installation and server reboot If you want to kill the watchdog , run watchdog kill Please type Yes or no (with capital Y, default Yes): no Hit:1 https://mirror.hetzner.com/ubuntu/packages focal InRelease Hit:2 https://mirror.hetzner.com/ubuntu/packages focal-updates InRelease Hit:3 https://mirror.hetzner.com/ubuntu/packages focal-backports InRelease Hit:4 https://mirror.hetzner.com/ubuntu/security focal-security InRelease Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Done Building dependency tree Reading state information... Done htop is already the newest version (2.2.0-2build1). libattr1 is already the newest version (1:2.4.48-5). libattr1 set to manually installed. net-tools is already the newest version (1.60+git20180626.aebd88e-1ubuntu1). git is already the newest version (1:2.25.1-1ubuntu3.11). libgssapi-krb5-2 is already the newest version (1.17-6ubuntu4.4). libgssapi-krb5-2 set to manually installed. libk5crypto3 is already the newest version (1.17-6ubuntu4.4). libk5crypto3 set to manually installed. vim is already the newest version (2:8.1.2269-1ubuntu5.21). The following additional packages will be installed: comerr-dev krb5-multidev libassuan-dev libc-ares2 libc-dev-bin libc6-dev libcrypt-dev libdpkg-perl libev4 libfile-fcntllock-perl libgmp-dev libgmpxx4ldbl libgnutls-dane0 libgnutls-openssl27 libgnutlsxx28 libgpg-error-dev libgssrpc4 libjansson4 libjemalloc2 libkadm5clnt-mit11 libkadm5srv-mit11 libkdb5-9 libmariadb-dev libmariadb3 libp11-kit-dev libtasn1-6-dev libtasn1-doc libunbound8 linux-libc-dev manpages-dev mariadb-common mysql-common nghttp2-client nghttp2-proxy nghttp2-server pkg-config python-pip-whl python3-appdirs python3-distlib python3-filelock python3-virtualenv zlib1g-dev Suggested packages: doc-base krb5-doc glibc-doc libcurl4-doc libidn11-dev libssh2-1-dev debian-keyring gcc | c-compiler binutils bzr libgcrypt20-doc gmp-doc libgmp10-doc libmpfr-dev dns-root-data gnutls-bin gnutls-doc krb5-user liblzma-doc libnghttp2-doc libssl-doc dpkg-dev The following NEW packages will be installed: comerr-dev dnsutils idn2 krb5-multidev libassuan-dev libattr1-dev libc-ares2 libc-dev-bin libc6-dev libcomerr2 libcrypt-dev libcurl4-gnutls-dev libdpkg-perl libev4 libfile-fcntllock-perl libgcrypt20-dev libgmp-dev libgmpxx4ldbl libgnutls-dane0 libgnutls-openssl27 libgnutls28-dev libgnutlsxx28 libgpg-error-dev libgpgme-dev libgssrpc4 libidn2-0-dev libidn2-dev libjansson4 libjemalloc2 libkadm5clnt-mit11 libkadm5srv-mit11 libkdb5-9 libkrb5-dev libldap2-dev liblzma-dev libmariadb-dev libmariadb3 libmariadbclient-dev libnghttp2-dev libp11-kit-dev libpsl-dev librtmp-dev libssl-dev libtasn1-6-dev libtasn1-doc libunbound8 linux-libc-dev manpages-dev mariadb-common mysql-common nettle-dev nghttp2 nghttp2-client nghttp2-proxy nghttp2-server pkg-config python-pip-whl python3-appdirs python3-distlib python3-filelock python3-virtualenv socat telnet unzip virtualenv zip zlib1g-dev 0 upgraded, 67 newly installed, 0 to remove and 0 not upgraded. Need to get 17.6 MB of archives. After this operation, 76.3 MB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc-ares2 arm64 1.15.0-1ubuntu0.4 [35.3 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 libev4 arm64 1:4.31-1 [29.3 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 libjemalloc2 arm64 5.2.1-1ubuntu1 [172 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-proxy arm64 1.40.0-1ubuntu0.2 [332 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 telnet arm64 0.17-41.2build1 [61.9 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 dnsutils all 1:9.16.1-0ubuntu2.16 [2,760 B] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgssrpc4 arm64 1.17-6ubuntu4.4 [52.7 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkdb5-9 arm64 1.17-6ubuntu4.4 [36.2 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkadm5srv-mit11 arm64 1.17-6ubuntu4.4 [47.7 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkadm5clnt-mit11 arm64 1.17-6ubuntu4.4 [36.0 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc-dev-bin arm64 2.31-0ubuntu9.14 [64.2 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 linux-libc-dev arm64 5.4.0-169.187 [1,105 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libcrypt-dev arm64 1:4.4.10-10ubuntu4 [111 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libc6-dev arm64 2.31-0ubuntu9.14 [2,069 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 comerr-dev arm64 2.1-1.45.5-2ubuntu1.1 [40.0 kB] Get:16 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 krb5-multidev arm64 1.17-6ubuntu4.4 [120 kB] Get:17 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libgpg-error-dev arm64 1.37-1 [108 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libassuan-dev arm64 2.5.3-7ubuntu2 [92.0 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcomerr2 arm64 1.45.5-2ubuntu1.1 [2,712 B] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcurl4-gnutls-dev arm64 7.68.0-1ubuntu2.21 [309 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libdpkg-perl all 1.19.7ubuntu3.2 [231 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libfile-fcntllock-perl arm64 0.22-3build4 [33.0 kB] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgcrypt20-dev arm64 1.8.5-5ubuntu1.1 [405 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgmpxx4ldbl arm64 2:6.2.0+dfsg-4ubuntu0.1 [8,836 B] Get:25 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgmp-dev arm64 2:6.2.0+dfsg-4ubuntu0.1 [301 kB] Get:26 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls-openssl27 arm64 3.6.13-2ubuntu1.9 [28.0 kB] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libunbound8 arm64 1.9.4-2ubuntu1.4 [317 kB] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls-dane0 arm64 3.6.13-2ubuntu1.9 [27.6 kB] Get:29 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutlsxx28 arm64 3.6.13-2ubuntu1.9 [13.0 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn2-dev arm64 2.2.0-2 [64.3 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libp11-kit-dev arm64 0.23.20-1ubuntu0.1 [65.1 kB] Get:32 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libtasn1-6-dev arm64 4.16.0-2 [85.0 kB] Get:33 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 nettle-dev arm64 3.5.1+really3.5.1-2ubuntu0.2 [997 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgnutls28-dev arm64 3.6.13-2ubuntu1.9 [893 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libjansson4 arm64 2.12-1build1 [28.5 kB] Get:36 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 mysql-common all 5.8+1.0.5ubuntu2 [7,496 B] Get:37 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 mariadb-common all 1:10.3.38-0ubuntu0.20.04.1 [15.9 kB] Get:38 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadb3 arm64 1:10.3.38-0ubuntu0.20.04.1 [145 kB] Get:39 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 zlib1g-dev arm64 1:1.2.11.dfsg-2ubuntu1.5 [154 kB] Get:40 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadb-dev arm64 1:10.3.38-0ubuntu0.20.04.1 [1,001 kB] Get:41 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 libmariadbclient-dev arm64 1:10.3.38-0ubuntu0.20.04.1 [12.6 kB] Get:42 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 pkg-config arm64 0.29.1-0ubuntu4 [43.8 kB] Get:43 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libnghttp2-dev arm64 1.40.0-1ubuntu0.2 [95.6 kB] Get:44 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libpsl-dev arm64 0.21.0-1ubuntu1 [71.2 kB] Get:45 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libssl-dev arm64 1.1.1f-1ubuntu2.20 [1,460 kB] Get:46 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 manpages-dev all 5.05-1 [2,266 kB] Get:47 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-client arm64 1.40.0-1ubuntu0.2 [141 kB] Get:48 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2-server arm64 1.40.0-1ubuntu0.2 [81.6 kB] Get:49 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 nghttp2 all 1.40.0-1ubuntu0.2 [5,636 B] Get:50 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python-pip-whl all 20.0.2-5ubuntu1.10 [1,805 kB] Get:51 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 python3-appdirs all 1.4.3-2.1 [10.8 kB] Get:52 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-distlib all 0.3.0-1 [116 kB] Get:53 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-filelock all 3.0.12-2 [7,948 B] Get:54 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-virtualenv all 20.0.17-1ubuntu0.4 [62.7 kB] Get:55 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 unzip arm64 6.0-25ubuntu1.1 [162 kB] Get:56 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 virtualenv all 20.0.17-1ubuntu0.4 [2,144 B] Get:57 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 zip arm64 3.0-11build1 [146 kB] Get:58 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 idn2 arm64 2.2.0-2 [20.6 kB] Get:59 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libattr1-dev arm64 1:2.4.48-5 [22.9 kB] Get:60 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgpgme-dev arm64 1.13.1-7ubuntu2.1 [320 kB] Get:61 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn2-0-dev arm64 2.2.0-2 [2,844 B] Get:62 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libkrb5-dev arm64 1.17-6ubuntu4.4 [11.8 kB] Get:63 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libldap2-dev arm64 2.4.49+dfsg-2ubuntu1.9 [262 kB] Get:64 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 liblzma-dev arm64 5.2.4-1ubuntu1.1 [144 kB] Get:65 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 librtmp-dev arm64 2.4+20151223.gitfa8646d.1-2build1 [62.5 kB] Get:66 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libtasn1-doc all 4.16.0-2 [303 kB] Get:67 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 socat arm64 1.7.3.3-2 [315 kB] Fetched 17.6 MB in 0s (80.4 MB/s) Extracting templates from packages: 100% Selecting previously unselected package libc-ares2:arm64. (Reading database ... 42073 files and directories currently installed.) Preparing to unpack .../00-libc-ares2_1.15.0-1ubuntu0.4_arm64.deb ... Unpacking libc-ares2:arm64 (1.15.0-1ubuntu0.4) ... Selecting previously unselected package libev4:arm64. Preparing to unpack .../01-libev4_1%3a4.31-1_arm64.deb ... Unpacking libev4:arm64 (1:4.31-1) ... Selecting previously unselected package libjemalloc2:arm64. Preparing to unpack .../02-libjemalloc2_5.2.1-1ubuntu1_arm64.deb ... Unpacking libjemalloc2:arm64 (5.2.1-1ubuntu1) ... Selecting previously unselected package nghttp2-proxy. Preparing to unpack .../03-nghttp2-proxy_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-proxy (1.40.0-1ubuntu0.2) ... Selecting previously unselected package telnet. Preparing to unpack .../04-telnet_0.17-41.2build1_arm64.deb ... Unpacking telnet (0.17-41.2build1) ... Selecting previously unselected package dnsutils. Preparing to unpack .../05-dnsutils_1%3a9.16.1-0ubuntu2.16_all.deb ... Unpacking dnsutils (1:9.16.1-0ubuntu2.16) ... Selecting previously unselected package libgssrpc4:arm64. Preparing to unpack .../06-libgssrpc4_1.17-6ubuntu4.4_arm64.deb ... Unpacking libgssrpc4:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkdb5-9:arm64. Preparing to unpack .../07-libkdb5-9_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkdb5-9:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkadm5srv-mit11:arm64. Preparing to unpack .../08-libkadm5srv-mit11_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkadm5srv-mit11:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libkadm5clnt-mit11:arm64. Preparing to unpack .../09-libkadm5clnt-mit11_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkadm5clnt-mit11:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../10-libc-dev-bin_2.31-0ubuntu9.14_arm64.deb ... Unpacking libc-dev-bin (2.31-0ubuntu9.14) ... Selecting previously unselected package linux-libc-dev:arm64. Preparing to unpack .../11-linux-libc-dev_5.4.0-169.187_arm64.deb ... Unpacking linux-libc-dev:arm64 (5.4.0-169.187) ... Selecting previously unselected package libcrypt-dev:arm64. Preparing to unpack .../12-libcrypt-dev_1%3a4.4.10-10ubuntu4_arm64.deb ... Unpacking libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ... Selecting previously unselected package libc6-dev:arm64. Preparing to unpack .../13-libc6-dev_2.31-0ubuntu9.14_arm64.deb ... Unpacking libc6-dev:arm64 (2.31-0ubuntu9.14) ... Selecting previously unselected package comerr-dev:arm64. Preparing to unpack .../14-comerr-dev_2.1-1.45.5-2ubuntu1.1_arm64.deb ... Unpacking comerr-dev:arm64 (2.1-1.45.5-2ubuntu1.1) ... Selecting previously unselected package krb5-multidev:arm64. Preparing to unpack .../15-krb5-multidev_1.17-6ubuntu4.4_arm64.deb ... Unpacking krb5-multidev:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libgpg-error-dev. Preparing to unpack .../16-libgpg-error-dev_1.37-1_arm64.deb ... Unpacking libgpg-error-dev (1.37-1) ... Selecting previously unselected package libassuan-dev. Preparing to unpack .../17-libassuan-dev_2.5.3-7ubuntu2_arm64.deb ... Unpacking libassuan-dev (2.5.3-7ubuntu2) ... Selecting previously unselected package libcomerr2:arm64. Preparing to unpack .../18-libcomerr2_1.45.5-2ubuntu1.1_arm64.deb ... Unpacking libcomerr2:arm64 (1.45.5-2ubuntu1.1) ... Selecting previously unselected package libcurl4-gnutls-dev:arm64. Preparing to unpack .../19-libcurl4-gnutls-dev_7.68.0-1ubuntu2.21_arm64.deb ... Unpacking libcurl4-gnutls-dev:arm64 (7.68.0-1ubuntu2.21) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../20-libdpkg-perl_1.19.7ubuntu3.2_all.deb ... Unpacking libdpkg-perl (1.19.7ubuntu3.2) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../21-libfile-fcntllock-perl_0.22-3build4_arm64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build4) ... Selecting previously unselected package libgcrypt20-dev. Preparing to unpack .../22-libgcrypt20-dev_1.8.5-5ubuntu1.1_arm64.deb ... Unpacking libgcrypt20-dev (1.8.5-5ubuntu1.1) ... Selecting previously unselected package libgmpxx4ldbl:arm64. Preparing to unpack .../23-libgmpxx4ldbl_2%3a6.2.0+dfsg-4ubuntu0.1_arm64.deb ... Unpacking libgmpxx4ldbl:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Selecting previously unselected package libgmp-dev:arm64. Preparing to unpack .../24-libgmp-dev_2%3a6.2.0+dfsg-4ubuntu0.1_arm64.deb ... Unpacking libgmp-dev:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Selecting previously unselected package libgnutls-openssl27:arm64. Preparing to unpack .../25-libgnutls-openssl27_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls-openssl27:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libunbound8:arm64. Preparing to unpack .../26-libunbound8_1.9.4-2ubuntu1.4_arm64.deb ... Unpacking libunbound8:arm64 (1.9.4-2ubuntu1.4) ... Selecting previously unselected package libgnutls-dane0:arm64. Preparing to unpack .../27-libgnutls-dane0_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls-dane0:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libgnutlsxx28:arm64. Preparing to unpack .../28-libgnutlsxx28_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutlsxx28:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libidn2-dev:arm64. Preparing to unpack .../29-libidn2-dev_2.2.0-2_arm64.deb ... Unpacking libidn2-dev:arm64 (2.2.0-2) ... Selecting previously unselected package libp11-kit-dev:arm64. Preparing to unpack .../30-libp11-kit-dev_0.23.20-1ubuntu0.1_arm64.deb ... Unpacking libp11-kit-dev:arm64 (0.23.20-1ubuntu0.1) ... Selecting previously unselected package libtasn1-6-dev:arm64. Preparing to unpack .../31-libtasn1-6-dev_4.16.0-2_arm64.deb ... Unpacking libtasn1-6-dev:arm64 (4.16.0-2) ... Selecting previously unselected package nettle-dev:arm64. Preparing to unpack .../32-nettle-dev_3.5.1+really3.5.1-2ubuntu0.2_arm64.deb ... Unpacking nettle-dev:arm64 (3.5.1+really3.5.1-2ubuntu0.2) ... Selecting previously unselected package libgnutls28-dev:arm64. Preparing to unpack .../33-libgnutls28-dev_3.6.13-2ubuntu1.9_arm64.deb ... Unpacking libgnutls28-dev:arm64 (3.6.13-2ubuntu1.9) ... Selecting previously unselected package libjansson4:arm64. Preparing to unpack .../34-libjansson4_2.12-1build1_arm64.deb ... Unpacking libjansson4:arm64 (2.12-1build1) ... Selecting previously unselected package mysql-common. Preparing to unpack .../35-mysql-common_5.8+1.0.5ubuntu2_all.deb ... Unpacking mysql-common (5.8+1.0.5ubuntu2) ... Selecting previously unselected package mariadb-common. Preparing to unpack .../36-mariadb-common_1%3a10.3.38-0ubuntu0.20.04.1_all.deb ... Unpacking mariadb-common (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package libmariadb3:arm64. Preparing to unpack .../37-libmariadb3_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadb3:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package zlib1g-dev:arm64. Preparing to unpack .../38-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu1.5_arm64.deb ... Unpacking zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ... Selecting previously unselected package libmariadb-dev. Preparing to unpack .../39-libmariadb-dev_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadb-dev (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package libmariadbclient-dev:arm64. Preparing to unpack .../40-libmariadbclient-dev_1%3a10.3.38-0ubuntu0.20.04.1_arm64.deb ... Unpacking libmariadbclient-dev:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Selecting previously unselected package pkg-config. Preparing to unpack .../41-pkg-config_0.29.1-0ubuntu4_arm64.deb ... Unpacking pkg-config (0.29.1-0ubuntu4) ... Selecting previously unselected package libnghttp2-dev. Preparing to unpack .../42-libnghttp2-dev_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking libnghttp2-dev (1.40.0-1ubuntu0.2) ... Selecting previously unselected package libpsl-dev:arm64. Preparing to unpack .../43-libpsl-dev_0.21.0-1ubuntu1_arm64.deb ... Unpacking libpsl-dev:arm64 (0.21.0-1ubuntu1) ... Selecting previously unselected package libssl-dev:arm64. Preparing to unpack .../44-libssl-dev_1.1.1f-1ubuntu2.20_arm64.deb ... Unpacking libssl-dev:arm64 (1.1.1f-1ubuntu2.20) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../45-manpages-dev_5.05-1_all.deb ... Unpacking manpages-dev (5.05-1) ... Selecting previously unselected package nghttp2-client. Preparing to unpack .../46-nghttp2-client_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-client (1.40.0-1ubuntu0.2) ... Selecting previously unselected package nghttp2-server. Preparing to unpack .../47-nghttp2-server_1.40.0-1ubuntu0.2_arm64.deb ... Unpacking nghttp2-server (1.40.0-1ubuntu0.2) ... Selecting previously unselected package nghttp2. Preparing to unpack .../48-nghttp2_1.40.0-1ubuntu0.2_all.deb ... Unpacking nghttp2 (1.40.0-1ubuntu0.2) ... Selecting previously unselected package python-pip-whl. Preparing to unpack .../49-python-pip-whl_20.0.2-5ubuntu1.10_all.deb ... Unpacking python-pip-whl (20.0.2-5ubuntu1.10) ... Selecting previously unselected package python3-appdirs. Preparing to unpack .../50-python3-appdirs_1.4.3-2.1_all.deb ... Unpacking python3-appdirs (1.4.3-2.1) ... Selecting previously unselected package python3-distlib. Preparing to unpack .../51-python3-distlib_0.3.0-1_all.deb ... Unpacking python3-distlib (0.3.0-1) ... Selecting previously unselected package python3-filelock. Preparing to unpack .../52-python3-filelock_3.0.12-2_all.deb ... Unpacking python3-filelock (3.0.12-2) ... Selecting previously unselected package python3-virtualenv. Preparing to unpack .../53-python3-virtualenv_20.0.17-1ubuntu0.4_all.deb ... Unpacking python3-virtualenv (20.0.17-1ubuntu0.4) ... Selecting previously unselected package unzip. Preparing to unpack .../54-unzip_6.0-25ubuntu1.1_arm64.deb ... Unpacking unzip (6.0-25ubuntu1.1) ... Selecting previously unselected package virtualenv. Preparing to unpack .../55-virtualenv_20.0.17-1ubuntu0.4_all.deb ... Unpacking virtualenv (20.0.17-1ubuntu0.4) ... Selecting previously unselected package zip. Preparing to unpack .../56-zip_3.0-11build1_arm64.deb ... Unpacking zip (3.0-11build1) ... Selecting previously unselected package idn2. Preparing to unpack .../57-idn2_2.2.0-2_arm64.deb ... Unpacking idn2 (2.2.0-2) ... Selecting previously unselected package libattr1-dev:arm64. Preparing to unpack .../58-libattr1-dev_1%3a2.4.48-5_arm64.deb ... Unpacking libattr1-dev:arm64 (1:2.4.48-5) ... Selecting previously unselected package libgpgme-dev. Preparing to unpack .../59-libgpgme-dev_1.13.1-7ubuntu2.1_arm64.deb ... Unpacking libgpgme-dev (1.13.1-7ubuntu2.1) ... Selecting previously unselected package libidn2-0-dev:arm64. Preparing to unpack .../60-libidn2-0-dev_2.2.0-2_arm64.deb ... Unpacking libidn2-0-dev:arm64 (2.2.0-2) ... Selecting previously unselected package libkrb5-dev:arm64. Preparing to unpack .../61-libkrb5-dev_1.17-6ubuntu4.4_arm64.deb ... Unpacking libkrb5-dev:arm64 (1.17-6ubuntu4.4) ... Selecting previously unselected package libldap2-dev:arm64. Preparing to unpack .../62-libldap2-dev_2.4.49+dfsg-2ubuntu1.9_arm64.deb ... Unpacking libldap2-dev:arm64 (2.4.49+dfsg-2ubuntu1.9) ... Selecting previously unselected package liblzma-dev:arm64. Preparing to unpack .../63-liblzma-dev_5.2.4-1ubuntu1.1_arm64.deb ... Unpacking liblzma-dev:arm64 (5.2.4-1ubuntu1.1) ... Selecting previously unselected package librtmp-dev:arm64. Preparing to unpack .../64-librtmp-dev_2.4+20151223.gitfa8646d.1-2build1_arm64.deb ... Unpacking librtmp-dev:arm64 (2.4+20151223.gitfa8646d.1-2build1) ... Selecting previously unselected package libtasn1-doc. Preparing to unpack .../65-libtasn1-doc_4.16.0-2_all.deb ... Unpacking libtasn1-doc (4.16.0-2) ... Selecting previously unselected package socat. Preparing to unpack .../66-socat_1.7.3.3-2_arm64.deb ... Unpacking socat (1.7.3.3-2) ... Setting up idn2 (2.2.0-2) ... Setting up manpages-dev (5.05-1) ... Setting up mysql-common (5.8+1.0.5ubuntu2) ... update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up python3-filelock (3.0.12-2) ... Setting up libgnutls-openssl27:arm64 (3.6.13-2ubuntu1.9) ... Setting up telnet (0.17-41.2build1) ... update-alternatives: using /usr/bin/telnet.netkit to provide /usr/bin/telnet (telnet) in auto mode Setting up libfile-fcntllock-perl (0.22-3build4) ... Setting up libev4:arm64 (1:4.31-1) ... Setting up unzip (6.0-25ubuntu1.1) ... Setting up libtasn1-doc (4.16.0-2) ... Setting up linux-libc-dev:arm64 (5.4.0-169.187) ... Setting up libc-ares2:arm64 (1.15.0-1ubuntu0.4) ... Setting up libjemalloc2:arm64 (5.2.1-1ubuntu1) ... Setting up dnsutils (1:9.16.1-0ubuntu2.16) ... Setting up python3-distlib (0.3.0-1) ... Setting up libcurl4-gnutls-dev:arm64 (7.68.0-1ubuntu2.21) ... Setting up nghttp2-proxy (1.40.0-1ubuntu0.2) ... Created symlink /etc/systemd/system/multi-user.target.wants/nghttpx.service → /lib/systemd/system/nghttpx.service. Setting up nghttp2-server (1.40.0-1ubuntu0.2) ... Setting up libjansson4:arm64 (2.12-1build1) ... Setting up libpsl-dev:arm64 (0.21.0-1ubuntu1) ... Setting up nghttp2-client (1.40.0-1ubuntu0.2) ... Setting up mariadb-common (1:10.3.38-0ubuntu0.20.04.1) ... update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up libldap2-dev:arm64 (2.4.49+dfsg-2ubuntu1.9) ... Setting up libgssrpc4:arm64 (1.17-6ubuntu4.4) ... Setting up zip (3.0-11build1) ... Setting up libunbound8:arm64 (1.9.4-2ubuntu1.4) ... Setting up libgmpxx4ldbl:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Setting up libgpg-error-dev (1.37-1) ... Setting up socat (1.7.3.3-2) ... Setting up libssl-dev:arm64 (1.1.1f-1ubuntu2.20) ... Setting up libmariadb3:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Setting up libassuan-dev (2.5.3-7ubuntu2) ... Setting up libgnutlsxx28:arm64 (3.6.13-2ubuntu1.9) ... Setting up libidn2-dev:arm64 (2.2.0-2) ... Setting up libdpkg-perl (1.19.7ubuntu3.2) ... Setting up liblzma-dev:arm64 (5.2.4-1ubuntu1.1) ... Setting up libcomerr2:arm64 (1.45.5-2ubuntu1.1) ... Setting up libkdb5-9:arm64 (1.17-6ubuntu4.4) ... Setting up libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ... Setting up python-pip-whl (20.0.2-5ubuntu1.10) ... Setting up libkadm5srv-mit11:arm64 (1.17-6ubuntu4.4) ... Setting up libc-dev-bin (2.31-0ubuntu9.14) ... Setting up libidn2-0-dev:arm64 (2.2.0-2) ... Setting up libtasn1-6-dev:arm64 (4.16.0-2) ... Setting up python3-appdirs (1.4.3-2.1) ... Setting up libp11-kit-dev:arm64 (0.23.20-1ubuntu0.1) ... Setting up libkadm5clnt-mit11:arm64 (1.17-6ubuntu4.4) ... Setting up libgnutls-dane0:arm64 (3.6.13-2ubuntu1.9) ... Setting up libgmp-dev:arm64 (2:6.2.0+dfsg-4ubuntu0.1) ... Setting up nettle-dev:arm64 (3.5.1+really3.5.1-2ubuntu0.2) ... Setting up nghttp2 (1.40.0-1ubuntu0.2) ... Setting up python3-virtualenv (20.0.17-1ubuntu0.4) ... Setting up virtualenv (20.0.17-1ubuntu0.4) ... Setting up pkg-config (0.29.1-0ubuntu4) ... Setting up libc6-dev:arm64 (2.31-0ubuntu9.14) ... Setting up libgnutls28-dev:arm64 (3.6.13-2ubuntu1.9) ... Setting up libnghttp2-dev (1.40.0-1ubuntu0.2) ... Setting up libattr1-dev:arm64 (1:2.4.48-5) ... Setting up libgcrypt20-dev (1.8.5-5ubuntu1.1) ... Setting up comerr-dev:arm64 (2.1-1.45.5-2ubuntu1.1) ... Setting up libgpgme-dev (1.13.1-7ubuntu2.1) ... Setting up zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ... Setting up krb5-multidev:arm64 (1.17-6ubuntu4.4) ... Setting up libkrb5-dev:arm64 (1.17-6ubuntu4.4) ... Setting up librtmp-dev:arm64 (2.4+20151223.gitfa8646d.1-2build1) ... Setting up libmariadb-dev (1:10.3.38-0ubuntu0.20.04.1) ... Setting up libmariadbclient-dev:arm64 (1:10.3.38-0ubuntu0.20.04.1) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for install-info (6.7.0.dfsg.2-5) ... Processing triggers for mime-support (3.64ubuntu1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Processing triggers for systemd (245.4-4ubuntu3.22) ... Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: binutils binutils-aarch64-linux-gnu binutils-common build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libexpat1-dev libfakeroot libgcc-9-dev libgomp1 libisl22 libitm1 liblsan0 libmpc3 libpython3-dev libpython3.8-dev libstdc++-9-dev libtsan0 libubsan1 make python3-dev python3-wheel python3.8-dev Suggested packages: binutils-doc cpp-doc gcc-9-locales debian-keyring gcc-9-doc gcc-multilib autoconf automake libtool flex bison gdb gcc-doc libstdc++-9-doc make-doc The following NEW packages will be installed: binutils binutils-aarch64-linux-gnu binutils-common build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libexpat1-dev libfakeroot libgcc-9-dev libgomp1 libisl22 libitm1 liblsan0 libmpc3 libpython3-dev libpython3.8-dev libstdc++-9-dev libtsan0 libubsan1 make python3-dev python3-pip python3-wheel python3.8-dev 0 upgraded, 40 newly installed, 0 to remove and 0 not upgraded. Need to get 37.6 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils-common arm64 2.34-6ubuntu1.7 [207 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libbinutils arm64 2.34-6ubuntu1.7 [475 kB] Get:3 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libctf-nobfd0 arm64 2.34-6ubuntu1.7 [44.6 kB] Get:4 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libctf0 arm64 2.34-6ubuntu1.7 [43.2 kB] Get:5 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.34-6ubuntu1.7 [1,987 kB] Get:6 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 binutils arm64 2.34-6ubuntu1.7 [3,360 B] Get:7 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 gcc-9-base arm64 9.4.0-1ubuntu1~20.04.2 [18.9 kB] Get:8 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libisl22 arm64 0.22.1-1 [537 kB] Get:9 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libmpc3 arm64 1.1.0-1 [37.2 kB] Get:10 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 cpp-9 arm64 9.4.0-1ubuntu1~20.04.2 [5,985 kB] Get:11 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 cpp arm64 4:9.3.0-1ubuntu2 [27.6 kB] Get:12 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libcc1-0 arm64 10.5.0-1ubuntu1~20.04 [46.2 kB] Get:13 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgomp1 arm64 10.5.0-1ubuntu1~20.04 [93.5 kB] Get:14 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libitm1 arm64 10.5.0-1ubuntu1~20.04 [24.1 kB] Get:15 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libatomic1 arm64 10.5.0-1ubuntu1~20.04 [9,808 B] Get:16 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libasan5 arm64 9.4.0-1ubuntu1~20.04.2 [2,690 kB] Get:17 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 liblsan0 arm64 10.5.0-1ubuntu1~20.04 [800 kB] Get:18 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libtsan0 arm64 10.5.0-1ubuntu1~20.04 [1,972 kB] Get:19 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libubsan1 arm64 10.5.0-1ubuntu1~20.04 [765 kB] Get:20 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libgcc-9-dev arm64 9.4.0-1ubuntu1~20.04.2 [920 kB] Get:21 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 gcc-9 arm64 9.4.0-1ubuntu1~20.04.2 [6,736 kB] Get:22 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 gcc arm64 4:9.3.0-1ubuntu2 [5,228 B] Get:23 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libstdc++-9-dev arm64 9.4.0-1ubuntu1~20.04.2 [1,687 kB] Get:24 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 g++-9 arm64 9.4.0-1ubuntu1~20.04.2 [6,843 kB] Get:25 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 g++ arm64 4:9.3.0-1ubuntu2 [1,592 B] Get:26 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 make arm64 4.2.1-1.2 [154 kB] Get:27 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 dpkg-dev all 1.19.7ubuntu3.2 [679 kB] Get:28 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 build-essential arm64 12.8ubuntu1.1 [4,664 B] Get:29 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libfakeroot arm64 1.24-1 [26.0 kB] Get:30 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 fakeroot arm64 1.24-1 [61.9 kB] Get:31 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-diff-perl all 1.19.03-2 [46.6 kB] Get:32 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6 [11.1 kB] Get:33 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:34 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libexpat1-dev arm64 2.2.9-1ubuntu0.6 [104 kB] Get:35 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 libpython3.8-dev arm64 3.8.10-0ubuntu1~20.04.9 [3,758 kB] Get:36 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libpython3-dev arm64 3.8.2-0ubuntu2 [7,236 B] Get:37 https://mirror.hetzner.com/ubuntu/packages focal-updates/main arm64 python3.8-dev arm64 3.8.10-0ubuntu1~20.04.9 [514 kB] Get:38 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 python3-dev arm64 3.8.2-0ubuntu2 [1,212 B] Get:39 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-wheel all 0.34.2-1ubuntu0.1 [23.9 kB] Get:40 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3-pip all 20.0.2-5ubuntu1.10 [231 kB] Fetched 37.6 MB in 0s (84.7 MB/s) Extracting templates from packages: 100% Selecting previously unselected package binutils-common:arm64. (Reading database ... 47825 files and directories currently installed.) Preparing to unpack .../00-binutils-common_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils-common:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libbinutils:arm64. Preparing to unpack .../01-libbinutils_2.34-6ubuntu1.7_arm64.deb ... Unpacking libbinutils:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libctf-nobfd0:arm64. Preparing to unpack .../02-libctf-nobfd0_2.34-6ubuntu1.7_arm64.deb ... Unpacking libctf-nobfd0:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package libctf0:arm64. Preparing to unpack .../03-libctf0_2.34-6ubuntu1.7_arm64.deb ... Unpacking libctf0:arm64 (2.34-6ubuntu1.7) ... Selecting previously unselected package binutils-aarch64-linux-gnu. Preparing to unpack .../04-binutils-aarch64-linux-gnu_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils-aarch64-linux-gnu (2.34-6ubuntu1.7) ... Selecting previously unselected package binutils. Preparing to unpack .../05-binutils_2.34-6ubuntu1.7_arm64.deb ... Unpacking binutils (2.34-6ubuntu1.7) ... Selecting previously unselected package gcc-9-base:arm64. Preparing to unpack .../06-gcc-9-base_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking gcc-9-base:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package libisl22:arm64. Preparing to unpack .../07-libisl22_0.22.1-1_arm64.deb ... Unpacking libisl22:arm64 (0.22.1-1) ... Selecting previously unselected package libmpc3:arm64. Preparing to unpack .../08-libmpc3_1.1.0-1_arm64.deb ... Unpacking libmpc3:arm64 (1.1.0-1) ... Selecting previously unselected package cpp-9. Preparing to unpack .../09-cpp-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking cpp-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package cpp. Preparing to unpack .../10-cpp_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking cpp (4:9.3.0-1ubuntu2) ... Selecting previously unselected package libcc1-0:arm64. Preparing to unpack .../11-libcc1-0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libcc1-0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libgomp1:arm64. Preparing to unpack .../12-libgomp1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libgomp1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libitm1:arm64. Preparing to unpack .../13-libitm1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libitm1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libatomic1:arm64. Preparing to unpack .../14-libatomic1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libatomic1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libasan5:arm64. Preparing to unpack .../15-libasan5_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libasan5:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package liblsan0:arm64. Preparing to unpack .../16-liblsan0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking liblsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libtsan0:arm64. Preparing to unpack .../17-libtsan0_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libtsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libubsan1:arm64. Preparing to unpack .../18-libubsan1_10.5.0-1ubuntu1~20.04_arm64.deb ... Unpacking libubsan1:arm64 (10.5.0-1ubuntu1~20.04) ... Selecting previously unselected package libgcc-9-dev:arm64. Preparing to unpack .../19-libgcc-9-dev_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libgcc-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package gcc-9. Preparing to unpack .../20-gcc-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking gcc-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package gcc. Preparing to unpack .../21-gcc_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking gcc (4:9.3.0-1ubuntu2) ... Selecting previously unselected package libstdc++-9-dev:arm64. Preparing to unpack .../22-libstdc++-9-dev_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking libstdc++-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package g++-9. Preparing to unpack .../23-g++-9_9.4.0-1ubuntu1~20.04.2_arm64.deb ... Unpacking g++-9 (9.4.0-1ubuntu1~20.04.2) ... Selecting previously unselected package g++. Preparing to unpack .../24-g++_4%3a9.3.0-1ubuntu2_arm64.deb ... Unpacking g++ (4:9.3.0-1ubuntu2) ... Selecting previously unselected package make. Preparing to unpack .../25-make_4.2.1-1.2_arm64.deb ... Unpacking make (4.2.1-1.2) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../26-dpkg-dev_1.19.7ubuntu3.2_all.deb ... Unpacking dpkg-dev (1.19.7ubuntu3.2) ... Selecting previously unselected package build-essential. Preparing to unpack .../27-build-essential_12.8ubuntu1.1_arm64.deb ... Unpacking build-essential (12.8ubuntu1.1) ... Selecting previously unselected package libfakeroot:arm64. Preparing to unpack .../28-libfakeroot_1.24-1_arm64.deb ... Unpacking libfakeroot:arm64 (1.24-1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../29-fakeroot_1.24-1_arm64.deb ... Unpacking fakeroot (1.24-1) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../30-libalgorithm-diff-perl_1.19.03-2_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-2) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../31-libalgorithm-diff-xs-perl_0.04-6_arm64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-6) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../32-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libexpat1-dev:arm64. Preparing to unpack .../33-libexpat1-dev_2.2.9-1ubuntu0.6_arm64.deb ... Unpacking libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ... Selecting previously unselected package libpython3.8-dev:arm64. Preparing to unpack .../34-libpython3.8-dev_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package libpython3-dev:arm64. Preparing to unpack .../35-libpython3-dev_3.8.2-0ubuntu2_arm64.deb ... Unpacking libpython3-dev:arm64 (3.8.2-0ubuntu2) ... Selecting previously unselected package python3.8-dev. Preparing to unpack .../36-python3.8-dev_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking python3.8-dev (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package python3-dev. Preparing to unpack .../37-python3-dev_3.8.2-0ubuntu2_arm64.deb ... Unpacking python3-dev (3.8.2-0ubuntu2) ... Selecting previously unselected package python3-wheel. Preparing to unpack .../38-python3-wheel_0.34.2-1ubuntu0.1_all.deb ... Unpacking python3-wheel (0.34.2-1ubuntu0.1) ... Selecting previously unselected package python3-pip. Preparing to unpack .../39-python3-pip_20.0.2-5ubuntu1.10_all.deb ... Unpacking python3-pip (20.0.2-5ubuntu1.10) ... Setting up libalgorithm-diff-perl (1.19.03-2) ... Setting up binutils-common:arm64 (2.34-6ubuntu1.7) ... Setting up libctf-nobfd0:arm64 (2.34-6ubuntu1.7) ... Setting up libgomp1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up python3-wheel (0.34.2-1ubuntu0.1) ... Setting up libfakeroot:arm64 (1.24-1) ... Setting up fakeroot (1.24-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode Setting up libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ... Setting up libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.9) ... Setting up make (4.2.1-1.2) ... Setting up libmpc3:arm64 (1.1.0-1) ... Setting up libatomic1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up python3-pip (20.0.2-5ubuntu1.10) ... Setting up python3.8-dev (3.8.10-0ubuntu1~20.04.9) ... Setting up libubsan1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libisl22:arm64 (0.22.1-1) ... Setting up libbinutils:arm64 (2.34-6ubuntu1.7) ... Setting up libalgorithm-diff-xs-perl (0.04-6) ... Setting up libcc1-0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up liblsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libitm1:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up gcc-9-base:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up libtsan0:arm64 (10.5.0-1ubuntu1~20.04) ... Setting up libctf0:arm64 (2.34-6ubuntu1.7) ... Setting up libpython3-dev:arm64 (3.8.2-0ubuntu2) ... Setting up binutils-aarch64-linux-gnu (2.34-6ubuntu1.7) ... Setting up binutils (2.34-6ubuntu1.7) ... Setting up dpkg-dev (1.19.7ubuntu3.2) ... Setting up libasan5:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up python3-dev (3.8.2-0ubuntu2) ... Setting up cpp-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up libgcc-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up cpp (4:9.3.0-1ubuntu2) ... Setting up gcc-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up libstdc++-9-dev:arm64 (9.4.0-1ubuntu1~20.04.2) ... Setting up gcc (4:9.3.0-1ubuntu2) ... Setting up g++-9 (9.4.0-1ubuntu1~20.04.2) ... Setting up g++ (4:9.3.0-1ubuntu2) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up build-essential (12.8ubuntu1.1) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... ln: failed to create symbolic link '/usr/bin/pip': File exists Reading package lists... Done Building dependency tree Reading state information... Done python3-dev is already the newest version (3.8.2-0ubuntu2). python3-dev set to manually installed. build-essential is already the newest version (12.8ubuntu1.1). build-essential set to manually installed. libssl-dev is already the newest version (1.1.1f-1ubuntu2.20). The following NEW packages will be installed: libffi-dev 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 53.5 kB of archives. After this operation, 278 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libffi-dev arm64 3.3-4 [53.5 kB] Fetched 53.5 kB in 0s (2,125 kB/s) Selecting previously unselected package libffi-dev:arm64. (Reading database ... 50043 files and directories currently installed.) Preparing to unpack .../libffi-dev_3.3-4_arm64.deb ... Unpacking libffi-dev:arm64 (3.3-4) ... Setting up libffi-dev:arm64 (3.3-4) ... Processing triggers for install-info (6.7.0.dfsg.2-5) ... Processing triggers for man-db (2.9.1-1) ... Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: python3.8-venv The following NEW packages will be installed: python3-venv python3.8-venv 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 6,676 B of archives. After this operation, 38.9 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 python3.8-venv arm64 3.8.10-0ubuntu1~20.04.9 [5,448 B] Get:2 https://mirror.hetzner.com/ubuntu/packages focal/universe arm64 python3-venv arm64 3.8.2-0ubuntu2 [1,228 B] Fetched 6,676 B in 0s (246 kB/s) Selecting previously unselected package python3.8-venv. (Reading database ... 50077 files and directories currently installed.) Preparing to unpack .../python3.8-venv_3.8.10-0ubuntu1~20.04.9_arm64.deb ... Unpacking python3.8-venv (3.8.10-0ubuntu1~20.04.9) ... Selecting previously unselected package python3-venv. Preparing to unpack .../python3-venv_3.8.2-0ubuntu2_arm64.deb ... Unpacking python3-venv (3.8.2-0ubuntu2) ... Setting up python3.8-venv (3.8.10-0ubuntu1~20.04.9) ... Setting up python3-venv (3.8.2-0ubuntu2) ... Processing triggers for man-db (2.9.1-1) ... Reading package lists... Done Building dependency tree Reading state information... Done cron is already the newest version (3.0pl1-136ubuntu1). The following packages will be REMOVED: iputils-ping The following NEW packages will be installed: inetutils-ping libidn11 0 upgraded, 2 newly installed, 1 to remove and 0 not upgraded. Need to get 103 kB of archives. After this operation, 486 kB of additional disk space will be used. Get:1 https://mirror.hetzner.com/ubuntu/packages focal/main arm64 libidn11 arm64 1.33-2.2ubuntu2 [45.3 kB] Get:2 https://mirror.hetzner.com/ubuntu/packages focal-updates/universe arm64 inetutils-ping arm64 2:1.9.4-11ubuntu0.2 [58.1 kB] Fetched 103 kB in 0s (3,874 kB/s) (Reading database ... 50086 files and directories currently installed.) Removing iputils-ping (3:20190709-3) ... Selecting previously unselected package libidn11:arm64. (Reading database ... 50076 files and directories currently installed.) Preparing to unpack .../libidn11_1.33-2.2ubuntu2_arm64.deb ... Unpacking libidn11:arm64 (1.33-2.2ubuntu2) ... Selecting previously unselected package inetutils-ping. Preparing to unpack .../inetutils-ping_2%3a1.9.4-11ubuntu0.2_arm64.deb ... Unpacking inetutils-ping (2:1.9.4-11ubuntu0.2) ... Setting up libidn11:arm64 (1.33-2.2ubuntu2) ... Setting up inetutils-ping (2:1.9.4-11ubuntu0.2) ... Processing triggers for man-db (2.9.1-1) ... Processing triggers for libc-bin (2.31-0ubuntu9.14) ... Reading package lists... Done Building dependency tree Reading state information... Done locales is already the newest version (2.31-0ubuntu9.14). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Generating locales (this might take a while)... en_US.UTF-8... done Generation complete. Collecting virtualenv==16.7.9 Downloading virtualenv-16.7.9-py2.py3-none-any.whl (3.4 MB) |████████████████████████████████| 3.4 MB 8.1 MB/s Installing collected packages: virtualenv Attempting uninstall: virtualenv Found existing installation: virtualenv 20.0.17 Not uninstalling virtualenv at /usr/lib/python3/dist-packages, outside environment /usr Can't uninstall 'virtualenv'. No files were found to uninstall. Successfully installed virtualenv-16.7.9 --2023-12-29 10:36:12-- https://raw.githubusercontent.com/usmannasir/cyberpanel/v2.3.4/requirments.txt Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 2606:50c0:8000::154, 2606:50c0:8002::154, 2606:50c0:8001::154, ... Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8000::154|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 1461 (1.4K) [text/plain] Saving to: ‘/usr/local/requirments.txt’ /usr/local/requirments.txt 100%[============================================================================>] 1.43K --.-KB/s in 0s 2023-12-29 10:36:12 (11.5 MB/s) - ‘/usr/local/requirments.txt’ saved [1461/1461] Already using interpreter /usr/bin/python3 Using base prefix '/usr' New python executable in /usr/local/CyberPanel/bin/python3 Also creating executable in /usr/local/CyberPanel/bin/python Installing setuptools, pip, wheel... done. Collecting acme==1.9.0 (from -r /usr/local/requirments.txt (line 1)) Downloading acme-1.9.0-py2.py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.9/42.9 kB 5.2 MB/s eta 0:00:00 Collecting asgiref==3.3.1 (from -r /usr/local/requirments.txt (line 2)) Downloading asgiref-3.3.1-py3-none-any.whl (19 kB) Collecting asn1crypto==1.4.0 (from -r /usr/local/requirments.txt (line 3)) Downloading asn1crypto-1.4.0-py2.py3-none-any.whl (104 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.0/104.0 kB 11.7 MB/s eta 0:00:00 Collecting Babel==2.8.0 (from -r /usr/local/requirments.txt (line 4)) Downloading Babel-2.8.0-py2.py3-none-any.whl (8.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.6/8.6 MB 116.9 MB/s eta 0:00:00 Collecting backports.ssl-match-hostname==3.7.0.1 (from -r /usr/local/requirments.txt (line 5)) Downloading backports.ssl_match_hostname-3.7.0.1.tar.gz (5.7 kB) Preparing metadata (setup.py) ... done Collecting bcrypt==3.2.0 (from -r /usr/local/requirments.txt (line 6)) Downloading bcrypt-3.2.0-cp36-abi3-manylinux2014_aarch64.whl (56 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.8/56.8 kB 9.0 MB/s eta 0:00:00 Collecting beautifulsoup4==4.9.3 (from -r /usr/local/requirments.txt (line 7)) Downloading beautifulsoup4-4.9.3-py3-none-any.whl (115 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 115.8/115.8 kB 11.1 MB/s eta 0:00:00 Collecting boto3==1.18.26 (from -r /usr/local/requirments.txt (line 8)) Downloading boto3-1.18.26-py3-none-any.whl (131 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 131.6/131.6 kB 19.8 MB/s eta 0:00:00 Collecting botocore==1.21.26 (from -r /usr/local/requirments.txt (line 9)) Downloading botocore-1.21.26-py3-none-any.whl (7.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 147.3 MB/s eta 0:00:00 Collecting cachetools==4.1.1 (from -r /usr/local/requirments.txt (line 10)) Downloading cachetools-4.1.1-py3-none-any.whl (10 kB) Collecting certifi==2020.11.8 (from -r /usr/local/requirments.txt (line 11)) Downloading certifi-2020.11.8-py2.py3-none-any.whl (155 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.4/155.4 kB 22.2 MB/s eta 0:00:00 Collecting cffi==1.14.3 (from -r /usr/local/requirments.txt (line 12)) Downloading cffi-1.14.3-cp38-cp38-manylinux2014_aarch64.whl (208 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 208.2/208.2 kB 35.8 MB/s eta 0:00:00 Collecting chardet==3.0.4 (from -r /usr/local/requirments.txt (line 13)) Downloading chardet-3.0.4-py2.py3-none-any.whl (133 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.4/133.4 kB 19.4 MB/s eta 0:00:00 Collecting cloudflare==2.8.13 (from -r /usr/local/requirments.txt (line 14)) Downloading cloudflare-2.8.13.tar.gz (65 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.6/65.6 kB 10.9 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting ConfigArgParse==1.2.3 (from -r /usr/local/requirments.txt (line 15)) Downloading ConfigArgParse-1.2.3.tar.gz (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.7/42.7 kB 6.4 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting configobj==5.0.6 (from -r /usr/local/requirments.txt (line 16)) Downloading configobj-5.0.6.tar.gz (33 kB) Preparing metadata (setup.py) ... done Collecting cryptography==3.2.1 (from -r /usr/local/requirments.txt (line 17)) Downloading cryptography-3.2.1-cp35-abi3-manylinux2014_aarch64.whl (2.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/2.6 MB 111.4 MB/s eta 0:00:00 Collecting decorator==4.4.2 (from -r /usr/local/requirments.txt (line 18)) Downloading decorator-4.4.2-py2.py3-none-any.whl (9.2 kB) Collecting Django==3.1.3 (from -r /usr/local/requirments.txt (line 19)) Downloading Django-3.1.3-py3-none-any.whl (7.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 121.7 MB/s eta 0:00:00 Collecting docker==4.3.1 (from -r /usr/local/requirments.txt (line 20)) Downloading docker-4.3.1-py2.py3-none-any.whl (145 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 145.2/145.2 kB 17.8 MB/s eta 0:00:00 Collecting docker-pycreds==0.4.0 (from -r /usr/local/requirments.txt (line 21)) Downloading docker_pycreds-0.4.0-py2.py3-none-any.whl (9.0 kB) Collecting docutils==0.16 (from -r /usr/local/requirments.txt (line 22)) Downloading docutils-0.16-py2.py3-none-any.whl (548 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 548.2/548.2 kB 50.3 MB/s eta 0:00:00 Collecting enum34==1.1.10 (from -r /usr/local/requirments.txt (line 23)) Downloading enum34-1.1.10-py3-none-any.whl (11 kB) Collecting filelock==3.0.12 (from -r /usr/local/requirments.txt (line 24)) Downloading filelock-3.0.12-py3-none-any.whl (7.6 kB) Collecting funcsigs==1.0.2 (from -r /usr/local/requirments.txt (line 25)) Downloading funcsigs-1.0.2-py2.py3-none-any.whl (17 kB) Collecting future==0.18.2 (from -r /usr/local/requirments.txt (line 26)) Downloading future-0.18.2.tar.gz (829 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 829.2/829.2 kB 54.3 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting google-api-core==1.23.0 (from -r /usr/local/requirments.txt (line 27)) Downloading google_api_core-1.23.0-py2.py3-none-any.whl (91 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 92.0/92.0 kB 12.5 MB/s eta 0:00:00 Collecting google-api-python-client==1.12.5 (from -r /usr/local/requirments.txt (line 28)) Downloading google_api_python_client-1.12.5-py2.py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.4/61.4 kB 9.3 MB/s eta 0:00:00 Collecting google-auth==1.23.0 (from -r /usr/local/requirments.txt (line 29)) Downloading google_auth-1.23.0-py2.py3-none-any.whl (114 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.7/114.7 kB 19.7 MB/s eta 0:00:00 Collecting google-auth-httplib2==0.0.4 (from -r /usr/local/requirments.txt (line 30)) Downloading google_auth_httplib2-0.0.4-py2.py3-none-any.whl (9.1 kB) Collecting google-auth-oauthlib==0.4.2 (from -r /usr/local/requirments.txt (line 31)) Downloading google_auth_oauthlib-0.4.2-py2.py3-none-any.whl (18 kB) Collecting googleapis-common-protos==1.52.0 (from -r /usr/local/requirments.txt (line 32)) Downloading googleapis_common_protos-1.52.0-py2.py3-none-any.whl (100 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.2/100.2 kB 16.8 MB/s eta 0:00:00 Collecting httplib2==0.18.1 (from -r /usr/local/requirments.txt (line 33)) Downloading httplib2-0.18.1-py3-none-any.whl (95 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 95.3/95.3 kB 14.5 MB/s eta 0:00:00 Collecting idna==2.10 (from -r /usr/local/requirments.txt (line 34)) Downloading idna-2.10-py2.py3-none-any.whl (58 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.8/58.8 kB 10.3 MB/s eta 0:00:00 Collecting ipaddress==1.0.23 (from -r /usr/local/requirments.txt (line 35)) Downloading ipaddress-1.0.23-py2.py3-none-any.whl (18 kB) Collecting IPy==1.0 (from -r /usr/local/requirments.txt (line 36)) Downloading IPy-1.00.tar.gz (35 kB) Preparing metadata (setup.py) ... done Collecting Jinja2==2.11.3 (from -r /usr/local/requirments.txt (line 37)) Downloading Jinja2-2.11.3-py2.py3-none-any.whl (125 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 125.7/125.7 kB 21.0 MB/s eta 0:00:00 Collecting jmespath==0.10.0 (from -r /usr/local/requirments.txt (line 38)) Downloading jmespath-0.10.0-py2.py3-none-any.whl (24 kB) Collecting josepy==1.5.0 (from -r /usr/local/requirments.txt (line 39)) Downloading josepy-1.5.0-py2.py3-none-any.whl (57 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.8/57.8 kB 10.0 MB/s eta 0:00:00 Collecting jsonlines==1.2.0 (from -r /usr/local/requirments.txt (line 40)) Downloading jsonlines-1.2.0-py2.py3-none-any.whl (7.6 kB) Collecting jsonpatch==1.26 (from -r /usr/local/requirments.txt (line 41)) Downloading jsonpatch-1.26-py2.py3-none-any.whl (11 kB) Collecting jsonpointer==2.0 (from -r /usr/local/requirments.txt (line 42)) Downloading jsonpointer-2.0-py2.py3-none-any.whl (7.6 kB) Collecting MarkupSafe==1.1.1 (from -r /usr/local/requirments.txt (line 43)) Downloading MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl (33 kB) Collecting mock==4.0.2 (from -r /usr/local/requirments.txt (line 44)) Downloading mock-4.0.2-py3-none-any.whl (28 kB) Collecting mysqlclient==2.0.1 (from -r /usr/local/requirments.txt (line 45)) Downloading mysqlclient-2.0.1.tar.gz (87 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.8/87.8 kB 13.2 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting oauthlib==3.1.0 (from -r /usr/local/requirments.txt (line 46)) Downloading oauthlib-3.1.0-py2.py3-none-any.whl (147 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.4/147.4 kB 23.0 MB/s eta 0:00:00 Collecting paramiko==2.7.2 (from -r /usr/local/requirments.txt (line 47)) Downloading paramiko-2.7.2-py2.py3-none-any.whl (206 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 206.8/206.8 kB 30.0 MB/s eta 0:00:00 Collecting parsedatetime==2.6 (from -r /usr/local/requirments.txt (line 48)) Downloading parsedatetime-2.6-py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.5/42.5 kB 6.5 MB/s eta 0:00:00 Collecting pbr==5.5.1 (from -r /usr/local/requirments.txt (line 49)) Downloading pbr-5.5.1-py2.py3-none-any.whl (106 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.2/106.2 kB 16.8 MB/s eta 0:00:00 Collecting pysftp (from -r /usr/local/requirments.txt (line 50)) Downloading pysftp-0.2.9.tar.gz (25 kB) Preparing metadata (setup.py) ... done Collecting pexpect==4.8.0 (from -r /usr/local/requirments.txt (line 51)) Downloading pexpect-4.8.0-py2.py3-none-any.whl (59 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.0/59.0 kB 7.8 MB/s eta 0:00:00 Collecting prettytable==1.0.1 (from -r /usr/local/requirments.txt (line 52)) Downloading prettytable-1.0.1-py2.py3-none-any.whl (22 kB) Collecting protobuf==3.13.0 (from -r /usr/local/requirments.txt (line 53)) Downloading protobuf-3.13.0-py2.py3-none-any.whl (438 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 438.4/438.4 kB 47.0 MB/s eta 0:00:00 Collecting psutil==5.7.3 (from -r /usr/local/requirments.txt (line 54)) Downloading psutil-5.7.3.tar.gz (465 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 465.6/465.6 kB 51.6 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting ptyprocess==0.6.0 (from -r /usr/local/requirments.txt (line 55)) Downloading ptyprocess-0.6.0-py2.py3-none-any.whl (39 kB) Collecting py3dns==3.2.1 (from -r /usr/local/requirments.txt (line 56)) Downloading py3dns-3.2.1.tar.gz (30 kB) Preparing metadata (setup.py) ... done Collecting pyasn1==0.4.8 (from -r /usr/local/requirments.txt (line 57)) Downloading pyasn1-0.4.8-py2.py3-none-any.whl (77 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 77.1/77.1 kB 12.8 MB/s eta 0:00:00 Collecting pyasn1-modules==0.2.8 (from -r /usr/local/requirments.txt (line 58)) Downloading pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.3/155.3 kB 25.2 MB/s eta 0:00:00 Collecting pycparser==2.20 (from -r /usr/local/requirments.txt (line 59)) Downloading pycparser-2.20-py2.py3-none-any.whl (112 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.0/112.0 kB 16.8 MB/s eta 0:00:00 Collecting pygpgme==0.3 (from -r /usr/local/requirments.txt (line 60)) Downloading pygpgme-0.3.tar.gz (50 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.1/50.1 kB 5.1 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting PyNaCl==1.4.0 (from -r /usr/local/requirments.txt (line 61)) Downloading PyNaCl-1.4.0.tar.gz (3.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 134.0 MB/s eta 0:00:00 Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting pyOpenSSL==19.1.0 (from -r /usr/local/requirments.txt (line 62)) Downloading pyOpenSSL-19.1.0-py2.py3-none-any.whl (53 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.7/53.7 kB 7.0 MB/s eta 0:00:00 Collecting pyotp==2.4.1 (from -r /usr/local/requirments.txt (line 63)) Downloading pyotp-2.4.1-py2.py3-none-any.whl (11 kB) Collecting pyRFC3339==1.1 (from -r /usr/local/requirments.txt (line 64)) Downloading pyRFC3339-1.1-py2.py3-none-any.whl (5.7 kB) Collecting python-dateutil==2.8.1 (from -r /usr/local/requirments.txt (line 65)) Downloading python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 227.2/227.2 kB 28.8 MB/s eta 0:00:00 Collecting pytz==2020.4 (from -r /usr/local/requirments.txt (line 66)) Downloading pytz-2020.4-py2.py3-none-any.whl (509 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.0/509.0 kB 44.6 MB/s eta 0:00:00 Collecting pyudev==0.22.0 (from -r /usr/local/requirments.txt (line 67)) Downloading pyudev-0.22.0.tar.gz (85 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 85.1/85.1 kB 10.5 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting pyxattr==0.7.1 (from -r /usr/local/requirments.txt (line 68)) Downloading pyxattr-0.7.1.tar.gz (30 kB) Preparing metadata (setup.py) ... done Collecting requests==2.26.0 (from -r /usr/local/requirments.txt (line 69)) Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.3/62.3 kB 7.6 MB/s eta 0:00:00 Collecting requests-file==1.5.1 (from -r /usr/local/requirments.txt (line 70)) Downloading requests_file-1.5.1-py2.py3-none-any.whl (3.7 kB) Collecting requests-oauthlib==1.3.0 (from -r /usr/local/requirments.txt (line 71)) Downloading requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB) Collecting requests-toolbelt==0.9.1 (from -r /usr/local/requirments.txt (line 72)) Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.3/54.3 kB 9.1 MB/s eta 0:00:00 Collecting rsa==4.6 (from -r /usr/local/requirments.txt (line 73)) Downloading rsa-4.6-py3-none-any.whl (47 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.4/47.4 kB 7.5 MB/s eta 0:00:00 Collecting s3transfer==0.5.0 (from -r /usr/local/requirments.txt (line 74)) Downloading s3transfer-0.5.0-py3-none-any.whl (79 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.2/79.2 kB 12.3 MB/s eta 0:00:00 Collecting six==1.15.0 (from -r /usr/local/requirments.txt (line 75)) Downloading six-1.15.0-py2.py3-none-any.whl (10 kB) Collecting soupsieve==2.0.1 (from -r /usr/local/requirments.txt (line 76)) Downloading soupsieve-2.0.1-py3-none-any.whl (32 kB) Collecting sqlparse==0.4.2 (from -r /usr/local/requirments.txt (line 77)) Downloading sqlparse-0.4.2-py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 kB 6.1 MB/s eta 0:00:00 Collecting tldextract==3.0.2 (from -r /usr/local/requirments.txt (line 78)) Downloading tldextract-3.0.2-py2.py3-none-any.whl (86 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 86.4/86.4 kB 13.5 MB/s eta 0:00:00 Collecting tornado==6.1 (from -r /usr/local/requirments.txt (line 79)) Downloading tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl (427 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 427.9/427.9 kB 42.1 MB/s eta 0:00:00 Collecting uritemplate==3.0.1 (from -r /usr/local/requirments.txt (line 80)) Downloading uritemplate-3.0.1-py2.py3-none-any.whl (15 kB) Collecting urllib3==1.26.5 (from -r /usr/local/requirments.txt (line 81)) Downloading urllib3-1.26.5-py2.py3-none-any.whl (138 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.1/138.1 kB 20.0 MB/s eta 0:00:00 Collecting validators==0.18.1 (from -r /usr/local/requirments.txt (line 82)) Downloading validators-0.18.1-py3-none-any.whl (19 kB) Collecting wcwidth==0.2.5 (from -r /usr/local/requirments.txt (line 83)) Downloading wcwidth-0.2.5-py2.py3-none-any.whl (30 kB) Collecting websocket-client==0.57.0 (from -r /usr/local/requirments.txt (line 84)) Downloading websocket_client-0.57.0-py2.py3-none-any.whl (200 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 200.9/200.9 kB 28.4 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /usr/local/CyberPanel/lib/python3.8/site-packages (from acme==1.9.0->-r /usr/local/requirments.txt (line 1)) (69.0.3) Collecting pyyaml (from cloudflare==2.8.13->-r /usr/local/requirments.txt (line 14)) Downloading PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.metadata (2.1 kB) Collecting charset-normalizer~=2.0.0 (from requests==2.26.0->-r /usr/local/requirments.txt (line 69)) Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Downloading PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (723 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 723.8/723.8 kB 63.2 MB/s eta 0:00:00 Building wheels for collected packages: backports.ssl-match-hostname, cloudflare, ConfigArgParse, configobj, future, IPy, mysqlclient, psutil, py3dns, pygpgme, PyNaCl, pyudev, pyxattr, pysftp Building wheel for backports.ssl-match-hostname (setup.py) ... done Created wheel for backports.ssl-match-hostname: filename=backports.ssl_match_hostname-3.7.0.1-py2.py3-none-any.whl size=6731 sha256=52f1b50822cfc510dd726c037eca6b4d47a395d891ae23ee0b69daddc7d3da85 Stored in directory: /root/.cache/pip/wheels/20/46/1e/7f787654ba5b7900e9a3be46a6fd89a99da05f4cefb655d3d6 Building wheel for cloudflare (setup.py) ... done Created wheel for cloudflare: filename=cloudflare-2.8.13-py3-none-any.whl size=57530 sha256=6137759cdba00c954633a3ff1050e85d2f00272c05cb6eb263b58910a688b516 Stored in directory: /root/.cache/pip/wheels/db/5d/25/fb3ea0e47770e7f65a45835670720ae1a3d48df3bafa904fbc Building wheel for ConfigArgParse (setup.py) ... done Created wheel for ConfigArgParse: filename=ConfigArgParse-1.2.3-py3-none-any.whl size=19325 sha256=6a47ac686d7f17aa3acb31b4cb567c2c64d486567b2d2076c8ee0132a8048f98 Stored in directory: /root/.cache/pip/wheels/b4/12/fe/1e4628f6ec22a9580d9e8fbef23df7a03948a1edde0821d7f5 Building wheel for configobj (setup.py) ... done Created wheel for configobj: filename=configobj-5.0.6-py3-none-any.whl size=34525 sha256=042c755374111b98f5aff55af36f6e6191a8d5ac47f24f2b00e1e73b71598ee4 Stored in directory: /root/.cache/pip/wheels/34/2a/24/a490264ae9041fd48f778ff393526572c80bb498ddecb07ea5 Building wheel for future (setup.py) ... done Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491058 sha256=2952419bf6f75a98dac6115de262ab7e4785e76cd001fef3321f4948666584d5 Stored in directory: /root/.cache/pip/wheels/8e/70/28/3d6ccd6e315f65f245da085482a2e1c7d14b90b30f239e2cf4 Building wheel for IPy (setup.py) ... done Created wheel for IPy: filename=IPy-1.0-py3-none-any.whl size=21145 sha256=0e1a747e6d4407ebd2eb562aa6921eaf6fe20f887d512c709aa32043e9b18d8a Stored in directory: /root/.cache/pip/wheels/c0/d4/6b/a2f002ae5039ff6698980ffa0fe0a0ede66765bea8add246f7 Building wheel for mysqlclient (setup.py) ... done Created wheel for mysqlclient: filename=mysqlclient-2.0.1-cp38-cp38-linux_aarch64.whl size=115264 sha256=fa6b785d14a1d58c489ab814fed9b9ba739c30be0048919ee2937c1b228d7c67 Stored in directory: /root/.cache/pip/wheels/b9/b0/63/fb1bf1bfddaf244627c94fa2eb59e706d1170f4ca4f8b72d59 Building wheel for psutil (setup.py) ... done Created wheel for psutil: filename=psutil-5.7.3-cp38-cp38-linux_aarch64.whl size=295876 sha256=c6d44fcc0fd684be618366ddc37dd3b968dbee736f3faf392e3844384aa32b44 Stored in directory: /root/.cache/pip/wheels/f6/59/c2/38111ef4c354088a156bc95fbeb5396c0cac91a0f62f7158b9 Building wheel for py3dns (setup.py) ... done Created wheel for py3dns: filename=py3dns-3.2.1-py3-none-any.whl size=20836 sha256=1831e168ee1f395f78b5bb1de65e15619346b2ebbcceb44ebe2c4bb048b9e600 Stored in directory: /root/.cache/pip/wheels/04/6c/59/20cadeb949daa0f469951136be59a742cef8de62cef2e8d288 Building wheel for pygpgme (setup.py) ... done Created wheel for pygpgme: filename=pygpgme-0.3-cp38-cp38-linux_aarch64.whl size=132605 sha256=37a3966979a0465f2e1fa12ee3e970395dab9d645d4610e747ac9a8389ba10a1 Stored in directory: /root/.cache/pip/wheels/a1/22/15/a13bf2d75ac301066b823bc8ac86ebadd1663e61f62b18f066 Building wheel for PyNaCl (pyproject.toml) ... done Created wheel for PyNaCl: filename=PyNaCl-1.4.0-cp38-cp38-linux_aarch64.whl size=556608 sha256=1cb029f84e9a452b30e4a7bf1fbcae49f3f7e694608fd3c127d64ad3b38f73fb Stored in directory: /root/.cache/pip/wheels/10/23/c0/f42041fbad88c47b268b6119919130b407b48e24b41a349684 Building wheel for pyudev (setup.py) ... done Created wheel for pyudev: filename=pyudev-0.22.0-py3-none-any.whl size=63482 sha256=06d40cd75e6a202218d9a20d6d9aee7e1d2cb64d6b670a072de0489dd2f6c80b Stored in directory: /root/.cache/pip/wheels/8b/d1/11/6a9855487e4bba54c63dfb07a09505787d50a5e27f90b0af33 Building wheel for pyxattr (setup.py) ... done Created wheel for pyxattr: filename=pyxattr-0.7.1-cp38-cp38-linux_aarch64.whl size=45277 sha256=67db3a18b5ef971976e342017c3adb3afae6accb8b844bf1746bd616ad200947 Stored in directory: /root/.cache/pip/wheels/03/d3/c1/9807f738ac9923269599cb2c9bb0a01ba3af79790b6adb5e4f Building wheel for pysftp (setup.py) ... done Created wheel for pysftp: filename=pysftp-0.2.9-py3-none-any.whl size=15496 sha256=4c8cb002687af1ac178623ea4c2815036e977105d9afbca0b939f90e4c334c2a Stored in directory: /root/.cache/pip/wheels/2b/ca/f6/862aaecc17fb92230cad02822949e8856d741e5c12ef55fb10 Successfully built backports.ssl-match-hostname cloudflare ConfigArgParse configobj future IPy mysqlclient psutil py3dns pygpgme PyNaCl pyudev pyxattr pysftp Installing collected packages: wcwidth, pytz, pyotp, pygpgme, pyasn1, py3dns, ptyprocess, parsedatetime, IPy, ipaddress, httplib2, funcsigs, filelock, enum34, chardet, certifi, backports.ssl-match-hostname, asn1crypto, urllib3, uritemplate, tornado, sqlparse, soupsieve, six, rsa, pyyaml, pyxattr, pyRFC3339, pycparser, pyasn1-modules, psutil, prettytable, pexpect, pbr, oauthlib, mysqlclient, mock, MarkupSafe, jsonpointer, jmespath, idna, future, docutils, decorator, ConfigArgParse, charset-normalizer, cachetools, Babel, asgiref, websocket-client, validators, requests, pyudev, python-dateutil, protobuf, jsonpatch, jsonlines, Jinja2, google-auth, docker-pycreds, Django, configobj, cffi, beautifulsoup4, requests-toolbelt, requests-oauthlib, requests-file, PyNaCl, googleapis-common-protos, google-auth-httplib2, docker, cryptography, cloudflare, botocore, bcrypt, tldextract, s3transfer, pyOpenSSL, paramiko, google-auth-oauthlib, google-api-core, pysftp, josepy, google-api-python-client, boto3, acme Successfully installed Babel-2.8.0 ConfigArgParse-1.2.3 Django-3.1.3 IPy-1.0 Jinja2-2.11.3 MarkupSafe-1.1.1 PyNaCl-1.4.0 acme-1.9.0 asgiref-3.3.1 asn1crypto-1.4.0 backports.ssl-match-hostname-3.7.0.1 bcrypt-3.2.0 beautifulsoup4-4.9.3 boto3-1.18.26 botocore-1.21.26 cachetools-4.1.1 certifi-2020.11.8 cffi-1.14.3 chardet-3.0.4 charset-normalizer-2.0.12 cloudflare-2.8.13 configobj-5.0.6 cryptography-3.2.1 decorator-4.4.2 docker-4.3.1 docker-pycreds-0.4.0 docutils-0.16 enum34-1.1.10 filelock-3.0.12 funcsigs-1.0.2 future-0.18.2 google-api-core-1.23.0 google-api-python-client-1.12.5 google-auth-1.23.0 google-auth-httplib2-0.0.4 google-auth-oauthlib-0.4.2 googleapis-common-protos-1.52.0 httplib2-0.18.1 idna-2.10 ipaddress-1.0.23 jmespath-0.10.0 josepy-1.5.0 jsonlines-1.2.0 jsonpatch-1.26 jsonpointer-2.0 mock-4.0.2 mysqlclient-2.0.1 oauthlib-3.1.0 paramiko-2.7.2 parsedatetime-2.6 pbr-5.5.1 pexpect-4.8.0 prettytable-1.0.1 protobuf-3.13.0 psutil-5.7.3 ptyprocess-0.6.0 py3dns-3.2.1 pyOpenSSL-19.1.0 pyRFC3339-1.1 pyasn1-0.4.8 pyasn1-modules-0.2.8 pycparser-2.20 pygpgme-0.3 pyotp-2.4.1 pysftp-0.2.9 python-dateutil-2.8.1 pytz-2020.4 pyudev-0.22.0 pyxattr-0.7.1 pyyaml-6.0.1 requests-2.26.0 requests-file-1.5.1 requests-oauthlib-1.3.0 requests-toolbelt-0.9.1 rsa-4.6 s3transfer-0.5.0 six-1.15.0 soupsieve-2.0.1 sqlparse-0.4.2 tldextract-3.0.2 tornado-6.1 uritemplate-3.0.1 urllib3-1.26.5 validators-0.18.1 wcwidth-0.2.5 websocket-client-0.57.0 Fetching files from https://github.com/usmannasir/cyberpanel.git... Cloning into 'cyberpanel'... remote: Enumerating objects: 31816, done. remote: Counting objects: 100% (4689/4689), done. remote: Compressing objects: 100% (545/545), done. remote: Total 31816 (delta 4273), reused 4291 (delta 4114), pack-reused 27127 Receiving objects: 100% (31816/31816), 417.36 MiB | 36.04 MiB/s, done. Resolving deltas: 100% (21055/21055), done. Updating files: 100% (4423/4423), done. CyberPanel source code downloaded... Branch 'v2.3.4' set up to track remote branch 'v2.3.4' from 'origin'. Switched to a new branch 'v2.3.4' /root Setting up swapspace version 1, size = 2 GiB (2147479552 bytes) no label, UUID=bcb7b2c2-3b12-4173-a7a4-6faf873a15f9 /cyberpanel.swap swap swap sw 0 0 vm.swappiness = 10 SWAP set... The network is down.. :( Returns the nameservers settings to default.. Continue installation.. root@Wordpress:~# curl https://cyberpanel.sh/?country curl: (6) Could not resolve host: cyberpanel.sh root@Wordpress:~# ```

murapa96 commented 7 months ago

Same error here with hetzner. Apparently, Hetzner prevents DNS change on Robot. Why the DNS change is needed in the first place? Don't should it be optional?

murapa96 commented 6 months ago

I will seek implement the option 1) then

only line 1240-1241 is hardcoded , the line 1265 was to find a location of certain code based on that line , it does not change anything , it just did a "grep" or search

line 1962-1963 was to get the server's hostname (like full qualified domain name with outside DNS resolver) , it does not change anything either.

I tested the script with the dns changed with the hetzner one and everything works great until i get an "unexpected indent" error.

traceback (most recent call last):
  File "install.py", line 2599, in <module>
    main()
  File "install.py", line 2476, in main
    import installCyberPanel
  File "/root/cyberpanel/install/installCyberPanel.py", line 1
    command = 'cat /etc/resolv.conf-tmp > /etc/resolv.conf'
    ^
IndentationError: unexpected indent
Oops, something went wrong...

Related to this lines:

Line1="$(grep -n "f.write('nameserver 185.12.64.2')" installCyberPanel.py | head -n 1 | cut -d: -f1)"
  sed -i "${Line1}i\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ subprocess.call\(command, shell=True)" installCyberPanel.py
  sed -i "${Line1}i\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ command = 'cat /etc/resolv.conf-tmp > /etc/resolv.conf'" installCyberPanel.py
}

UPDATE

I replace the first line with the original one.

Line1="$(grep -n "f.write('nameserver 8.8.8.8')" installCyberPanel.py | head -n 1 | cut -d: -f1)"
  sed -i "${Line1}i\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ subprocess.call\(command, shell=True)" installCyberPanel.py
  sed -i "${Line1}i\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ command = 'cat /etc/resolv.conf-tmp > /etc/resolv.conf'" installCyberPanel.py
}