zabbix网络管理安装教程

参考资源:

Zabbix-安装与部署-Ubutnu20.04

ubuntu22.04安装deepin-wine报错:The following packages have unmet dependencies: libldap-2.4-2 : Depends:_学亮编程手记的技术博客_51CTO博客

bazzix官网:

Download and install Zabbix

操作系统:

https://cn.ubuntu.com/download/server/step1

目标与应用价值:

        为了管理IDC相关服务器、网络设备,即时跟进与应急,减少故障,提前感知

下载:

wget https://repo.zabbix.com/zabbix/6.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.5-1+ubuntu20.04_all.deb
dpkg -i zabbix-release_6.5-1+ubuntu20.04_all.deb
apt update

安装:

1.nginx平台

apt install zabbix-server-mysql zabbix-frontend-php zabbix-nginx-conf zabbix-sql-scripts zabbix-agent

2.apache平台推荐

apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent

建数据库:

# mysql -uroot -p
password
create database zabbix character set utf8mb4 collate utf8mb4_bin;
create user zabbix@localhost identified by 'zabbix';
grant all privileges on zabbix.* to zabbix@localhost;
create user zabbix@% identified by '123456';
grant all privileges on zabbix.* to zabbix@%;
set global log_bin_trust_function_creators = 1;
quit;

初始化:

zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -u zabbix -p zabbix

输入数据库密码:

zabbix

关闭日志:

# mysql -uroot -p
password
mysql> set global log_bin_trust_function_creators = 0;
mysql> quit;

配置文件:

vi /etc/zabbix/zabbix_server.conf

PidFile=/run/zabbix/zabbix_server.pid

SocketDir=/run/zabbix

DBName=zabbix

DBUser=zabbix

DBPassword=123456(改这行数据库密码就可以)

启动服务:

systemctl restart zabbix-server zabbix-agent apache2
systemctl enable zabbix-server zabbix-agent apache2

调试检测

配置和pid 

效果:

访问地址 http://172.26.0.206/zabbix/setup.php

用户名 Admin

密码 zabbix

Admin

zabbix

卸载删除

Ubuntu删除zabbix环境

sudo apt-get --purge remove zabbix-server-mysql
sudo apt-get autoremove zabbix-server-mysql

sudo apt-get --purge remove zabbix-frontend-php
sudo apt-get autoremove zabbix-frontend-php

sudo apt-get --purge remove abbix-apache-conf
sudo apt-get autoremove abbix-apache-conf

sudo apt-get --purge remove zabbix-agent      
#删除软件其配置
sudo apt-get autoremove zabbix-agent          
#删除软件依赖包

#清理数据

需谨慎使用,丢失数据,删除数据就麻烦

sudo dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P
# 删除以上apt-get下载的软件包 

sudo apt-get autoclean
# 删除缓存的所有软件包

sudo apt-get clean
# 删除其他软件依赖的但现在已不用的软件包(保留配置文件)

sudo apt-get autoremove

常用指令:

apt-get update
apt-get upgrade
apt-get dist-upgrade
apt-get install net-tools  
apt-get install openssh-server
sudo apt-get install libsensors5

sudo apt-get install libsensors-config

部署难点:

     1、数据库问题

     2、服务启动问题

     3、nginx问题

     4、apach问题

invoke-rc.d: policy-rc.d denied execution of start.

printf '#!/bin/sh\nexit 0' > /usr/sbin/policy-rc.d
chmod +x  /usr/sbin/policy-rc.d


systemctl start apache2

在Ubuntu系统中卸载Apache服务器非常简单,只需要执行以下命令即可:

sudo apt-get purge apache2

           sudo apt install apache2

           systemctl status apache2 

     5、管理问题

     6、数据库问题

           apt install libmysqlclient-dev

您可以使用以下列表中的任何一个源镜像只要往您的 /etc/apt/sources.list 文件中像下面这样添加一行:

deb http://cz.archive.ubuntu.com/ubuntu lunar main 

     7、php问题 

      apt-get install php

      apt install libmysqlclient-dev

问题:

2

apt-get install libc6-dev g++

Depends: libsnmp35 (>= 5.8+dfsg) but it is not installable

3

Job for zabbix-server.service failed because the service did not take the steps required by its unit configuration.

4

更换更新源:

1、备份原本的软件源文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
2、删除原本的软件源
sudo vim /etc/apt/sources.list
3、添加软件源(从中选一即可)
清华源
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

阿里源
deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
4、更新源和软件
#更新获取软件源提供的软件列表
sudo apt-get update
#更新软件
sudo apt-get -y upgrade

窗口1:安装环境step1

─

Session stopped
    - Press <return> to exit tab
    - Press R to restart session
    - Press S to save terminal output to file
login as: root
root@172.20.0.12's password:
    ┌──────────────────────────────────────────────────────────────────────┐
    │                 • MobaXterm Personal Edition v21.5 •                 │
    │               (SSH client, X server and network tools)               │
    │                                                                      │
    │ ➤ SSH session to root@172.20.0.12                                    │
    │   • Direct SSH      :  ✔                                             │
    │   • SSH compression :  ✔                                             │
    │   • SSH-browser     :  ✔                                             │
    │   • X11-forwarding  :  ✔  (remote display is forwarded through SSH)  │
    │                                                                      │
    │ ➤ For more info, ctrl+click on help or visit our website.            │
    └──────────────────────────────────────────────────────────────────────┘

Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-177-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Tue 07 May 2024 09:21:13 AM UTC

  System load:  0.08               Processes:               292
  Usage of /:   3.4% of 195.80GB   Users logged in:         1
  Memory usage: 3%                 IPv4 address for ens160: 172.20.0.12
  Swap usage:   0%


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

New release '22.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.


Last login: Tue May  7 05:59:52 2024 from 172.20.0.88
root@miner:~# apt install nodejs
Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 41902 (apt)
Reading package lists... Done
Building dependency tree
Reading state information... Done
nodejs is already the newest version (10.19.0~dfsg-3ubuntu1.6).
nodejs set to manually installed.
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@miner:~# node -v
v10.19.0
root@miner:~# npm -v
6.14.4
root@miner:~#
root@miner:~#
root@miner:~#
root@miner:~#
root@miner:~#
root@miner:~# wget https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu20.04_all.deb
--2024-05-08 02:29:00--  https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu20.04_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3752 (3.7K) [application/octet-stream]
Saving to: ‘zabbix-release_6.4-1+ubuntu20.04_all.deb’

zabbix-release_6.4-1+ubuntu20.04_all.deb            100%[=================================================================================================================>]   3.66K  --.-KB/s    in 0s

2024-05-08 02:29:03 (1.08 GB/s) - ‘zabbix-release_6.4-1+ubuntu20.04_all.deb’ saved [3752/3752]

root@miner:~# ll
total 48
drwx------  5 root root 4096 May  8 02:29 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
-rw-------  1 root root  725 May  7 09:21 .bash_history
-rw-r--r--  1 root root 3106 Dec  5  2019 .bashrc
drwx------  2 root root 4096 May  7 05:59 .cache/
-rw-r--r--  1 root root  161 Dec  5  2019 .profile
drwx------  3 root root 4096 May  7 03:05 snap/
drwx------  2 root root 4096 May  7 03:05 .ssh/
-rw-------  1 root root 4441 May  7 05:33 .viminfo
-rw-------  1 root root  102 May  7 09:26 .Xauthority
-rw-r--r--  1 root root 3752 Mar  6  2023 zabbix-release_6.4-1+ubuntu20.04_all.deb
root@miner:~# dpkg -i zabbix-release_6.4-1+ubuntu20.04_all.deb
Selecting previously unselected package zabbix-release.
(Reading database ... 88169 files and directories currently installed.)
Preparing to unpack zabbix-release_6.4-1+ubuntu20.04_all.deb ...
Unpacking zabbix-release (1:6.4-1+ubuntu20.04) ...
Setting up zabbix-release (1:6.4-1+ubuntu20.04) ...
root@miner:~# ll
total 48
drwx------  5 root root 4096 May  8 02:29 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
-rw-------  1 root root  725 May  7 09:21 .bash_history
-rw-r--r--  1 root root 3106 Dec  5  2019 .bashrc
drwx------  2 root root 4096 May  7 05:59 .cache/
-rw-r--r--  1 root root  161 Dec  5  2019 .profile
drwx------  3 root root 4096 May  7 03:05 snap/
drwx------  2 root root 4096 May  7 03:05 .ssh/
-rw-------  1 root root 4441 May  7 05:33 .viminfo
-rw-------  1 root root  102 May  7 09:26 .Xauthority
-rw-r--r--  1 root root 3752 Mar  6  2023 zabbix-release_6.4-1+ubuntu20.04_all.deb
root@miner:~# apt update
Hit:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease [114 kB]
Get:3 https://repo.zabbix.com/zabbix/6.4/ubuntu focal InRelease [2,874 B]
Get:5 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main Sources [15.4 kB]
Get:7 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main all Packages [9,078 B]
Get:8 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main amd64 Packages [43.6 kB]
Hit:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease
Hit:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-security InRelease
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 Packages [3,296 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 Packages [1,185 kB]
Fetched 4,665 kB in 58s (81.1 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
7 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@miner:~# apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'apt autoremove' to remove them.
The following additional packages will be installed:
  fonts-dejavu fonts-dejavu-extra fping libmodbus5 libmysqlclient21 libodbc1 libonig5 libopenipmi0 libsnmp-base libsnmp35 php-bcmath php-gd php-ldap php-mbstring php-mysql php-xml php7.4-bcmath php7.4-gd
  php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-xml snmpd
Suggested packages:
  libmyodbc odbc-postgresql tdsodbc unixodbc-bin snmp-mibs-downloader snmptrapd zabbix-nginx-conf
The following NEW packages will be installed:
  fonts-dejavu fonts-dejavu-extra fping libmodbus5 libmysqlclient21 libodbc1 libonig5 libopenipmi0 libsnmp-base libsnmp35 php-bcmath php-gd php-ldap php-mbstring php-mysql php-xml php7.4-bcmath php7.4-gd
  php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-xml snmpd zabbix-agent zabbix-apache-conf zabbix-frontend-php zabbix-server-mysql zabbix-sql-scripts
0 upgraded, 28 newly installed, 0 to remove and 7 not upgraded.
Need to get 23.0 MB of archives.
After this operation, 80.7 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:11 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main amd64 zabbix-server-mysql amd64 1:6.4.14-1+ubuntu20.04 [1,453 kB]
Get:25 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main amd64 zabbix-agent amd64 1:6.4.14-1+ubuntu20.04 [264 kB]
Get:26 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main all zabbix-frontend-php all 1:6.4.14-1+ubuntu20.04 [7,288 kB]
Get:27 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main all zabbix-apache-conf all 1:6.4.14-1+ubuntu20.04 [8,264 B]
Get:28 https://repo.zabbix.com/zabbix/6.4/ubuntu focal/main all zabbix-sql-scripts all 1:6.4.14-1+ubuntu20.04 [7,949 kB]
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libmysqlclient21 amd64 8.0.36-0ubuntu0.20.04.1 [1,302 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libsnmp-base all 5.8+dfsg-2ubuntu2.9 [205 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libsnmp35 amd64 5.8+dfsg-2ubuntu2.9 [978 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 snmpd amd64 5.8+dfsg-2ubuntu2.9 [56.4 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libodbc1 amd64 2.3.6-0.1ubuntu0.1 [190 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libopenipmi0 amd64 2.0.27-0ubuntu2 [456 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 fping amd64 4.2-1 [32.4 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 fonts-dejavu-extra all 2.37-1 [1,953 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 fonts-dejavu all 2.37-1 [3,130 B]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libonig5 amd64 6.9.4-1 [142 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 php7.4-bcmath amd64 7.4.3-4ubuntu2.22 [15.1 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 php-bcmath all 2:7.4+75 [2,004 B]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 php7.4-gd amd64 7.4.3-4ubuntu2.22 [28.0 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 php-gd all 2:7.4+75 [2,000 B]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 php7.4-ldap amd64 7.4.3-4ubuntu2.22 [29.5 kB]
Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 php-ldap all 2:7.4+75 [2,004 B]
Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 php7.4-mbstring amd64 7.4.3-4ubuntu2.22 [395 kB]
Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 php-mbstring all 2:7.4+75 [2,012 B]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 php7.4-mysql amd64 7.4.3-4ubuntu2.22 [121 kB]
Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 php-mysql all 2:7.4+75 [2,000 B]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 php7.4-xml amd64 7.4.3-4ubuntu2.22 [99.4 kB]
Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 php-xml all 2:7.4+75 [2,028 B]
Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libmodbus5 amd64 3.1.6-2 [23.5 kB]
Fetched 23.0 MB in 15s (1,485 kB/s)
Preconfiguring packages ...
Selecting previously unselected package libmysqlclient21:amd64.
(Reading database ... 88547 files and directories currently installed.)
Preparing to unpack .../00-libmysqlclient21_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libmysqlclient21:amd64 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package libsnmp-base.
Preparing to unpack .../01-libsnmp-base_5.8+dfsg-2ubuntu2.9_all.deb ...
Unpacking libsnmp-base (5.8+dfsg-2ubuntu2.9) ...
Selecting previously unselected package libsnmp35:amd64.
Preparing to unpack .../02-libsnmp35_5.8+dfsg-2ubuntu2.9_amd64.deb ...
Unpacking libsnmp35:amd64 (5.8+dfsg-2ubuntu2.9) ...
Selecting previously unselected package snmpd.
Preparing to unpack .../03-snmpd_5.8+dfsg-2ubuntu2.9_amd64.deb ...
Unpacking snmpd (5.8+dfsg-2ubuntu2.9) ...
Selecting previously unselected package libodbc1:amd64.
Preparing to unpack .../04-libodbc1_2.3.6-0.1ubuntu0.1_amd64.deb ...
Unpacking libodbc1:amd64 (2.3.6-0.1ubuntu0.1) ...
Selecting previously unselected package libopenipmi0.
Preparing to unpack .../05-libopenipmi0_2.0.27-0ubuntu2_amd64.deb ...
Unpacking libopenipmi0 (2.0.27-0ubuntu2) ...
Selecting previously unselected package fping.
Preparing to unpack .../06-fping_4.2-1_amd64.deb ...
Unpacking fping (4.2-1) ...
Selecting previously unselected package zabbix-server-mysql.
Preparing to unpack .../07-zabbix-server-mysql_1%3a6.4.14-1+ubuntu20.04_amd64.deb ...
Unpacking zabbix-server-mysql (1:6.4.14-1+ubuntu20.04) ...
Selecting previously unselected package fonts-dejavu-extra.
Preparing to unpack .../08-fonts-dejavu-extra_2.37-1_all.deb ...
Unpacking fonts-dejavu-extra (2.37-1) ...
Selecting previously unselected package fonts-dejavu.
Preparing to unpack .../09-fonts-dejavu_2.37-1_all.deb ...
Unpacking fonts-dejavu (2.37-1) ...
Selecting previously unselected package libonig5:amd64.
Preparing to unpack .../10-libonig5_6.9.4-1_amd64.deb ...
Unpacking libonig5:amd64 (6.9.4-1) ...
Selecting previously unselected package php7.4-bcmath.
Preparing to unpack .../11-php7.4-bcmath_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-bcmath (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-bcmath.
Preparing to unpack .../12-php-bcmath_2%3a7.4+75_all.deb ...
Unpacking php-bcmath (2:7.4+75) ...
Selecting previously unselected package php7.4-gd.
Preparing to unpack .../13-php7.4-gd_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-gd (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-gd.
Preparing to unpack .../14-php-gd_2%3a7.4+75_all.deb ...
Unpacking php-gd (2:7.4+75) ...
Selecting previously unselected package php7.4-ldap.
Preparing to unpack .../15-php7.4-ldap_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-ldap (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-ldap.
Preparing to unpack .../16-php-ldap_2%3a7.4+75_all.deb ...
Unpacking php-ldap (2:7.4+75) ...
Selecting previously unselected package php7.4-mbstring.
Preparing to unpack .../17-php7.4-mbstring_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-mbstring (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-mbstring.
Preparing to unpack .../18-php-mbstring_2%3a7.4+75_all.deb ...
Unpacking php-mbstring (2:7.4+75) ...
Selecting previously unselected package php7.4-mysql.
Preparing to unpack .../19-php7.4-mysql_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-mysql (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-mysql.
Preparing to unpack .../20-php-mysql_2%3a7.4+75_all.deb ...
Unpacking php-mysql (2:7.4+75) ...
Selecting previously unselected package php7.4-xml.
Preparing to unpack .../21-php7.4-xml_7.4.3-4ubuntu2.22_amd64.deb ...
Unpacking php7.4-xml (7.4.3-4ubuntu2.22) ...
Selecting previously unselected package php-xml.
Preparing to unpack .../22-php-xml_2%3a7.4+75_all.deb ...
Unpacking php-xml (2:7.4+75) ...
Selecting previously unselected package libmodbus5:amd64.
Preparing to unpack .../23-libmodbus5_3.1.6-2_amd64.deb ...
Unpacking libmodbus5:amd64 (3.1.6-2) ...
Selecting previously unselected package zabbix-agent.
Preparing to unpack .../24-zabbix-agent_1%3a6.4.14-1+ubuntu20.04_amd64.deb ...
Unpacking zabbix-agent (1:6.4.14-1+ubuntu20.04) ...
Selecting previously unselected package zabbix-frontend-php.
Preparing to unpack .../25-zabbix-frontend-php_1%3a6.4.14-1+ubuntu20.04_all.deb ...
Unpacking zabbix-frontend-php (1:6.4.14-1+ubuntu20.04) ...
Selecting previously unselected package zabbix-apache-conf.
Preparing to unpack .../26-zabbix-apache-conf_1%3a6.4.14-1+ubuntu20.04_all.deb ...
Unpacking zabbix-apache-conf (1:6.4.14-1+ubuntu20.04) ...
Selecting previously unselected package zabbix-sql-scripts.
Preparing to unpack .../27-zabbix-sql-scripts_1%3a6.4.14-1+ubuntu20.04_all.deb ...
Unpacking zabbix-sql-scripts (1:6.4.14-1+ubuntu20.04) ...
Setting up libmysqlclient21:amd64 (8.0.36-0ubuntu0.20.04.1) ...
Setting up libmodbus5:amd64 (3.1.6-2) ...
Setting up php7.4-xml (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/dom.ini with new version

Creating config file /etc/php/7.4/mods-available/simplexml.ini with new version

Creating config file /etc/php/7.4/mods-available/xml.ini with new version

Creating config file /etc/php/7.4/mods-available/xmlreader.ini with new version

Creating config file /etc/php/7.4/mods-available/xmlwriter.ini with new version

Creating config file /etc/php/7.4/mods-available/xsl.ini with new version
Setting up php7.4-mysql (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/mysqlnd.ini with new version

Creating config file /etc/php/7.4/mods-available/mysqli.ini with new version

Creating config file /etc/php/7.4/mods-available/pdo_mysql.ini with new version
Setting up zabbix-sql-scripts (1:6.4.14-1+ubuntu20.04) ...
Setting up php7.4-bcmath (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/bcmath.ini with new version
Setting up libsnmp-base (5.8+dfsg-2ubuntu2.9) ...
Setting up libodbc1:amd64 (2.3.6-0.1ubuntu0.1) ...
Setting up fonts-dejavu-extra (2.37-1) ...
Setting up php7.4-ldap (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/ldap.ini with new version
Setting up zabbix-agent (1:6.4.14-1+ubuntu20.04) ...
Created symlink /etc/systemd/system/multi-user.target.wants/zabbix-agent.service → /lib/systemd/system/zabbix-agent.service.
Setting up libopenipmi0 (2.0.27-0ubuntu2) ...
Setting up fping (4.2-1) ...
Setting up libonig5:amd64 (6.9.4-1) ...
Setting up php7.4-gd (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/gd.ini with new version
Setting up php-xml (2:7.4+75) ...
Setting up fonts-dejavu (2.37-1) ...
Setting up php-mysql (2:7.4+75) ...
Setting up libsnmp35:amd64 (5.8+dfsg-2ubuntu2.9) ...
Setting up zabbix-server-mysql (1:6.4.14-1+ubuntu20.04) ...
Setting up php-bcmath (2:7.4+75) ...
Setting up php7.4-mbstring (7.4.3-4ubuntu2.22) ...

Creating config file /etc/php/7.4/mods-available/mbstring.ini with new version
Setting up snmpd (5.8+dfsg-2ubuntu2.9) ...
adduser: Warning: The home directory `/var/lib/snmp' does not belong to the user you are currently creating.
Created symlink /etc/systemd/system/multi-user.target.wants/snmpd.service → /lib/systemd/system/snmpd.service.
Setting up php-mbstring (2:7.4+75) ...
Setting up php-ldap (2:7.4+75) ...
Setting up zabbix-frontend-php (1:6.4.14-1+ubuntu20.04) ...
update-alternatives: using /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf to provide /usr/share/zabbix/assets/fonts/graphfont.ttf (zabbix-frontend-font) in auto mode
Setting up php-gd (2:7.4+75) ...
Setting up zabbix-apache-conf (1:6.4.14-1+ubuntu20.04) ...
Enabling conf zabbix.
To activate the new configuration, you need to run:
  systemctl reload apache2
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
Processing triggers for systemd (245.4-4ubuntu3.23) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for libapache2-mod-php7.4 (7.4.3-4ubuntu2.22) ...
Processing triggers for php7.4-cli (7.4.3-4ubuntu2.22) ...
root@miner:~#
root@miner:~# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.36-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin;
Query OK, 1 row affected (0.00 sec)

mysql> create user zabbix@localhost identified by 'password';
Query OK, 0 rows affected (0.01 sec)

mysql> create user zabbix@localhost identified by 'zabbix';
ERROR 1396 (HY000): Operation CREATE USER failed for 'zabbix'@'localhost'
mysql> grant all privileges on zabbix.* to zabbix@localhost;
Query OK, 0 rows affected (0.00 sec)

mysql> set global log_bin_trust_function_creators = 1;
Query OK, 0 rows affected, 1 warning (0.01 sec)

mysql> quit;
Bye
root@miner:~# zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p password
Enter password:
ERROR 1045 (28000): Access denied for user 'zabbix'@'localhost' (using password: NO)
root@miner:~# zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p password
Enter password:
ERROR 1044 (42000): Access denied for user 'zabbix'@'localhost' to database 'password'
root@miner:~# zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p zabbix
Enter password:
root@miner:~# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.36-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> set global log_bin_trust_function_creators = 0;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> quit;
Bye
root@miner:~# vi /etc/zabbix/zabbix_server.conf
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
Created symlink /etc/systemd/system/multi-user.target.wants/zabbix-server.service → /lib/systemd/system/zabbix-server.service.
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      90493/zabbix_agentd
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      90502/zabbix_server
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::10050                :::*                    LISTEN      90493/zabbix_agentd
tcp6       0      0 :::10051                :::*                    LISTEN      90502/zabbix_server
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~# ufw status
Status: inactive
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      90493/zabbix_agentd
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      90502/zabbix_server
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::10050                :::*                    LISTEN      90493/zabbix_agentd
tcp6       0      0 :::10051                :::*                    LISTEN      90502/zabbix_server
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
root@miner:~# service nginx stop
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
root@miner:~#
login as: root
root@172.20.0.12's password:
    ┌──────────────────────────────────────────────────────────────────────┐
    │                 • MobaXterm Personal Edition v21.5 •                 │
    │               (SSH client, X server and network tools)               │
    │                                                                      │
    │ ➤ SSH session to root@172.20.0.12                                    │
    │   • Direct SSH      :  ✔                                             │
    │   • SSH compression :  ✔                                             │
    │   • SSH-browser     :  ✔                                             │
    │   • X11-forwarding  :  ✔  (remote display is forwarded through SSH)  │
    │                                                                      │
    │ ➤ For more info, ctrl+click on help or visit our website.            │
    └──────────────────────────────────────────────────────────────────────┘

Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-177-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Tue 07 May 2024 09:26:11 AM UTC

  System load:  0.0                Processes:               302
  Usage of /:   3.4% of 195.80GB   Users logged in:         2
  Memory usage: 3%                 IPv4 address for ens160: 172.20.0.12
  Swap usage:   0%


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

New release '22.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.


Last login: Tue May  7 09:21:13 2024 from 172.20.0.88
root@miner:~# apt install mysql
Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 41950 (apt)
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysql
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysql
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysqld
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysqld
root@miner:~# service mysql restart
Failed to restart mysql.service: Unit mysql.service not found.
root@miner:~# sudo apt install mysql-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libevent-core-2.1-7 libevent-pthreads-2.1-7 libfcgi-perl libhtml-template-perl libmecab2 mecab-ipadic mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0
  mysql-common mysql-server-8.0 mysql-server-core-8.0
Suggested packages:
  libipc-sharedcache-perl mailx tinyca
The following NEW packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libevent-core-2.1-7 libevent-pthreads-2.1-7 libfcgi-perl libhtml-template-perl libmecab2 mecab-ipadic mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0
  mysql-common mysql-server mysql-server-8.0 mysql-server-core-8.0
0 upgraded, 16 newly installed, 0 to remove and 7 not upgraded.
Need to get 36.4 MB of archives.
After this operation, 317 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mysql-common all 5.8+1.0.5ubuntu2 [7,496 B]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-client-core-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [5,084 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-client-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [22.0 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libevent-core-2.1-7 amd64 2.1.11-stable-1 [89.1 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libevent-pthreads-2.1-7 amd64 2.1.11-stable-1 [7,372 B]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libmecab2 amd64 0.996-10build1 [233 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server-core-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [22.7 MB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [1,326 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libcgi-pm-perl all 4.46-1 [186 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfcgi-perl amd64 0.79-1 [33.1 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libcgi-fast-perl all 1:2.15-1 [10.5 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-template-perl all 2.97-1 [59.0 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-utils amd64 0.996-10build1 [4,912 B]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-ipadic all 2.7.0-20070801+main-2.1 [6,714 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-ipadic-utf8 all 2.7.0-20070801+main-2.1 [4,380 B]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server all 8.0.36-0ubuntu0.20.04.1 [9,484 B]
Fetched 36.4 MB in 8min 26s (71.9 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mysql-common.
(Reading database ... 88175 files and directories currently installed.)
Preparing to unpack .../0-mysql-common_5.8+1.0.5ubuntu2_all.deb ...
Unpacking mysql-common (5.8+1.0.5ubuntu2) ...
Selecting previously unselected package mysql-client-core-8.0.
Preparing to unpack .../1-mysql-client-core-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-client-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package mysql-client-8.0.
Preparing to unpack .../2-mysql-client-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-client-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package libevent-core-2.1-7:amd64.
Preparing to unpack .../3-libevent-core-2.1-7_2.1.11-stable-1_amd64.deb ...
Unpacking libevent-core-2.1-7:amd64 (2.1.11-stable-1) ...
Selecting previously unselected package libevent-pthreads-2.1-7:amd64.
Preparing to unpack .../4-libevent-pthreads-2.1-7_2.1.11-stable-1_amd64.deb ...
Unpacking libevent-pthreads-2.1-7:amd64 (2.1.11-stable-1) ...
Selecting previously unselected package libmecab2:amd64.
Preparing to unpack .../5-libmecab2_0.996-10build1_amd64.deb ...
Unpacking libmecab2:amd64 (0.996-10build1) ...
Selecting previously unselected package mysql-server-core-8.0.
Preparing to unpack .../6-mysql-server-core-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-server-core-8.0 (8.0.36-0ubuntu0.20.04.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
Selecting previously unselected package mysql-server-8.0.
(Reading database ... 88391 files and directories currently installed.)
Preparing to unpack .../0-mysql-server-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-server-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package libcgi-pm-perl.
Preparing to unpack .../1-libcgi-pm-perl_4.46-1_all.deb ...
Unpacking libcgi-pm-perl (4.46-1) ...
Selecting previously unselected package libfcgi-perl.
Preparing to unpack .../2-libfcgi-perl_0.79-1_amd64.deb ...
Unpacking libfcgi-perl (0.79-1) ...
Selecting previously unselected package libcgi-fast-perl.
Preparing to unpack .../3-libcgi-fast-perl_1%3a2.15-1_all.deb ...
Unpacking libcgi-fast-perl (1:2.15-1) ...
Selecting previously unselected package libhtml-template-perl.
Preparing to unpack .../4-libhtml-template-perl_2.97-1_all.deb ...
Unpacking libhtml-template-perl (2.97-1) ...
Selecting previously unselected package mecab-utils.
Preparing to unpack .../5-mecab-utils_0.996-10build1_amd64.deb ...
Unpacking mecab-utils (0.996-10build1) ...
Selecting previously unselected package mecab-ipadic.
Preparing to unpack .../6-mecab-ipadic_2.7.0-20070801+main-2.1_all.deb ...
Unpacking mecab-ipadic (2.7.0-20070801+main-2.1) ...
Selecting previously unselected package mecab-ipadic-utf8.
Preparing to unpack .../7-mecab-ipadic-utf8_2.7.0-20070801+main-2.1_all.deb ...
Unpacking mecab-ipadic-utf8 (2.7.0-20070801+main-2.1) ...
Selecting previously unselected package mysql-server.
Preparing to unpack .../8-mysql-server_8.0.36-0ubuntu0.20.04.1_all.deb ...
Unpacking mysql-server (8.0.36-0ubuntu0.20.04.1) ...
Setting up libmecab2:amd64 (0.996-10build1) ...
Setting up mysql-client-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up libcgi-pm-perl (4.46-1) ...
Setting up libhtml-template-perl (2.97-1) ...
Setting up mecab-utils (0.996-10build1) ...
Setting up libevent-core-2.1-7:amd64 (2.1.11-stable-1) ...
Setting up mysql-client-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up libfcgi-perl (0.79-1) ...
Setting up libevent-pthreads-2.1-7:amd64 (2.1.11-stable-1) ...
Setting up mecab-ipadic (2.7.0-20070801+main-2.1) ...
Compiling IPA dictionary for Mecab.  This takes long time...
reading /usr/share/mecab/dic/ipadic/unk.def ... 40
emitting double-array: 100% |###########################################|
/usr/share/mecab/dic/ipadic/model.def is not found. skipped.
reading /usr/share/mecab/dic/ipadic/Adj.csv ... 27210
reading /usr/share/mecab/dic/ipadic/Adnominal.csv ... 135
reading /usr/share/mecab/dic/ipadic/Interjection.csv ... 252
reading /usr/share/mecab/dic/ipadic/Noun.org.csv ... 16668
reading /usr/share/mecab/dic/ipadic/Noun.number.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.proper.csv ... 27328
reading /usr/share/mecab/dic/ipadic/Noun.adverbal.csv ... 795
reading /usr/share/mecab/dic/ipadic/Auxil.csv ... 199
reading /usr/share/mecab/dic/ipadic/Postp.csv ... 146
reading /usr/share/mecab/dic/ipadic/Noun.verbal.csv ... 12146
reading /usr/share/mecab/dic/ipadic/Filler.csv ... 19
reading /usr/share/mecab/dic/ipadic/Suffix.csv ... 1393
reading /usr/share/mecab/dic/ipadic/Postp-col.csv ... 91
reading /usr/share/mecab/dic/ipadic/Others.csv ... 2
reading /usr/share/mecab/dic/ipadic/Adverb.csv ... 3032
reading /usr/share/mecab/dic/ipadic/Prefix.csv ... 221
reading /usr/share/mecab/dic/ipadic/Noun.name.csv ... 34202
reading /usr/share/mecab/dic/ipadic/Symbol.csv ... 208
reading /usr/share/mecab/dic/ipadic/Conjunction.csv ... 171
reading /usr/share/mecab/dic/ipadic/Verb.csv ... 130750
reading /usr/share/mecab/dic/ipadic/Noun.adjv.csv ... 3328
reading /usr/share/mecab/dic/ipadic/Noun.demonst.csv ... 120
reading /usr/share/mecab/dic/ipadic/Noun.csv ... 60477
reading /usr/share/mecab/dic/ipadic/Noun.nai.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.others.csv ... 151
reading /usr/share/mecab/dic/ipadic/Noun.place.csv ... 72999
emitting double-array: 100% |###########################################|
reading /usr/share/mecab/dic/ipadic/matrix.def ... 1316x1316
emitting matrix      : 100% |###########################################|

done!
update-alternatives: using /var/lib/mecab/dic/ipadic to provide /var/lib/mecab/dic/debian (mecab-dictionary) in auto mode
Setting up libcgi-fast-perl (1:2.15-1) ...
Setting up mysql-server-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up mecab-ipadic-utf8 (2.7.0-20070801+main-2.1) ...
Compiling IPA dictionary for Mecab.  This takes long time...
reading /usr/share/mecab/dic/ipadic/unk.def ... 40
emitting double-array: 100% |###########################################|
/usr/share/mecab/dic/ipadic/model.def is not found. skipped.
reading /usr/share/mecab/dic/ipadic/Adj.csv ... 27210
reading /usr/share/mecab/dic/ipadic/Adnominal.csv ... 135
reading /usr/share/mecab/dic/ipadic/Interjection.csv ... 252
reading /usr/share/mecab/dic/ipadic/Noun.org.csv ... 16668
reading /usr/share/mecab/dic/ipadic/Noun.number.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.proper.csv ... 27328
reading /usr/share/mecab/dic/ipadic/Noun.adverbal.csv ... 795
reading /usr/share/mecab/dic/ipadic/Auxil.csv ... 199
reading /usr/share/mecab/dic/ipadic/Postp.csv ... 146
reading /usr/share/mecab/dic/ipadic/Noun.verbal.csv ... 12146
reading /usr/share/mecab/dic/ipadic/Filler.csv ... 19
reading /usr/share/mecab/dic/ipadic/Suffix.csv ... 1393
reading /usr/share/mecab/dic/ipadic/Postp-col.csv ... 91
reading /usr/share/mecab/dic/ipadic/Others.csv ... 2
reading /usr/share/mecab/dic/ipadic/Adverb.csv ... 3032
reading /usr/share/mecab/dic/ipadic/Prefix.csv ... 221
reading /usr/share/mecab/dic/ipadic/Noun.name.csv ... 34202
reading /usr/share/mecab/dic/ipadic/Symbol.csv ... 208
reading /usr/share/mecab/dic/ipadic/Conjunction.csv ... 171
reading /usr/share/mecab/dic/ipadic/Verb.csv ... 130750
reading /usr/share/mecab/dic/ipadic/Noun.adjv.csv ... 3328
reading /usr/share/mecab/dic/ipadic/Noun.demonst.csv ... 120
reading /usr/share/mecab/dic/ipadic/Noun.csv ... 60477
reading /usr/share/mecab/dic/ipadic/Noun.nai.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.others.csv ... 151
reading /usr/share/mecab/dic/ipadic/Noun.place.csv ... 72999
emitting double-array: 100% |###########################################|
reading /usr/share/mecab/dic/ipadic/matrix.def ... 1316x1316
emitting matrix      : 100% |###########################################|

done!
update-alternatives: using /var/lib/mecab/dic/ipadic-utf8 to provide /var/lib/mecab/dic/debian (mecab-dictionary) in auto mode
Setting up mysql-server-8.0 (8.0.36-0ubuntu0.20.04.1) ...
update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Renaming removed key_buffer and myisam-recover options (if present)
mysqld will log errors to /var/log/mysql/error.log
mysqld is running as pid 83792
Created symlink /etc/systemd/system/multi-user.target.wants/mysql.service → /lib/systemd/system/mysql.service.
Setting up mysql-server (8.0.36-0ubuntu0.20.04.1) ...
Processing triggers for systemd (245.4-4ubuntu3.23) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
root@miner:~# service mysql restart
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~#

窗口2:安装zabbix

login as: miner
miner@172.20.0.12's password:
    ┌──────────────────────────────────────────────────────────────────────┐
    │                 • MobaXterm Personal Edition v21.5 •                 │
    │               (SSH client, X server and network tools)               │
    │                                                                      │
    │ ➤ SSH session to miner@172.20.0.12                                   │
    │   • Direct SSH      :  ✔                                             │
    │   • SSH compression :  ✔                                             │
    │   • SSH-browser     :  ✔                                             │
    │   • X11-forwarding  :  ✔  (remote display is forwarded through SSH)  │
    │                                                                      │
    │ ➤ For more info, ctrl+click on help or visit our website.            │
    └──────────────────────────────────────────────────────────────────────┘

Welcome to Ubuntu 20.04.3 LTS (GNU/Linux 5.4.0-177-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

  System information as of Tue 07 May 2024 03:04:40 AM UTC


Last login: Tue May  7 03:05:22 2024
/usr/bin/xauth:  file /home/miner/.Xauthority does not exist
miner@miner:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: ens160: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 00:0c:29:a6:64:a1 brd ff:ff:ff:ff:ff:ff
    inet 172.20.0.12/24 brd 172.20.0.255 scope global ens160
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:fea6:64a1/64 scope link
       valid_lft forever preferred_lft forever
miner@miner:~$ su root
Password:
root@miner:/home/miner# cd
root@miner:~# apt update
Err:1 http://cn.archive.ubuntu.com/ubuntu focal InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:2 http://cn.archive.ubuntu.com/ubuntu focal-updates InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:3 http://cn.archive.ubuntu.com/ubuntu focal-backports InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:4 http://cn.archive.ubuntu.com/ubuntu focal-security InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Reading package lists... Done
Building dependency tree
Reading state information... Done
79 packages can be upgraded. Run 'apt list --upgradable' to see them.
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-security/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.
root@miner:~# apt update
Err:1 http://cn.archive.ubuntu.com/ubuntu focal InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:2 http://cn.archive.ubuntu.com/ubuntu focal-updates InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:3 http://cn.archive.ubuntu.com/ubuntu focal-backports InRelease
  Cannot initiate the connection to cn.archive.ubuntu.com:80 (2403:2c80:5::6). - connect (101: Network is unreachable)
Err:4 http://cn.archive.ubuntu.com/ubuntu focal-security InRelease
  Cannot initiate the connection to cn.archive.ubuntu.com:80 (2403:2c80:5::6). - connect (101: Network is unreachable)
Reading package lists... Done
Building dependency tree
Reading state information... Done
79 packages can be upgraded. Run 'apt list --upgradable' to see them.
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease  Cannot initiate the connection to cn.archive.ubuntu.com:80 (2403:2c80:5::6). - connect (101: Network is unreachable)
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-security/InRelease  Cannot initiate the connection to cn.archive.ubuntu.com:80 (2403:2c80:5::6). - connect (101: Network is unreachable)
W: Some index files failed to download. They have been ignored, or old ones used instead.
root@miner:~# cd /etc/netplan/
root@miner:/etc/netplan# ll
total 12
drwxr-xr-x  2 root root 4096 May  7 03:04 ./
drwxr-xr-x 96 root root 4096 May  7 03:01 ../
-rw-r--r--  1 root root  238 May  7 03:04 00-installer-config.yaml
root@miner:/etc/netplan# vi 00-installer-config.yaml
root@miner:/etc/netplan# netplan apply
root@miner:/etc/netplan# apt update
Hit:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Hit:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease
Hit:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease
Hit:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-security InRelease
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main Translation-en [506 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/restricted Translation-en [6,212 B]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe Translation-en [5,124 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/multiverse Translation-en [104 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main Translation-en [518 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted Translation-en [403 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe Translation-en [284 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse Translation-en [7,880 B]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/main Translation-en [16.3 kB]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/universe Translation-en [16.3 kB]
Fetched 6,986 kB in 1min 11s (98.0 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
79 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@miner:/etc/netplan# apt upgradable
E: Invalid operation upgradable
root@miner:/etc/netplan# apt upgradele
E: Invalid operation upgradele
root@miner:/etc/netplan# apt upgaradete
E: Invalid operation upgaradete
root@miner:/etc/netplan# apt ?
E: Invalid operation ?
root@miner:/etc/netplan# apt
apt 2.0.6 (amd64)
Usage: apt [options] command

apt is a commandline package manager and provides commands for
searching and managing as well as querying information about packages.
It provides the same functionality as the specialized APT tools,
like apt-get and apt-cache, but enables options more suitable for
interactive use by default.

Most used commands:
  list - list packages based on package names
  search - search in package descriptions
  show - show package details
  install - install packages
  reinstall - reinstall packages
  remove - remove packages
  autoremove - Remove automatically all unused packages
  update - update list of available packages
  upgrade - upgrade the system by installing/upgrading packages
  full-upgrade - upgrade the system by removing/installing/upgrading packages
  edit-sources - edit the source information file
  satisfy - satisfy dependency strings

See apt(8) for more information about the available commands.
Configuration options and syntax is detailed in apt.conf(5).
Information about how to configure sources can be found in sources.list(5).
Package and version choices can be expressed via apt_preferences(5).
Security details are available in apt-secure(8).
                                        This APT has Super Cow Powers.
root@miner:/etc/netplan# apt upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'apt autoremove' to remove them.
The following NEW packages will be installed:
  libfwupdplugin5 libmbim-glib4 libmbim-proxy libmm-glib0 libqmi-glib5 libqmi-proxy libxmlb2 modemmanager ubuntu-pro-client ubuntu-pro-client-l10n usb-modeswitch usb-modeswitch-data
The following packages will be upgraded:
  alsa-ucm-conf apparmor apport apt apt-utils base-files bolt cloud-init cloud-initramfs-copymods cloud-initramfs-dyn-netconf command-not-found distro-info fwupd fwupd-signed initramfs-tools
  initramfs-tools-bin initramfs-tools-core iptables iputils-ping iputils-tracepath isc-dhcp-client isc-dhcp-common kmod kpartx landscape-common libapparmor1 libapt-pkg6.0 libasound2 libasound2-data
  libfwupd2 libgpgme11 libip4tc2 libip6tc2 libjcat1 libkeyutils1 libkmod2 libnetplan0 libnss-systemd libpam-systemd libsystemd0 libtss2-esys0 libudev1 libudisks2-0 libunwind8 libxtables12 linux-base
  ltrace motd-news-config multipath-tools netplan.io overlayroot python-apt-common python3-apport python3-apt python3-commandnotfound python3-debian python3-distro-info python3-distupgrade
  python3-problem-report python3-software-properties python3-update-manager rsync sbsigntool snapd software-properties-common sosreport systemd systemd-sysv systemd-timesyncd tcpdump
  ubuntu-advantage-tools ubuntu-release-upgrader-core udev udisks2 ufw unattended-upgrades update-manager-core update-notifier-common wget
79 upgraded, 12 newly installed, 0 to remove and 0 not upgraded.
Need to get 44.3 MB of archives.
After this operation, 59.9 MB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 motd-news-config all 11ubuntu5.8 [4,284 B]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 base-files amd64 11ubuntu5.8 [60.3 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libnss-systemd amd64 245.4-4ubuntu3.23 [96.2 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 udev amd64 245.4-4ubuntu3.23 [1,366 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libudev1 amd64 245.4-4ubuntu3.23 [75.6 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 kmod amd64 27-1ubuntu2.1 [94.8 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libkmod2 amd64 27-1ubuntu2.1 [45.3 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 systemd-sysv amd64 245.4-4ubuntu3.23 [10.3 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 systemd-timesyncd amd64 245.4-4ubuntu3.23 [28.1 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libpam-systemd amd64 245.4-4ubuntu3.23 [186 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libapparmor1 amd64 2.13.3-7ubuntu5.3 [35.4 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libxtables12 amd64 1.8.4-3ubuntu2.1 [28.7 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 iptables amd64 1.8.4-3ubuntu2.1 [390 kB]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libip6tc2 amd64 1.8.4-3ubuntu2.1 [19.4 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libip4tc2 amd64 1.8.4-3ubuntu2.1 [19.1 kB]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 systemd amd64 245.4-4ubuntu3.23 [3,811 kB]
Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libsystemd0 amd64 245.4-4ubuntu3.23 [268 kB]
Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libapt-pkg6.0 amd64 2.0.10 [843 kB]
Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 apt amd64 2.0.10 [1,280 kB]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 apt-utils amd64 2.0.10 [213 kB]
Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 rsync amd64 3.1.3-8ubuntu0.7 [322 kB]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python-apt-common all 2.0.1ubuntu0.20.04.1 [16.5 kB]
Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-apt amd64 2.0.1ubuntu0.20.04.1 [154 kB]
Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-debian all 0.1.36ubuntu1.1 [64.9 kB]
Get:25 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-distro-info all 0.23ubuntu1.1 [5,944 B]
Get:26 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ubuntu-release-upgrader-core all 1:20.04.41 [24.3 kB]
Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 update-manager-core all 1:20.04.10.21 [11.6 kB]
Get:28 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-distupgrade all 1:20.04.41 [105 kB]
Get:29 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-update-manager all 1:20.04.10.21 [38.4 kB]
Get:30 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 distro-info amd64 0.23ubuntu1.1 [17.1 kB]
Get:31 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ubuntu-advantage-tools all 31.2.2~20.04 [10.9 kB]
Get:32 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ubuntu-pro-client amd64 31.2.2~20.04 [196 kB]
Get:33 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 update-notifier-common all 3.192.30.19 [173 kB]
Get:34 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 iputils-ping amd64 3:20190709-3ubuntu1 [40.0 kB]
Get:35 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 isc-dhcp-client amd64 4.4.1-2.1ubuntu5.20.04.5 [247 kB]
Get:36 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 isc-dhcp-common amd64 4.4.1-2.1ubuntu5.20.04.5 [45.3 kB]
Get:37 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libnetplan0 amd64 0.104-0ubuntu2~20.04.4 [82.2 kB]
Get:38 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 initramfs-tools all 0.136ubuntu6.7 [9,248 B]
Get:39 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 initramfs-tools-core all 0.136ubuntu6.7 [47.8 kB]
Get:40 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 initramfs-tools-bin amd64 0.136ubuntu6.7 [10.8 kB]
Get:41 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 linux-base all 4.5ubuntu3.7 [17.6 kB]
Get:42 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 netplan.io amd64 0.104-0ubuntu2~20.04.4 [88.2 kB]
Get:43 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ubuntu-pro-client-l10n amd64 31.2.2~20.04 [18.4 kB]
Get:44 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 apparmor amd64 2.13.3-7ubuntu5.3 [502 kB]
Get:45 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 command-not-found all 20.04.6 [5,264 B]
Get:46 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-commandnotfound all 20.04.6 [10.4 kB]
Get:47 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 iputils-tracepath amd64 3:20190709-3ubuntu1 [20.1 kB]
Get:48 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libkeyutils1 amd64 1.6-6ubuntu1.1 [10.3 kB]
Get:49 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ltrace amd64 0.7.3-6.1ubuntu1.1 [123 kB]
Get:50 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 tcpdump amd64 4.9.3-4ubuntu0.3 [370 kB]
Get:51 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 ufw all 0.36-6ubuntu1.1 [148 kB]
Get:52 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 wget amd64 1.20.3-1ubuntu2 [348 kB]
Get:53 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libasound2 amd64 1.2.2-2.1ubuntu2.5 [335 kB]
Get:54 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libasound2-data all 1.2.2-2.1ubuntu2.5 [20.1 kB]
Get:55 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 alsa-ucm-conf all 1.2.2-1ubuntu0.13 [27.0 kB]
Get:56 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-problem-report all 2.20.11-0ubuntu27.27 [11.2 kB]
Get:57 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-apport all 2.20.11-0ubuntu27.27 [86.9 kB]
Get:58 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 apport all 2.20.11-0ubuntu27.27 [129 kB]
Get:59 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 bolt amd64 0.9.1-2~ubuntu20.04.2 [143 kB]
Get:60 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 fwupd-signed amd64 1.51.1~20.04.1+1.4-0ubuntu0.1 [28.7 kB]
Get:61 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libgpgme11 amd64 1.13.1-7ubuntu2.2 [120 kB]
Get:62 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libjcat1 amd64 0.1.4-0ubuntu0.20.04.1 [25.9 kB]
Get:63 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libfwupd2 amd64 1.7.9-1~20.04.3 [91.9 kB]
Get:64 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libxmlb2 amd64 0.3.6-2build1~20.04.1 [61.6 kB]
Get:65 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libfwupdplugin5 amd64 1.7.9-1~20.04.3 [170 kB]
Get:66 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libmbim-glib4 amd64 1.26.2-1~ubuntu20.04.1 [123 kB]
Get:67 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libmbim-proxy amd64 1.26.2-1~ubuntu20.04.1 [6,012 B]
Get:68 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libmm-glib0 amd64 1.18.6-1~ubuntu20.04.1 [203 kB]
Get:69 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libqmi-glib5 amd64 1.30.4-1~ubuntu20.04.1 [642 kB]
Get:70 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libqmi-proxy amd64 1.30.4-1~ubuntu20.04.1 [5,908 B]
Get:71 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libtss2-esys0 amd64 2.3.2-1ubuntu0.20.04.1 [226 kB]
Get:72 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 fwupd amd64 1.7.9-1~20.04.3 [2,454 kB]
Get:73 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 landscape-common amd64 23.02-0ubuntu1~20.04.2 [86.9 kB]
Get:74 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libudisks2-0 amd64 2.8.4-1ubuntu2 [99.4 kB]
Get:75 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libunwind8 amd64 1.2.1-9ubuntu0.1 [47.7 kB]
Get:76 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 modemmanager amd64 1.18.6-1~ubuntu20.04.1 [895 kB]
Get:77 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 software-properties-common all 0.99.9.12 [10.4 kB]
Get:78 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 python3-software-properties all 0.99.9.12 [21.7 kB]
Get:79 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 sbsigntool amd64 0.9.2-2ubuntu1.1 [63.8 kB]
Get:80 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 snapd amd64 2.61.3+20.04 [24.4 MB]
Get:81 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 sosreport amd64 4.5.6-0ubuntu1~20.04.2 [329 kB]
Get:82 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 udisks2 amd64 2.8.4-1ubuntu2 [245 kB]
Get:83 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 unattended-upgrades all 2.3ubuntu0.3 [48.5 kB]
Get:84 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 cloud-init all 24.1.3-0ubuntu1~20.04.1 [563 kB]
Get:85 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 cloud-initramfs-copymods all 0.45ubuntu2 [4,180 B]
Get:86 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 cloud-initramfs-dyn-netconf all 0.45ubuntu2 [6,700 B]
Get:87 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 kpartx amd64 0.8.3-1ubuntu2.3 [28.2 kB]
Get:88 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 multipath-tools amd64 0.8.3-1ubuntu2.3 [289 kB]
Get:89 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 overlayroot all 0.45ubuntu2 [15.6 kB]
Get:90 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 usb-modeswitch-data all 20191128-3 [32.3 kB]
Get:91 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 usb-modeswitch amd64 2.5.2+repack0-2ubuntu3 [53.1 kB]
Fetched 44.3 MB in 1min 25s (523 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
(Reading database ... 71960 files and directories currently installed.)
Preparing to unpack .../motd-news-config_11ubuntu5.8_all.deb ...
Unpacking motd-news-config (11ubuntu5.8) over (11ubuntu5.4) ...
Preparing to unpack .../base-files_11ubuntu5.8_amd64.deb ...
Warning: Stopping motd-news.service, but it can still be activated by:
  motd-news.timer
Unpacking base-files (11ubuntu5.8) over (11ubuntu5.4) ...
Setting up base-files (11ubuntu5.8) ...
Installing new version of config file /etc/issue ...
Installing new version of config file /etc/issue.net ...
Installing new version of config file /etc/lsb-release ...
Installing new version of config file /etc/update-motd.d/10-help-text ...
motd-news.service is a disabled or a static unit, not starting it.
(Reading database ... 71960 files and directories currently installed.)
Preparing to unpack .../libnss-systemd_245.4-4ubuntu3.23_amd64.deb ...
Unpacking libnss-systemd:amd64 (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../udev_245.4-4ubuntu3.23_amd64.deb ...
Unpacking udev (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../libudev1_245.4-4ubuntu3.23_amd64.deb ...
Unpacking libudev1:amd64 (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Setting up libudev1:amd64 (245.4-4ubuntu3.23) ...
(Reading database ... 71960 files and directories currently installed.)
Preparing to unpack .../00-kmod_27-1ubuntu2.1_amd64.deb ...
Unpacking kmod (27-1ubuntu2.1) over (27-1ubuntu2) ...
Preparing to unpack .../01-libkmod2_27-1ubuntu2.1_amd64.deb ...
Unpacking libkmod2:amd64 (27-1ubuntu2.1) over (27-1ubuntu2) ...
Preparing to unpack .../02-systemd-sysv_245.4-4ubuntu3.23_amd64.deb ...
Unpacking systemd-sysv (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../03-systemd-timesyncd_245.4-4ubuntu3.23_amd64.deb ...
Unpacking systemd-timesyncd (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../04-libpam-systemd_245.4-4ubuntu3.23_amd64.deb ...
Unpacking libpam-systemd:amd64 (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../05-libapparmor1_2.13.3-7ubuntu5.3_amd64.deb ...
Unpacking libapparmor1:amd64 (2.13.3-7ubuntu5.3) over (2.13.3-7ubuntu5.1) ...
Preparing to unpack .../06-libxtables12_1.8.4-3ubuntu2.1_amd64.deb ...
Unpacking libxtables12:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
Preparing to unpack .../07-iptables_1.8.4-3ubuntu2.1_amd64.deb ...
Unpacking iptables (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
Preparing to unpack .../08-libip6tc2_1.8.4-3ubuntu2.1_amd64.deb ...
Unpacking libip6tc2:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
Preparing to unpack .../09-libip4tc2_1.8.4-3ubuntu2.1_amd64.deb ...
Unpacking libip4tc2:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
Preparing to unpack .../10-systemd_245.4-4ubuntu3.23_amd64.deb ...
Unpacking systemd (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Preparing to unpack .../11-libsystemd0_245.4-4ubuntu3.23_amd64.deb ...
Unpacking libsystemd0:amd64 (245.4-4ubuntu3.23) over (245.4-4ubuntu3.20) ...
Setting up libsystemd0:amd64 (245.4-4ubuntu3.23) ...
(Reading database ... 71960 files and directories currently installed.)
Preparing to unpack .../libapt-pkg6.0_2.0.10_amd64.deb ...
Unpacking libapt-pkg6.0:amd64 (2.0.10) over (2.0.6) ...
Setting up libapt-pkg6.0:amd64 (2.0.10) ...
(Reading database ... 71960 files and directories currently installed.)
Preparing to unpack .../archives/apt_2.0.10_amd64.deb ...
Unpacking apt (2.0.10) over (2.0.6) ...
Setting up apt (2.0.10) ...
Removing obsolete conffile /etc/kernel/postinst.d/apt-auto-removal ...
(Reading database ... 71957 files and directories currently installed.)
Preparing to unpack .../00-apt-utils_2.0.10_amd64.deb ...
Unpacking apt-utils (2.0.10) over (2.0.6) ...
Preparing to unpack .../01-rsync_3.1.3-8ubuntu0.7_amd64.deb ...
Unpacking rsync (3.1.3-8ubuntu0.7) over (3.1.3-8ubuntu0.5) ...
Preparing to unpack .../02-python-apt-common_2.0.1ubuntu0.20.04.1_all.deb ...
Unpacking python-apt-common (2.0.1ubuntu0.20.04.1) over (2.0.0ubuntu0.20.04.5) ...
Preparing to unpack .../03-python3-apt_2.0.1ubuntu0.20.04.1_amd64.deb ...
Unpacking python3-apt (2.0.1ubuntu0.20.04.1) over (2.0.0ubuntu0.20.04.5) ...
Preparing to unpack .../04-python3-debian_0.1.36ubuntu1.1_all.deb ...
Unpacking python3-debian (0.1.36ubuntu1.1) over (0.1.36ubuntu1) ...
Preparing to unpack .../05-python3-distro-info_0.23ubuntu1.1_all.deb ...
Unpacking python3-distro-info (0.23ubuntu1.1) over (0.23ubuntu1) ...
Preparing to unpack .../06-ubuntu-release-upgrader-core_1%3a20.04.41_all.deb ...
Unpacking ubuntu-release-upgrader-core (1:20.04.41) over (1:20.04.36) ...
Preparing to unpack .../07-update-manager-core_1%3a20.04.10.21_all.deb ...
Unpacking update-manager-core (1:20.04.10.21) over (1:20.04.10.7) ...
Preparing to unpack .../08-python3-distupgrade_1%3a20.04.41_all.deb ...
Unpacking python3-distupgrade (1:20.04.41) over (1:20.04.36) ...
Preparing to unpack .../09-python3-update-manager_1%3a20.04.10.21_all.deb ...
Unpacking python3-update-manager (1:20.04.10.21) over (1:20.04.10.7) ...
Preparing to unpack .../10-distro-info_0.23ubuntu1.1_amd64.deb ...
Unpacking distro-info (0.23ubuntu1.1) over (0.23ubuntu1) ...
Preparing to unpack .../11-ubuntu-advantage-tools_31.2.2~20.04_all.deb ...
Unpacking ubuntu-advantage-tools (31.2.2~20.04) over (27.2.2~20.04.1) ...
dpkg: warning: unable to delete old directory '/var/lib/ubuntu-advantage': Directory not empty
dpkg: warning: unable to delete old directory '/etc/ubuntu-advantage': Directory not empty
Selecting previously unselected package ubuntu-pro-client.
Preparing to unpack .../12-ubuntu-pro-client_31.2.2~20.04_amd64.deb ...
Unpacking ubuntu-pro-client (31.2.2~20.04) ...
Preparing to unpack .../13-update-notifier-common_3.192.30.19_all.deb ...
Unpacking update-notifier-common (3.192.30.19) over (3.192.30.9) ...
Preparing to unpack .../14-iputils-ping_3%3a20190709-3ubuntu1_amd64.deb ...
Unpacking iputils-ping (3:20190709-3ubuntu1) over (3:20190709-3) ...
Preparing to unpack .../15-isc-dhcp-client_4.4.1-2.1ubuntu5.20.04.5_amd64.deb ...
Unpacking isc-dhcp-client (4.4.1-2.1ubuntu5.20.04.5) over (4.4.1-2.1ubuntu5.20.04.4) ...
Preparing to unpack .../16-isc-dhcp-common_4.4.1-2.1ubuntu5.20.04.5_amd64.deb ...
Unpacking isc-dhcp-common (4.4.1-2.1ubuntu5.20.04.5) over (4.4.1-2.1ubuntu5.20.04.4) ...
Preparing to unpack .../17-libnetplan0_0.104-0ubuntu2~20.04.4_amd64.deb ...
Unpacking libnetplan0:amd64 (0.104-0ubuntu2~20.04.4) over (0.102-0ubuntu1~20.04.2) ...
Preparing to unpack .../18-initramfs-tools_0.136ubuntu6.7_all.deb ...
Unpacking initramfs-tools (0.136ubuntu6.7) over (0.136ubuntu6.6) ...
Preparing to unpack .../19-initramfs-tools-core_0.136ubuntu6.7_all.deb ...
Unpacking initramfs-tools-core (0.136ubuntu6.7) over (0.136ubuntu6.6) ...
Preparing to unpack .../20-initramfs-tools-bin_0.136ubuntu6.7_amd64.deb ...
Unpacking initramfs-tools-bin (0.136ubuntu6.7) over (0.136ubuntu6.6) ...
Preparing to unpack .../21-linux-base_4.5ubuntu3.7_all.deb ...
Unpacking linux-base (4.5ubuntu3.7) over (4.5ubuntu3.6) ...
Preparing to unpack .../22-netplan.io_0.104-0ubuntu2~20.04.4_amd64.deb ...
Unpacking netplan.io (0.104-0ubuntu2~20.04.4) over (0.102-0ubuntu1~20.04.2) ...
Selecting previously unselected package ubuntu-pro-client-l10n.
Preparing to unpack .../23-ubuntu-pro-client-l10n_31.2.2~20.04_amd64.deb ...
Unpacking ubuntu-pro-client-l10n (31.2.2~20.04) ...
Preparing to unpack .../24-apparmor_2.13.3-7ubuntu5.3_amd64.deb ...
Unpacking apparmor (2.13.3-7ubuntu5.3) over (2.13.3-7ubuntu5.1) ...
Preparing to unpack .../25-command-not-found_20.04.6_all.deb ...
Unpacking command-not-found (20.04.6) over (20.04.4) ...
Preparing to unpack .../26-python3-commandnotfound_20.04.6_all.deb ...
Unpacking python3-commandnotfound (20.04.6) over (20.04.4) ...
Preparing to unpack .../27-iputils-tracepath_3%3a20190709-3ubuntu1_amd64.deb ...
Unpacking iputils-tracepath (3:20190709-3ubuntu1) over (3:20190709-3) ...
Preparing to unpack .../28-libkeyutils1_1.6-6ubuntu1.1_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.6-6ubuntu1.1) over (1.6-6ubuntu1) ...
Preparing to unpack .../29-ltrace_0.7.3-6.1ubuntu1.1_amd64.deb ...
Unpacking ltrace (0.7.3-6.1ubuntu1.1) over (0.7.3-6.1ubuntu1) ...
Preparing to unpack .../30-tcpdump_4.9.3-4ubuntu0.3_amd64.deb ...
Unpacking tcpdump (4.9.3-4ubuntu0.3) over (4.9.3-4ubuntu0.1) ...
Preparing to unpack .../31-ufw_0.36-6ubuntu1.1_all.deb ...
Unpacking ufw (0.36-6ubuntu1.1) over (0.36-6) ...
Preparing to unpack .../32-wget_1.20.3-1ubuntu2_amd64.deb ...
Unpacking wget (1.20.3-1ubuntu2) over (1.20.3-1ubuntu1) ...
Preparing to unpack .../33-libasound2_1.2.2-2.1ubuntu2.5_amd64.deb ...
Unpacking libasound2:amd64 (1.2.2-2.1ubuntu2.5) over (1.2.2-2.1ubuntu2.4) ...
Preparing to unpack .../34-libasound2-data_1.2.2-2.1ubuntu2.5_all.deb ...
Unpacking libasound2-data (1.2.2-2.1ubuntu2.5) over (1.2.2-2.1ubuntu2.4) ...
Preparing to unpack .../35-alsa-ucm-conf_1.2.2-1ubuntu0.13_all.deb ...
Unpacking alsa-ucm-conf (1.2.2-1ubuntu0.13) over (1.2.2-1ubuntu0.9) ...
Preparing to unpack .../36-python3-problem-report_2.20.11-0ubuntu27.27_all.deb ...
Unpacking python3-problem-report (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.26) ...
Preparing to unpack .../37-python3-apport_2.20.11-0ubuntu27.27_all.deb ...
Unpacking python3-apport (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.26) ...
Preparing to unpack .../38-apport_2.20.11-0ubuntu27.27_all.deb ...
Unpacking apport (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.26) ...
Preparing to unpack .../39-bolt_0.9.1-2~ubuntu20.04.2_amd64.deb ...
Unpacking bolt (0.9.1-2~ubuntu20.04.2) over (0.8-4ubuntu1) ...
Preparing to unpack .../40-fwupd-signed_1.51.1~20.04.1+1.4-0ubuntu0.1_amd64.deb ...
Unpacking fwupd-signed (1.51.1~20.04.1+1.4-0ubuntu0.1) over (1.27.1ubuntu5+1.5.11-0ubuntu1~20.04.2) ...
Preparing to unpack .../41-libgpgme11_1.13.1-7ubuntu2.2_amd64.deb ...
Unpacking libgpgme11:amd64 (1.13.1-7ubuntu2.2) over (1.13.1-7ubuntu2) ...
Preparing to unpack .../42-libjcat1_0.1.4-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libjcat1:amd64 (0.1.4-0ubuntu0.20.04.1) over (0.1.3-2~ubuntu20.04.1) ...
Preparing to unpack .../43-libfwupd2_1.7.9-1~20.04.3_amd64.deb ...
Unpacking libfwupd2:amd64 (1.7.9-1~20.04.3) over (1.5.11-0ubuntu1~20.04.2) ...
Selecting previously unselected package libxmlb2:amd64.
Preparing to unpack .../44-libxmlb2_0.3.6-2build1~20.04.1_amd64.deb ...
Unpacking libxmlb2:amd64 (0.3.6-2build1~20.04.1) ...
Selecting previously unselected package libfwupdplugin5:amd64.
Preparing to unpack .../45-libfwupdplugin5_1.7.9-1~20.04.3_amd64.deb ...
Unpacking libfwupdplugin5:amd64 (1.7.9-1~20.04.3) ...
Selecting previously unselected package libmbim-glib4:amd64.
Preparing to unpack .../46-libmbim-glib4_1.26.2-1~ubuntu20.04.1_amd64.deb ...
Unpacking libmbim-glib4:amd64 (1.26.2-1~ubuntu20.04.1) ...
Selecting previously unselected package libmbim-proxy.
Preparing to unpack .../47-libmbim-proxy_1.26.2-1~ubuntu20.04.1_amd64.deb ...
Unpacking libmbim-proxy (1.26.2-1~ubuntu20.04.1) ...
Selecting previously unselected package libmm-glib0:amd64.
Preparing to unpack .../48-libmm-glib0_1.18.6-1~ubuntu20.04.1_amd64.deb ...
Unpacking libmm-glib0:amd64 (1.18.6-1~ubuntu20.04.1) ...
Selecting previously unselected package libqmi-glib5:amd64.
Preparing to unpack .../49-libqmi-glib5_1.30.4-1~ubuntu20.04.1_amd64.deb ...
Unpacking libqmi-glib5:amd64 (1.30.4-1~ubuntu20.04.1) ...
Selecting previously unselected package libqmi-proxy.
Preparing to unpack .../50-libqmi-proxy_1.30.4-1~ubuntu20.04.1_amd64.deb ...
Unpacking libqmi-proxy (1.30.4-1~ubuntu20.04.1) ...
Preparing to unpack .../51-libtss2-esys0_2.3.2-1ubuntu0.20.04.1_amd64.deb ...
Unpacking libtss2-esys0 (2.3.2-1ubuntu0.20.04.1) over (2.3.2-1) ...
Preparing to unpack .../52-fwupd_1.7.9-1~20.04.3_amd64.deb ...
Unpacking fwupd (1.7.9-1~20.04.3) over (1.5.11-0ubuntu1~20.04.2) ...
Preparing to unpack .../53-landscape-common_23.02-0ubuntu1~20.04.2_amd64.deb ...
Unpacking landscape-common (23.02-0ubuntu1~20.04.2) over (19.12-0ubuntu4.2) ...
Preparing to unpack .../54-libudisks2-0_2.8.4-1ubuntu2_amd64.deb ...
Unpacking libudisks2-0:amd64 (2.8.4-1ubuntu2) over (2.8.4-1ubuntu1) ...
Preparing to unpack .../55-libunwind8_1.2.1-9ubuntu0.1_amd64.deb ...
Unpacking libunwind8:amd64 (1.2.1-9ubuntu0.1) over (1.2.1-9build1) ...
Selecting previously unselected package modemmanager.
Preparing to unpack .../56-modemmanager_1.18.6-1~ubuntu20.04.1_amd64.deb ...
Unpacking modemmanager (1.18.6-1~ubuntu20.04.1) ...
Preparing to unpack .../57-software-properties-common_0.99.9.12_all.deb ...
Unpacking software-properties-common (0.99.9.12) over (0.98.9.5) ...
Preparing to unpack .../58-python3-software-properties_0.99.9.12_all.deb ...
Unpacking python3-software-properties (0.99.9.12) over (0.98.9.5) ...
Preparing to unpack .../59-sbsigntool_0.9.2-2ubuntu1.1_amd64.deb ...
Unpacking sbsigntool (0.9.2-2ubuntu1.1) over (0.9.2-2ubuntu1) ...
Preparing to unpack .../60-snapd_2.61.3+20.04_amd64.deb ...
Unpacking snapd (2.61.3+20.04) over (2.58+20.04.1) ...
Preparing to unpack .../61-sosreport_4.5.6-0ubuntu1~20.04.2_amd64.deb ...
Unpacking sosreport (4.5.6-0ubuntu1~20.04.2) over (4.3-1ubuntu0.20.04.2) ...
Preparing to unpack .../62-udisks2_2.8.4-1ubuntu2_amd64.deb ...
Unpacking udisks2 (2.8.4-1ubuntu2) over (2.8.4-1ubuntu1) ...
Preparing to unpack .../63-unattended-upgrades_2.3ubuntu0.3_all.deb ...
Unpacking unattended-upgrades (2.3ubuntu0.3) over (2.3ubuntu0.1) ...
Preparing to unpack .../64-cloud-init_24.1.3-0ubuntu1~20.04.1_all.deb ...
Unpacking cloud-init (24.1.3-0ubuntu1~20.04.1) over (23.1.2-0ubuntu0~20.04.2) ...
dpkg: warning: unable to delete old directory '/etc/NetworkManager/dispatcher.d': Directory not empty
dpkg: warning: unable to delete old directory '/etc/NetworkManager': Directory not empty
Preparing to unpack .../65-cloud-initramfs-copymods_0.45ubuntu2_all.deb ...
Unpacking cloud-initramfs-copymods (0.45ubuntu2) over (0.45ubuntu1) ...
Preparing to unpack .../66-cloud-initramfs-dyn-netconf_0.45ubuntu2_all.deb ...
Unpacking cloud-initramfs-dyn-netconf (0.45ubuntu2) over (0.45ubuntu1) ...
Preparing to unpack .../67-kpartx_0.8.3-1ubuntu2.3_amd64.deb ...
Unpacking kpartx (0.8.3-1ubuntu2.3) over (0.8.3-1ubuntu2.1) ...
Preparing to unpack .../68-multipath-tools_0.8.3-1ubuntu2.3_amd64.deb ...
Warning: Stopping multipath-tools.service, but it can still be activated by:
  multipathd.socket
Unpacking multipath-tools (0.8.3-1ubuntu2.3) over (0.8.3-1ubuntu2.1) ...
Preparing to unpack .../69-overlayroot_0.45ubuntu2_all.deb ...
Unpacking overlayroot (0.45ubuntu2) over (0.45ubuntu1) ...
Selecting previously unselected package usb-modeswitch-data.
Preparing to unpack .../70-usb-modeswitch-data_20191128-3_all.deb ...
Unpacking usb-modeswitch-data (20191128-3) ...
Selecting previously unselected package usb-modeswitch.
Preparing to unpack .../71-usb-modeswitch_2.5.2+repack0-2ubuntu3_amd64.deb ...
Unpacking usb-modeswitch (2.5.2+repack0-2ubuntu3) ...
Setting up libip4tc2:amd64 (1.8.4-3ubuntu2.1) ...
Setting up motd-news-config (11ubuntu5.8) ...
Setting up distro-info (0.23ubuntu1.1) ...
Setting up tcpdump (4.9.3-4ubuntu0.3) ...
Installing new version of config file /etc/apparmor.d/usr.sbin.tcpdump ...
Warning from /etc/apparmor.d/usr.sbin.tcpdump (/etc/apparmor.d/usr.sbin.tcpdump line 4): apparmor_parser: File '/etc/apparmor.d/usr.sbin.tcpdump' missing feature abi, falling back to default policy feature abi
Setting up libkeyutils1:amd64 (1.6-6ubuntu1.1) ...
Setting up libapparmor1:amd64 (2.13.3-7ubuntu5.3) ...
Setting up apt-utils (2.0.10) ...
Setting up linux-base (4.5ubuntu3.7) ...
Setting up wget (1.20.3-1ubuntu2) ...
Setting up alsa-ucm-conf (1.2.2-1ubuntu0.13) ...
Setting up libtss2-esys0 (2.3.2-1ubuntu0.20.04.1) ...
Setting up python3-problem-report (2.20.11-0ubuntu27.27) ...
Setting up libip6tc2:amd64 (1.8.4-3ubuntu2.1) ...
Setting up libxmlb2:amd64 (0.3.6-2build1~20.04.1) ...
Setting up ltrace (0.7.3-6.1ubuntu1.1) ...
Setting up isc-dhcp-client (4.4.1-2.1ubuntu5.20.04.5) ...
Installing new version of config file /etc/apparmor.d/sbin.dhclient ...
Warning from /etc/apparmor.d/sbin.dhclient (/etc/apparmor.d/sbin.dhclient line 4): apparmor_parser: File '/etc/apparmor.d/sbin.dhclient' missing feature abi, falling back to default policy feature abi
Setting up libnetplan0:amd64 (0.104-0ubuntu2~20.04.4) ...
Setting up fwupd-signed (1.51.1~20.04.1+1.4-0ubuntu0.1) ...
Setting up libunwind8:amd64 (1.2.1-9ubuntu0.1) ...
Setting up libgpgme11:amd64 (1.13.1-7ubuntu2.2) ...
Setting up libjcat1:amd64 (0.1.4-0ubuntu0.20.04.1) ...
Setting up libasound2-data (1.2.2-2.1ubuntu2.5) ...
Setting up apparmor (2.13.3-7ubuntu5.3) ...
Installing new version of config file /etc/apparmor/parser.conf ...
Reloading AppArmor profiles
Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Setting up python3-debian (0.1.36ubuntu1.1) ...
Setting up usb-modeswitch-data (20191128-3) ...
Setting up libxtables12:amd64 (1.8.4-3ubuntu2.1) ...
Setting up sosreport (4.5.6-0ubuntu1~20.04.2) ...
Setting up python-apt-common (2.0.1ubuntu0.20.04.1) ...
Setting up libmm-glib0:amd64 (1.18.6-1~ubuntu20.04.1) ...
Setting up libasound2:amd64 (1.2.2-2.1ubuntu2.5) ...
Setting up isc-dhcp-common (4.4.1-2.1ubuntu5.20.04.5) ...
Setting up usb-modeswitch (2.5.2+repack0-2ubuntu3) ...
Setting up sbsigntool (0.9.2-2ubuntu1.1) ...
Setting up python3-distro-info (0.23ubuntu1.1) ...
Setting up iputils-ping (3:20190709-3ubuntu1) ...
Setting up libmbim-glib4:amd64 (1.26.2-1~ubuntu20.04.1) ...
Setting up iputils-tracepath (3:20190709-3ubuntu1) ...
Setting up rsync (3.1.3-8ubuntu0.7) ...
Setting up libudisks2-0:amd64 (2.8.4-1ubuntu2) ...
Setting up libkmod2:amd64 (27-1ubuntu2.1) ...
Setting up bolt (0.9.1-2~ubuntu20.04.2) ...
bolt.service is a disabled or a static unit not running, not starting it.
Setting up initramfs-tools-bin (0.136ubuntu6.7) ...
Setting up iptables (1.8.4-3ubuntu2.1) ...
Setting up python3-apt (2.0.1ubuntu0.20.04.1) ...
Setting up libfwupd2:amd64 (1.7.9-1~20.04.3) ...
Setting up ufw (0.36-6ubuntu1.1) ...
Setting up libmbim-proxy (1.26.2-1~ubuntu20.04.1) ...
Setting up kmod (27-1ubuntu2.1) ...
update-initramfs: deferring update (trigger activated)
Setting up landscape-common (23.02-0ubuntu1~20.04.2) ...
Setting up python3-apport (2.20.11-0ubuntu27.27) ...
Setting up unattended-upgrades (2.3ubuntu0.3) ...
Installing new version of config file /etc/kernel/postinst.d/unattended-upgrades ...
Setting up python3-software-properties (0.99.9.12) ...
Setting up python3-commandnotfound (20.04.6) ...
Setting up udev (245.4-4ubuntu3.23) ...
update-initramfs: deferring update (trigger activated)
Setting up kpartx (0.8.3-1ubuntu2.3) ...
Setting up initramfs-tools-core (0.136ubuntu6.7) ...
Setting up libfwupdplugin5:amd64 (1.7.9-1~20.04.3) ...
Setting up ubuntu-pro-client (31.2.2~20.04) ...
Created symlink /etc/systemd/system/timers.target.wants/ua-timer.timer → /lib/systemd/system/ua-timer.timer.
Created symlink /etc/systemd/system/multi-user.target.wants/ubuntu-advantage.service → /lib/systemd/system/ubuntu-advantage.service.
Setting up ubuntu-pro-client-l10n (31.2.2~20.04) ...
Setting up initramfs-tools (0.136ubuntu6.7) ...
update-initramfs: deferring update (trigger activated)
Setting up libqmi-glib5:amd64 (1.30.4-1~ubuntu20.04.1) ...
Setting up software-properties-common (0.99.9.12) ...
Setting up apport (2.20.11-0ubuntu27.27) ...
apport-autoreport.service is a disabled or a static unit, not starting it.
Setting up multipath-tools (0.8.3-1ubuntu2.3) ...
Job failed. See "journalctl -xe" for details.
Removing obsolete conffile /etc/init.d/multipath-tools ...
Setting up command-not-found (20.04.6) ...
Setting up cloud-initramfs-copymods (0.45ubuntu2) ...
Setting up cloud-initramfs-dyn-netconf (0.45ubuntu2) ...
Setting up ubuntu-advantage-tools (31.2.2~20.04) ...
Removing obsolete conffile /etc/update-motd.d/88-esm-announce ...
Removing obsolete conffile /etc/ubuntu-advantage/help_data.yaml ...
Setting up overlayroot (0.45ubuntu2) ...
Setting up libqmi-proxy (1.30.4-1~ubuntu20.04.1) ...
Setting up modemmanager (1.18.6-1~ubuntu20.04.1) ...
Created symlink /etc/systemd/system/dbus-org.freedesktop.ModemManager1.service → /lib/systemd/system/ModemManager.service.
Created symlink /etc/systemd/system/multi-user.target.wants/ModemManager.service → /lib/systemd/system/ModemManager.service.
Setting up fwupd (1.7.9-1~20.04.3) ...
Installing new version of config file /etc/fwupd/daemon.conf ...
Installing new version of config file /etc/fwupd/redfish.conf ...
Installing new version of config file /etc/fwupd/remotes.d/lvfs-testing.conf ...
Installing new version of config file /etc/fwupd/uefi_capsule.conf ...
Installing new version of config file /etc/update-motd.d/85-fwupd ...
fwupd-offline-update.service is a disabled or a static unit not running, not starting it.
fwupd-refresh.service is a disabled or a static unit not running, not starting it.
fwupd.service is a disabled or a static unit not running, not starting it.
Setting up systemd (245.4-4ubuntu3.23) ...
Setting up netplan.io (0.104-0ubuntu2~20.04.4) ...
Setting up systemd-timesyncd (245.4-4ubuntu3.23) ...
Setting up python3-update-manager (1:20.04.10.21) ...
Setting up snapd (2.61.3+20.04) ...
Installing new version of config file /etc/apparmor.d/usr.lib.snapd.snap-confine.real ...
snapd.failure.service is a disabled or a static unit not running, not starting it.
snapd.snap-repair.service is a disabled or a static unit not running, not starting it.
Failed to restart snapd.mounts-pre.target: Operation refused, unit snapd.mounts-pre.target may be requested by dependency only (it is configured to refuse manual start/stop).
See system logs and 'systemctl status snapd.mounts-pre.target' for details.
Setting up systemd-sysv (245.4-4ubuntu3.23) ...
Setting up cloud-init (24.1.3-0ubuntu1~20.04.1) ...
Installing new version of config file /etc/cloud/cloud.cfg ...
Installing new version of config file /etc/cloud/cloud.cfg.d/05_logging.cfg ...
Installing new version of config file /etc/cloud/templates/chrony.conf.alpine.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.centos.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.cos.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.debian.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.fedora.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.freebsd.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.opensuse-leap.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.opensuse-microos.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.opensuse-tumbleweed.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.opensuse.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.photon.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.rhel.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.sle-micro.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.sle_hpc.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.sles.tmpl ...
Installing new version of config file /etc/cloud/templates/chrony.conf.ubuntu.tmpl ...
Installing new version of config file /etc/cloud/templates/hosts.alpine.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.alpine.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.debian.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.fedora.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.freebsd.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.opensuse.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.photon.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.rhel.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.sles.tmpl ...
Installing new version of config file /etc/cloud/templates/ntp.conf.ubuntu.tmpl ...
Installing new version of config file /etc/cloud/templates/ntpd.conf.openbsd.tmpl ...
Installing new version of config file /etc/profile.d/Z99-cloud-locale-test.sh ...
Installing new version of config file /etc/profile.d/Z99-cloudinit-warnings.sh ...
Removing obsolete conffile /etc/NetworkManager/dispatcher.d/hook-network-manager ...
Removing obsolete conffile /etc/cloud/clean.d/README ...
Setting up libnss-systemd:amd64 (245.4-4ubuntu3.23) ...
Setting up python3-distupgrade (1:20.04.41) ...
Setting up ubuntu-release-upgrader-core (1:20.04.41) ...
Setting up update-manager-core (1:20.04.10.21) ...
Setting up libpam-systemd:amd64 (245.4-4ubuntu3.23) ...
Setting up udisks2 (2.8.4-1ubuntu2) ...
Setting up update-notifier-common (3.192.30.19) ...
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
Processing triggers for rsyslog (8.2001.0-1ubuntu1.3) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for plymouth-theme-ubuntu-text (0.9.4git20200323-0ubuntu6.2) ...
update-initramfs: deferring update (trigger activated)
Processing triggers for dbus (1.12.16-2ubuntu2.3) ...
Processing triggers for install-info (6.7.0.dfsg.2-5) ...
Processing triggers for mime-support (3.64ubuntu1) ...
Processing triggers for initramfs-tools (0.136ubuntu6.7) ...
update-initramfs: Generating /boot/initrd.img-5.4.0-177-generic
root@miner:/etc/netplan# exit
exit
miner@miner:~$ exit
logout

──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Session stopped
    - Press <return> to exit tab
    - Press R to restart session
    - Press S to save terminal output to file
login as: mienr
mienr@172.20.0.12's password:
Access denied
mienr@172.20.0.12's password:
Access denied
mienr@172.20.0.12's password:

──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Session stopped
    - Press <return> to exit tab
    - Press R to restart session
    - Press S to save terminal output to file
login as: miner
miner@172.20.0.12's password:
    ┌──────────────────────────────────────────────────────────────────────┐
    │                 • MobaXterm Personal Edition v21.5 •                 │
    │               (SSH client, X server and network tools)               │
    │                                                                      │
    │ ➤ SSH session to miner@172.20.0.12                                   │
    │   • Direct SSH      :  ✔                                             │
    │   • SSH compression :  ✔                                             │
    │   • SSH-browser     :  ✔                                             │
    │   • X11-forwarding  :  ✔  (remote display is forwarded through SSH)  │
    │                                                                      │
    │ ➤ For more info, ctrl+click on help or visit our website.            │
    └──────────────────────────────────────────────────────────────────────┘

Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-177-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Tue 07 May 2024 03:21:10 AM UTC

  System load:  0.53               Processes:               283
  Usage of /:   3.3% of 195.80GB   Users logged in:         1
  Memory usage: 2%                 IPv4 address for ens160: 172.20.0.12
  Swap usage:   0%


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


Last login: Tue May  7 03:04:40 2024 from 172.20.0.88
miner@miner:~$ su root
Password:
root@miner:/home/miner# cd
root@miner:~# ll
total 32
drwx------  4 root root 4096 May  7 03:20 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
-rw-------  1 root root  159 May  7 03:20 .bash_history
-rw-r--r--  1 root root 3106 Dec  5  2019 .bashrc
-rw-r--r--  1 root root  161 Dec  5  2019 .profile
drwx------  3 root root 4096 May  7 03:05 snap/
drwx------  2 root root 4096 May  7 03:05 .ssh/
-rw-------  1 root root 2219 May  7 03:08 .viminfo
root@miner:~# df -h
Filesystem                         Size  Used Avail Use% Mounted on
udev                               7.8G     0  7.8G   0% /dev
tmpfs                              1.6G  1.3M  1.6G   1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv  196G  6.4G  180G   4% /
tmpfs                              7.9G     0  7.9G   0% /dev/shm
tmpfs                              5.0M     0  5.0M   0% /run/lock
tmpfs                              7.9G     0  7.9G   0% /sys/fs/cgroup
/dev/loop0                          71M   71M     0 100% /snap/lxd/21029
/dev/loop1                          33M   33M     0 100% /snap/snapd/12704
/dev/loop2                          56M   56M     0 100% /snap/core18/2128
/dev/sda2                          974M  108M  799M  12% /boot
tmpfs                              1.6G     0  1.6G   0% /run/user/1000
root@miner:~# cd
root@miner:~# ll
total 32
drwx------  4 root root 4096 May  7 03:20 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
-rw-------  1 root root  159 May  7 03:20 .bash_history
-rw-r--r--  1 root root 3106 Dec  5  2019 .bashrc
-rw-r--r--  1 root root  161 Dec  5  2019 .profile
drwx------  3 root root 4096 May  7 03:05 snap/
drwx------  2 root root 4096 May  7 03:05 .ssh/
-rw-------  1 root root 2219 May  7 03:08 .viminfo
root@miner:~# vi /etc/ssh/sshd_config
root@miner:~# service ssh restart
root@miner:~# sudo apt-get update
Err:1 http://cn.archive.ubuntu.com/ubuntu focal InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:2 http://cn.archive.ubuntu.com/ubuntu focal-updates InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:3 http://cn.archive.ubuntu.com/ubuntu focal-backports InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Err:4 http://cn.archive.ubuntu.com/ubuntu focal-security InRelease
  Temporary failure resolving 'cn.archive.ubuntu.com'
Reading package lists... Done
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-security/InRelease  Temporary failure resolving 'cn.archive.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.
root@miner:~# sudo apt-get install git
Reading package lists... Done
Building dependency tree
Reading state information... Done
git is already the newest version (1:2.25.1-1ubuntu3.11).
git set to manually installed.
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@miner:~# sudo apt-get update
Err:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
Err:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease
  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
Err:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease
  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
Hit:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-security InRelease
Reading package lists... Done
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal/InRelease  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease  Temporary failure resolving 'mirrors.tuna.tsinghua.edu.cn'
W: Some index files failed to download. They have been ignored, or old ones used instead.
root@miner:~# git clone https://git.zabbix.com/scm/zbx/zabbix.git
Cloning into 'zabbix'...
remote: Enumerating objects: 11362, done.
remote: Counting objects: 100% (11362/11362), done.
remote: Compressing objects: 100% (7607/7607), done.
error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated.
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
root@miner:~# git clone https://git.zabbix.com/scm/zbx/zabbix.git
Cloning into 'zabbix'...
fatal: unable to access 'https://git.zabbix.com/scm/zbx/zabbix.git/': Could not resolve host: git.zabbix.com
root@miner:~# vi /etc/netplan/00-installer-config.yaml
root@miner:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: ens160: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 00:0c:29:a6:64:a1 brd ff:ff:ff:ff:ff:ff
    inet 172.20.0.12/24 brd 172.20.0.255 scope global ens160
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:fea6:64a1/64 scope link
       valid_lft forever preferred_lft forever
root@miner:~# ^C
root@miner:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: ens160: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 00:0c:29:a6:64:a1 brd ff:ff:ff:ff:ff:ff
    inet 172.20.0.12/24 brd 172.20.0.255 scope global dynamic ens160
       valid_lft 45sec preferred_lft 45sec
    inet6 fe80::20c:29ff:fea6:64a1/64 scope link
       valid_lft forever preferred_lft forever
root@miner:~# sudo apt-get update
Hit:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Hit:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease
Hit:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease
Hit:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-security InRelease
Reading package lists... Done
root@miner:~# git clone https://git.zabbix.com/scm/zbx/zabbix.git
Cloning into 'zabbix'...
remote: Enumerating objects: 11362, done.
remote: Counting objects: 100% (11362/11362), done.
remote: Compressing objects: 100% (7607/7607), done.
error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated.
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
root@miner:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.debwget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb^C
root@miner:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
--2024-05-07 06:53:25--  http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2024-05-07 06:53:25 ERROR 404: Not Found.

root@miner:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
--2024-05-07 06:53:30--  http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2024-05-07 06:53:30 ERROR 404: Not Found.

root@miner:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
--2024-05-07 06:53:32--  http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2024-05-07 06:53:33 ERROR 404: Not Found.

root@miner:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
--2024-05-07 06:57:58--  http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.5-1+bionic_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2024-05-07 06:57:58 ERROR 404: Not Found.

root@miner:~# cd /usr/local/
root@miner:/usr/local# ll
total 44
drwxr-xr-x 11 root root 4096 May  7 06:05 ./
drwxr-xr-x 14 root root 4096 May  7 02:34 ../
drwxr-xr-x  2 root root 4096 Aug 24  2021 bin/
drwxr-xr-x  2 root root 4096 Aug 24  2021 etc/
drwxr-xr-x  2 root root 4096 Aug 24  2021 games/
drwxr-xr-x  2 root root 4096 Aug 24  2021 include/
drwxr-xr-x  3 root root 4096 Aug 24  2021 lib/
lrwxrwxrwx  1 root root    9 Aug 24  2021 man -> share/man/
drwxr-xr-x  3 root root 4096 May  7 07:00 node_exporter/
drwxr-xr-x  2 root root 4096 Aug 24  2021 sbin/
drwxr-xr-x  5 root root 4096 May  7 06:00 share/
drwxr-xr-x  2 root root 4096 Aug 24  2021 src/
root@miner:/usr/local# cd /mnt
root@miner:/mnt# ll
total 8
drwxr-xr-x  2 root root 4096 Aug 24  2021 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
root@miner:/mnt# mkdir local
root@miner:/mnt# cd local/
root@miner:/mnt/local# mkdir log
root@miner:/mnt/local# nohup /usr/local/node_exporter/node_exporter > /mnt/local/log/node_exportre.log 2>&1 &
[1] 36809
root@miner:/mnt/local# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      25837/sshd: root@pt
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      25837/sshd: root@pt
tcp6       0      0 :::9100                 :::*                    LISTEN      36809/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:/mnt/local#
[1]+  Terminated              nohup /usr/local/node_exporter/node_exporter > /mnt/local/log/node_exportre.log 2>&1
root@miner:/mnt/local# ll
total 12
drwxr-xr-x 3 root root 4096 May  7 07:04 ./
drwxr-xr-x 3 root root 4096 May  7 07:04 ../
drwxr-xr-x 2 root root 4096 May  7 07:05 log/
root@miner:/mnt/local# lll

Command 'lll' not found, did you mean:

  command 'llt' from deb storebackup (3.2.1-1+deb8u1build0.20.04.1)
  command 'dll' from deb brickos (0.9.0.dfsg-12.2)
  command 'lli' from deb llvm-runtime (1:10.0-50~exp1)
  command 'lld' from deb lld (1:10.0-50~exp1)
  command 'llc' from deb llvm (1:10.0-50~exp1)

Try: apt install <deb name>

root@miner:/mnt/local# ll
total 12
drwxr-xr-x 3 root root 4096 May  7 07:04 ./
drwxr-xr-x 3 root root 4096 May  7 07:04 ../
drwxr-xr-x 2 root root 4096 May  7 07:05 log/
root@miner:/mnt/local# cd
root@miner:~# ll
total 44
drwx------  5 root root 4096 May  7 09:21 ./
drwxr-xr-x 20 root root 4096 May  7 02:19 ../
-rw-------  1 root root  725 May  7 09:21 .bash_history
-rw-r--r--  1 root root 3106 Dec  5  2019 .bashrc
drwx------  2 root root 4096 May  7 05:59 .cache/
-rw-r--r--  1 root root  161 Dec  5  2019 .profile
drwx------  3 root root 4096 May  7 03:05 snap/
drwx------  2 root root 4096 May  7 03:05 .ssh/
-rw-------  1 root root 4441 May  7 05:33 .viminfo
-rw-------  1 root root   51 May  7 09:21 .Xauthority
root@miner:~# apt install net-tools
Reading package lists... Done
Building dependency tree
Reading state information... Done
net-tools is already the newest version (1.60+git20180626.aebd88e-1ubuntu1).
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@miner:~# apt install node
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package node
root@miner:~# apt install npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'apt autoremove' to remove them.
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base gyp javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
  libalgorithm-merge-perl libasan5 libatomic1 libauthen-sasl-perl libbinutils libc-ares2 libc-dev-bin libc6-dev libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libdata-dump-perl libdpkg-perl libdrm-amdgpu1
  libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libencode-locale-perl libfakeroot libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl libfile-listing-perl libfile-mimeinfo-perl
  libfont-afm-perl libfontenc1 libgcc-9-dev libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl
  libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libice6 libio-html-perl libio-socket-ssl-perl libio-stringy-perl
  libipc-system-simple-perl libisl22 libitm1 libjs-inherits libjs-is-typedarray libjs-psl libjs-typedarray-to-buffer libllvm12 liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl
  libmpc3 libnet-dbus-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnode-dev libnode64 libpciaccess0 libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0
  libsensors-config libsensors5 libsm6 libssl-dev libstdc++-9-dev libtie-ixhash-perl libtimedate-perl libtry-tiny-perl libtsan0 libubsan1 liburi-perl libuv1-dev libvulkan1 libwayland-client0 libwww-perl
  libwww-robotrules-perl libx11-protocol-perl libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1
  libxcursor1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbfile1 libxml-parser-perl libxml-twig-perl libxml-xpathengine-perl libxmu6 libxrandr2 libxrender1 libxshmfence1 libxt6 libxtst6 libxv1
  libxxf86dga1 libxxf86vm1 linux-libc-dev make manpages-dev mesa-vulkan-drivers node-abbrev node-ajv node-ansi node-ansi-align node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-bl node-bluebird node-boxen node-brace-expansion
  node-builtin-modules node-builtins node-cacache node-call-limit node-camelcase node-caseless node-chalk node-chownr node-ci-info node-cli-boxes node-cliui node-clone node-co node-color-convert
  node-color-name node-colors node-columnify node-combined-stream node-concat-map node-concat-stream node-config-chain node-configstore node-console-control-strings node-copy-concurrently
  node-core-util-is node-cross-spawn node-crypto-random-string node-cyclist node-dashdash node-debug node-decamelize node-decompress-response node-deep-extend node-defaults node-define-properties
  node-delayed-stream node-delegates node-detect-indent node-detect-newline node-dot-prop node-duplexer3 node-duplexify node-ecc-jsbn node-editor node-encoding node-end-of-stream node-err-code node-errno
  node-es6-promise node-escape-string-regexp node-execa node-extend node-extsprintf node-fast-deep-equal node-find-up node-flush-write-stream node-forever-agent node-form-data node-from2 node-fs-vacuum
  node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-genfun node-get-caller-file node-get-stream node-getpass node-glob node-got node-graceful-fs node-gyp node-har-schema
  node-har-validator node-has-flag node-has-symbol-support-x node-has-to-string-tag-x node-has-unicode node-hosted-git-info node-http-signature node-iconv-lite node-iferr node-import-lazy node-imurmurhash
  node-inflight node-inherits node-ini node-invert-kv node-ip node-ip-regex node-is-npm node-is-obj node-is-object node-is-path-inside node-is-plain-obj node-is-retry-allowed node-is-stream
  node-is-typedarray node-isarray node-isexe node-isstream node-isurl node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse node-json-stable-stringify node-json-stringify-safe
  node-jsonify node-jsonparse node-jsonstream node-jsprim node-latest-version node-lazy-property node-lcid node-libnpx node-locate-path node-lockfile node-lodash node-lodash-packages node-lowercase-keys
  node-lru-cache node-make-dir node-mem node-mime node-mime-types node-mimic-fn node-mimic-response node-minimatch node-minimist node-mississippi node-mkdirp node-move-concurrently node-ms
  node-mute-stream node-nopt node-normalize-package-data node-npm-bundled node-npm-package-arg node-npm-run-path node-npmlog node-number-is-nan node-oauth-sign node-object-assign node-once node-opener
  node-os-locale node-os-tmpdir node-osenv node-p-cancelable node-p-finally node-p-is-promise node-p-limit node-p-locate node-p-timeout node-package-json node-parallel-transform node-path-exists
  node-path-is-absolute node-path-is-inside node-performance-now node-pify node-prepend-http node-process-nextick-args node-promise-inflight node-promise-retry node-promzard node-proto-list node-prr
  node-pseudomap node-psl node-pump node-pumpify node-punycode node-qs node-qw node-rc node-read node-read-package-json node-readable-stream node-registry-auth-token node-registry-url node-request
  node-require-directory node-require-main-filename node-resolve node-resolve-from node-retry node-rimraf node-run-queue node-safe-buffer node-semver node-semver-diff node-set-blocking node-sha
  node-shebang-command node-shebang-regex node-signal-exit node-slash node-slide node-sorted-object node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-sshpk
  node-ssri node-stream-each node-stream-iterate node-stream-shift node-strict-uri-encode node-string-decoder node-string-width node-strip-ansi node-strip-eof node-strip-json-comments node-supports-color
  node-tar node-term-size node-text-table node-through node-through2 node-timed-out node-tough-cookie node-tunnel-agent node-tweetnacl node-typedarray node-typedarray-to-buffer node-uid-number
  node-unique-filename node-unique-string node-unpipe node-uri-js node-url-parse-lax node-url-to-options node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name
  node-verror node-wcwidth.js node-which node-which-module node-wide-align node-widest-line node-wrap-ansi node-wrappy node-write-file-atomic node-xdg-basedir node-xtend node-y18n node-yallist node-yargs
  node-yargs-parser nodejs nodejs-doc perl-openssl-defaults python-pkg-resources python2 python2-minimal python2.7 python2.7-minimal x11-common x11-utils x11-xserver-utils xdg-utils
Suggested packages:
  binutils-doc cpp-doc gcc-9-locales debian-keyring g++-multilib g++-9-multilib gcc-9-doc gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-9-multilib libdigest-hmac-perl libgssapi-perl
  glibc-doc bzr libcrypt-ssleay-perl lm-sensors libssl-doc libstdc++-9-doc libauthen-ntlm-perl libunicode-map8-perl libunicode-string-perl xml-twig-tools make-doc python-setuptools python2-doc python-tk
  python2.7-doc binfmt-support mesa-utils nickle cairo-5c xorg-docs-core
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential cpp cpp-9 dpkg-dev fakeroot g++ g++-9 gcc gcc-9 gcc-9-base gyp javascript-common libalgorithm-diff-perl libalgorithm-diff-xs-perl
  libalgorithm-merge-perl libasan5 libatomic1 libauthen-sasl-perl libbinutils libc-ares2 libc-dev-bin libc6-dev libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libdata-dump-perl libdpkg-perl libdrm-amdgpu1
  libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libencode-locale-perl libfakeroot libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl libfile-listing-perl libfile-mimeinfo-perl
  libfont-afm-perl libfontenc1 libgcc-9-dev libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl
  libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libice6 libio-html-perl libio-socket-ssl-perl libio-stringy-perl
  libipc-system-simple-perl libisl22 libitm1 libjs-inherits libjs-is-typedarray libjs-psl libjs-typedarray-to-buffer libllvm12 liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl
  libmpc3 libnet-dbus-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnode-dev libnode64 libpciaccess0 libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0
  libsensors-config libsensors5 libsm6 libssl-dev libstdc++-9-dev libtie-ixhash-perl libtimedate-perl libtry-tiny-perl libtsan0 libubsan1 liburi-perl libuv1-dev libvulkan1 libwayland-client0 libwww-perl
  libwww-robotrules-perl libx11-protocol-perl libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1
  libxcursor1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbfile1 libxml-parser-perl libxml-twig-perl libxml-xpathengine-perl libxmu6 libxrandr2 libxrender1 libxshmfence1 libxt6 libxtst6 libxv1
  libxxf86dga1 libxxf86vm1 linux-libc-dev make manpages-dev mesa-vulkan-drivers node-abbrev node-ajv node-ansi node-ansi-align node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-bl node-bluebird node-boxen node-brace-expansion
  node-builtin-modules node-builtins node-cacache node-call-limit node-camelcase node-caseless node-chalk node-chownr node-ci-info node-cli-boxes node-cliui node-clone node-co node-color-convert
  node-color-name node-colors node-columnify node-combined-stream node-concat-map node-concat-stream node-config-chain node-configstore node-console-control-strings node-copy-concurrently
  node-core-util-is node-cross-spawn node-crypto-random-string node-cyclist node-dashdash node-debug node-decamelize node-decompress-response node-deep-extend node-defaults node-define-properties
  node-delayed-stream node-delegates node-detect-indent node-detect-newline node-dot-prop node-duplexer3 node-duplexify node-ecc-jsbn node-editor node-encoding node-end-of-stream node-err-code node-errno
  node-es6-promise node-escape-string-regexp node-execa node-extend node-extsprintf node-fast-deep-equal node-find-up node-flush-write-stream node-forever-agent node-form-data node-from2 node-fs-vacuum
  node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-genfun node-get-caller-file node-get-stream node-getpass node-glob node-got node-graceful-fs node-gyp node-har-schema
  node-har-validator node-has-flag node-has-symbol-support-x node-has-to-string-tag-x node-has-unicode node-hosted-git-info node-http-signature node-iconv-lite node-iferr node-import-lazy node-imurmurhash
  node-inflight node-inherits node-ini node-invert-kv node-ip node-ip-regex node-is-npm node-is-obj node-is-object node-is-path-inside node-is-plain-obj node-is-retry-allowed node-is-stream
  node-is-typedarray node-isarray node-isexe node-isstream node-isurl node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse node-json-stable-stringify node-json-stringify-safe
  node-jsonify node-jsonparse node-jsonstream node-jsprim node-latest-version node-lazy-property node-lcid node-libnpx node-locate-path node-lockfile node-lodash node-lodash-packages node-lowercase-keys
  node-lru-cache node-make-dir node-mem node-mime node-mime-types node-mimic-fn node-mimic-response node-minimatch node-minimist node-mississippi node-mkdirp node-move-concurrently node-ms
  node-mute-stream node-nopt node-normalize-package-data node-npm-bundled node-npm-package-arg node-npm-run-path node-npmlog node-number-is-nan node-oauth-sign node-object-assign node-once node-opener
  node-os-locale node-os-tmpdir node-osenv node-p-cancelable node-p-finally node-p-is-promise node-p-limit node-p-locate node-p-timeout node-package-json node-parallel-transform node-path-exists
  node-path-is-absolute node-path-is-inside node-performance-now node-pify node-prepend-http node-process-nextick-args node-promise-inflight node-promise-retry node-promzard node-proto-list node-prr
  node-pseudomap node-psl node-pump node-pumpify node-punycode node-qs node-qw node-rc node-read node-read-package-json node-readable-stream node-registry-auth-token node-registry-url node-request
  node-require-directory node-require-main-filename node-resolve node-resolve-from node-retry node-rimraf node-run-queue node-safe-buffer node-semver node-semver-diff node-set-blocking node-sha
  node-shebang-command node-shebang-regex node-signal-exit node-slash node-slide node-sorted-object node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-sshpk
  node-ssri node-stream-each node-stream-iterate node-stream-shift node-strict-uri-encode node-string-decoder node-string-width node-strip-ansi node-strip-eof node-strip-json-comments node-supports-color
  node-tar node-term-size node-text-table node-through node-through2 node-timed-out node-tough-cookie node-tunnel-agent node-tweetnacl node-typedarray node-typedarray-to-buffer node-uid-number
  node-unique-filename node-unique-string node-unpipe node-uri-js node-url-parse-lax node-url-to-options node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name
  node-verror node-wcwidth.js node-which node-which-module node-wide-align node-widest-line node-wrap-ansi node-wrappy node-write-file-atomic node-xdg-basedir node-xtend node-y18n node-yallist node-yargs
  node-yargs-parser nodejs nodejs-doc npm perl-openssl-defaults python-pkg-resources python2 python2-minimal python2.7 python2.7-minimal x11-common x11-utils x11-xserver-utils xdg-utils
0 upgraded, 430 newly installed, 0 to remove and 0 not upgraded.
Need to get 102 MB of archives.
After this operation, 823 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 libpython2.7-minimal amd64 2.7.18-1~20.04.4 [335 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 python2.7-minimal amd64 2.7.18-1~20.04.4 [1,280 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 python2-minimal amd64 2.7.17-2ubuntu4 [27.5 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 libpython2.7-stdlib amd64 2.7.18-1~20.04.4 [1,887 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 python2.7 amd64 2.7.18-1~20.04.4 [248 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libpython2-stdlib amd64 2.7.17-2ubuntu4 [7,072 B]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 python2 amd64 2.7.17-2ubuntu4 [26.5 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 binutils-common amd64 2.34-6ubuntu1.9 [208 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libbinutils amd64 2.34-6ubuntu1.9 [475 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libctf-nobfd0 amd64 2.34-6ubuntu1.9 [48.2 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libctf0 amd64 2.34-6ubuntu1.9 [46.6 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.34-6ubuntu1.9 [1,614 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 binutils amd64 2.34-6ubuntu1.9 [3,380 B]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libc-dev-bin amd64 2.31-0ubuntu9.15 [71.8 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 linux-libc-dev amd64 5.4.0-177.197 [1,128 kB]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libcrypt-dev amd64 1:4.4.10-10ubuntu4 [104 kB]
Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libc6-dev amd64 2.31-0ubuntu9.15 [2,519 kB]
Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 gcc-9-base amd64 9.4.0-1ubuntu1~20.04.2 [18.9 kB]
Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libisl22 amd64 0.22.1-1 [592 kB]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB]
Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 cpp-9 amd64 9.4.0-1ubuntu1~20.04.2 [7,502 kB]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 cpp amd64 4:9.3.0-1ubuntu2 [27.6 kB]
Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libcc1-0 amd64 10.5.0-1ubuntu1~20.04 [48.8 kB]
Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libgomp1 amd64 10.5.0-1ubuntu1~20.04 [102 kB]
Get:25 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libitm1 amd64 10.5.0-1ubuntu1~20.04 [26.2 kB]
Get:26 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libatomic1 amd64 10.5.0-1ubuntu1~20.04 [9,284 B]
Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libasan5 amd64 9.4.0-1ubuntu1~20.04.2 [2,752 kB]
Get:28 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 liblsan0 amd64 10.5.0-1ubuntu1~20.04 [835 kB]
Get:29 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libtsan0 amd64 10.5.0-1ubuntu1~20.04 [2,016 kB]
Get:30 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libubsan1 amd64 10.5.0-1ubuntu1~20.04 [785 kB]
Get:31 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libquadmath0 amd64 10.5.0-1ubuntu1~20.04 [146 kB]
Get:32 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libgcc-9-dev amd64 9.4.0-1ubuntu1~20.04.2 [2,359 kB]
Get:33 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 gcc-9 amd64 9.4.0-1ubuntu1~20.04.2 [8,276 kB]
Get:34 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 gcc amd64 4:9.3.0-1ubuntu2 [5,208 B]
Get:35 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libstdc++-9-dev amd64 9.4.0-1ubuntu1~20.04.2 [1,722 kB]
Get:36 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 g++-9 amd64 9.4.0-1ubuntu1~20.04.2 [8,421 kB]
Get:37 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 g++ amd64 4:9.3.0-1ubuntu2 [1,604 B]
Get:38 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 make amd64 4.2.1-1.2 [162 kB]
Get:39 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libdpkg-perl all 1.19.7ubuntu3.2 [231 kB]
Get:40 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 dpkg-dev all 1.19.7ubuntu3.2 [679 kB]
Get:41 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 build-essential amd64 12.8ubuntu1.1 [4,664 B]
Get:42 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfakeroot amd64 1.24-1 [25.7 kB]
Get:43 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 fakeroot amd64 1.24-1 [62.6 kB]
Get:44 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 python-pkg-resources all 44.0.0-2ubuntu0.1 [130 kB]
Get:45 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 gyp all 0.1+20180428git4d467626-3ubuntu1 [237 kB]
Get:46 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 javascript-common all 11 [6,066 B]
Get:47 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libalgorithm-diff-perl all 1.19.03-2 [46.6 kB]
Get:48 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6 [11.3 kB]
Get:49 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
Get:50 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB]
Get:51 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libdrm-amdgpu1 amd64 2.4.107-8ubuntu1~20.04.2 [18.6 kB]
Get:52 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libpciaccess0 amd64 0.16-0ubuntu1 [17.9 kB]
Get:53 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libdrm-intel1 amd64 2.4.107-8ubuntu1~20.04.2 [60.3 kB]
Get:54 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libdrm-nouveau2 amd64 2.4.107-8ubuntu1~20.04.2 [16.6 kB]
Get:55 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libdrm-radeon1 amd64 2.4.107-8ubuntu1~20.04.2 [19.7 kB]
Get:56 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB]
Get:57 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libipc-system-simple-perl all 1.26-1 [22.8 kB]
Get:58 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfile-basedir-perl all 0.08-1 [16.9 kB]
Get:59 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 liburi-perl all 1.76-2 [77.5 kB]
Get:60 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfile-desktopentry-perl all 0.22-1 [18.2 kB]
Get:61 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfile-fcntllock-perl amd64 0.22-3build4 [33.1 kB]
Get:62 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libtimedate-perl all 2.3200-1 [34.0 kB]
Get:63 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhttp-date-perl all 6.05-1 [9,920 B]
Get:64 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfile-listing-perl all 6.04-1 [9,774 B]
Get:65 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfile-mimeinfo-perl all 0.29-1 [41.5 kB]
Get:66 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB]
Get:67 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfontenc1 amd64 1:1.1.4-0ubuntu1 [14.0 kB]
Get:68 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libglapi-mesa amd64 21.2.6-0ubuntu0.1~20.04.2 [27.4 kB]
Get:69 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libllvm12 amd64 1:12.0.0-3ubuntu1~20.04.5 [18.8 MB]
Get:70 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libsensors-config all 1:3.6.0-2ubuntu1.1 [6,052 B]
Get:71 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libsensors5 amd64 1:3.6.0-2ubuntu1.1 [27.2 kB]
Get:72 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libvulkan1 amd64 1.2.131.2-1 [93.3 kB]
Get:73 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libgl1-mesa-dri amd64 21.2.6-0ubuntu0.1~20.04.2 [11.0 MB]
Get:74 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libx11-xcb1 amd64 2:1.6.9-2ubuntu1.6 [9,448 B]
Get:75 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-dri2-0 amd64 1.14-2 [6,920 B]
Get:76 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-dri3-0 amd64 1.14-2 [6,552 B]
Get:77 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-glx0 amd64 1.14-2 [22.1 kB]
Get:78 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-present0 amd64 1.14-2 [5,560 B]
Get:79 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-shm0 amd64 1.14-2 [5,584 B]
Get:80 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-sync1 amd64 1.14-2 [8,884 B]
Get:81 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-xfixes0 amd64 1.14-2 [9,296 B]
Get:82 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxfixes3 amd64 1:5.0.3-2 [10.9 kB]
Get:83 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxshmfence1 amd64 1.3-1 [5,028 B]
Get:84 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxxf86vm1 amd64 1:1.1.4-1build1 [10.2 kB]
Get:85 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libglx-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [137 kB]
Get:86 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-tagset-perl all 3.20-4 [12.5 kB]
Get:87 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-parser-perl amd64 3.72-5 [86.3 kB]
Get:88 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libio-html-perl all 1.001-1 [14.9 kB]
Get:89 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.5 kB]
Get:90 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhttp-message-perl all 6.22-1 [76.1 kB]
Get:91 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-form-perl all 6.07-1 [22.2 kB]
Get:92 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-tree-perl all 5.07-2 [200 kB]
Get:93 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB]
Get:94 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhttp-cookies-perl all 6.08-1 [18.3 kB]
Get:95 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libhttp-daemon-perl all 6.06-1ubuntu0.1 [22.0 kB]
Get:96 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhttp-negotiate-perl all 6.01-1 [12.5 kB]
Get:97 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 x11-common all 1:7.7+19ubuntu14 [22.3 kB]
Get:98 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libice6 amd64 2:1.0.10-0ubuntu1 [41.0 kB]
Get:99 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 perl-openssl-defaults amd64 4 [7,192 B]
Get:100 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libnet-ssleay-perl amd64 1.88-2ubuntu1 [291 kB]
Get:101 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libio-socket-ssl-perl all 2.067-1 [176 kB]
Get:102 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libio-stringy-perl all 2.111-3 [55.8 kB]
Get:103 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libjs-is-typedarray all 1.0.0-2 [2,934 B]
Get:104 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libjs-psl all 1.7.0+ds-1 [67.2 kB]
Get:105 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libjs-typedarray-to-buffer all 3.0.3-3 [3,986 B]
Get:106 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libnet-http-perl all 6.19-1 [22.8 kB]
Get:107 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB]
Get:108 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB]
Get:109 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libwww-perl all 6.43-1 [140 kB]
Get:110 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 liblwp-protocol-https-perl all 6.07-2ubuntu2 [8,560 B]
Get:111 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5,948 B]
Get:112 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libmailtools-perl all 2.21-1 [80.7 kB]
Get:113 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxml-parser-perl amd64 2.46-1 [193 kB]
Get:114 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxml-twig-perl all 1:3.50-2 [155 kB]
Get:115 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libnet-dbus-perl amd64 1.2.0-1 [177 kB]
Get:116 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libssl-dev amd64 1.1.1f-1ubuntu2.22 [1,586 kB]
Get:117 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libuv1-dev amd64 1.34.2-1ubuntu1.5 [103 kB]
Get:118 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libc-ares2 amd64 1.15.0-1ubuntu0.5 [36.9 kB]
Get:119 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 libnode64 amd64 10.19.0~dfsg-3ubuntu1.6 [5,764 kB]
Get:120 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 libnode-dev amd64 10.19.0~dfsg-3ubuntu1.6 [371 kB]
Get:121 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libsm6 amd64 2:1.2.3-1 [16.1 kB]
Get:122 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libtie-ixhash-perl all 1.23-2 [11.2 kB]
Get:123 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libwayland-client0 amd64 1.18.0-1ubuntu0.1 [23.9 kB]
Get:124 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libx11-protocol-perl all 0.56-7 [149 kB]
Get:125 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxt6 amd64 1:1.1.5-1 [160 kB]
Get:126 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxmu6 amd64 2:1.1.3-0ubuntu1 [45.8 kB]
Get:127 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxaw7 amd64 2:1.0.13-1 [173 kB]
Get:128 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-randr0 amd64 1.14-2 [16.3 kB]
Get:129 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcb-shape0 amd64 1.14-2 [5,928 B]
Get:130 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcomposite1 amd64 1:0.4.5-1 [6,976 B]
Get:131 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxrender1 amd64 1:0.9.10-1 [18.7 kB]
Get:132 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxcursor1 amd64 1:1.2.0-2 [20.1 kB]
Get:133 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxft2 amd64 2.3.3-0ubuntu1 [39.2 kB]
Get:134 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxi6 amd64 2:1.7.10-0ubuntu1 [29.9 kB]
Get:135 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxinerama1 amd64 2:1.1.4-2 [6,904 B]
Get:136 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxkbfile1 amd64 1:1.1.0-1 [65.3 kB]
Get:137 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxml-xpathengine-perl all 0.14-1 [31.8 kB]
Get:138 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxrandr2 amd64 2:1.5.2-0ubuntu1 [18.5 kB]
Get:139 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxtst6 amd64 2:1.2.3-1 [12.8 kB]
Get:140 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxv1 amd64 2:1.0.11-1 [10.7 kB]
Get:141 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libxxf86dga1 amd64 2:1.1.5-0ubuntu1 [12.0 kB]
Get:142 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 manpages-dev all 5.05-1 [2,266 kB]
Get:143 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mesa-vulkan-drivers amd64 21.2.6-0ubuntu0.1~20.04.2 [5,788 kB]
Get:144 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 nodejs amd64 10.19.0~dfsg-3ubuntu1.6 [61.6 kB]
Get:145 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-fast-deep-equal all 1.1.0-1 [4,248 B]
Get:146 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-jsonify all 0.0.0-1 [5,440 B]
Get:147 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-json-stable-stringify all 1.0.1-1 [4,498 B]
Get:148 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-json-schema-traverse all 0.3.1-1 [3,968 B]
Get:149 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-punycode all 2.1.1-3 [9,432 B]
Get:150 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-uri-js all 4.2.2+dfsg-5 [15.6 kB]
Get:151 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ajv all 6.10.2-1 [72.2 kB]
Get:152 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-clone all 2.1.2-1 [7,924 B]
Get:153 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-defaults all 1.0.3-1 [3,142 B]
Get:154 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-wcwidth.js all 1.0.0-1 [6,450 B]
Get:155 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ansi-regex all 5.0.0-1 [4,736 B]
Get:156 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-strip-ansi all 6.0.0-2 [4,092 B]
Get:157 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-string-width all 2.1.1-1 [4,104 B]
Get:158 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ansi-align all 3.0.0-1 [4,700 B]
Get:159 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ansistyles all 0.1.3-2 [4,316 B]
Get:160 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-aproba all 2.0.0-1 [5,476 B]
Get:161 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-delegates all 1.0.0-1 [3,648 B]
Get:162 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 libjs-inherits all 2.0.4-1 [3,264 B]
Get:163 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-inherits all 2.0.4-1 [3,180 B]
Get:164 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-core-util-is all 1.0.2-1 [3,436 B]
Get:165 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-safe-buffer all 5.2.0-1 [12.6 kB]
Get:166 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-string-decoder all 1.2.0-2 [6,596 B]
Get:167 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-process-nextick-args all 2.0.0-1 [3,428 B]
Get:168 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-util-deprecate all 1.0.2-1 [3,708 B]
Get:169 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-isarray all 2.0.5-1 [3,796 B]
Get:170 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-readable-stream all 3.4.0-2 [35.4 kB]
Get:171 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-are-we-there-yet all 1.1.5-1 [6,876 B]
Get:172 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-asap all 2.0.6-2 [13.1 kB]
Get:173 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-asn1 all 0.2.3-2 [7,380 B]
Get:174 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-assert-plus all 1.0.0-2 [8,912 B]
Get:175 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-asynckit all 0.4.0-3 [10.3 kB]
Get:176 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-aws-sign2 all 0.7.1-2 [4,176 B]
Get:177 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-aws4 all 1.9.0-1 [12.1 kB]
Get:178 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-tweetnacl all 1.0.1+dfsg-2 [31.1 kB]
Get:179 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-bcrypt-pbkdf all 1.0.2-1 [10.8 kB]
Get:180 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-bluebird all 3.5.1+dfsg2-2build1 [36.4 kB]
Get:181 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-camelcase all 5.3.1-1 [4,888 B]
Get:182 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-color-name all 1.1.3-1 [4,224 B]
Get:183 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-color-convert all 1.9.3-1 [9,680 B]
Get:184 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ansi-styles all 4.2.1-1 [7,644 B]
Get:185 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-escape-string-regexp all 1.0.5-1 [3,262 B]
Get:186 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-has-flag all 4.0.0-1 [4,120 B]
Get:187 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-supports-color all 6.1.0-2 [5,532 B]
Get:188 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-chalk all 2.4.2-1 [12.5 kB]
Get:189 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-cli-boxes all 2.2.0-2 [4,220 B]
Get:190 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-yallist all 4.0.0-1 [6,612 B]
Get:191 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lru-cache all 5.1.1-5 [8,308 B]
Get:192 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-isexe all 2.0.0-4 [4,440 B]
Get:193 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-which all 2.0.2-1 [5,472 B]
Get:194 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-shebang-regex all 2.0.0-1 [2,776 B]
Get:195 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-shebang-command all 1.2.0-1 [2,934 B]
Get:196 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-cross-spawn all 5.1.0-2 [8,536 B]
Get:197 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-wrappy all 1.0.2-1 [3,162 B]
Get:198 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-once all 1.4.0-3 [4,388 B]
Get:199 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-end-of-stream all 1.4.4-1 [4,388 B]
Get:200 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-pump all 3.0.0-2 [4,820 B]
Get:201 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-get-stream all 4.1.0-1 [5,244 B]
Get:202 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-stream all 1.1.0-1 [3,046 B]
Get:203 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-npm-run-path all 2.0.2-2 [4,448 B]
Get:204 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-finally all 1.0.0-2 [3,276 B]
Get:205 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-signal-exit all 3.0.2-1 [5,156 B]
Get:206 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-strip-eof all 1.0.0-2 [3,040 B]
Get:207 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-execa all 0.10.0+dfsg-1 [8,964 B]
Get:208 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-term-size all 1.2.0+dfsg-2 [3,984 B]
Get:209 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-widest-line all 3.1.0-1 [3,956 B]
Get:210 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-boxen all 4.2.0-2 [15.2 kB]
Get:211 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-builtin-modules all 3.1.0-1 [4,208 B]
Get:212 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-builtins all 1.0.3-1 [2,776 B]
Get:213 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-chownr all 1.1.3-3 [4,028 B]
Get:214 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-balanced-match all 1.0.0-1 [4,576 B]
Get:215 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-concat-map all 0.0.1-2 [4,008 B]
Get:216 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-brace-expansion all 1.1.11-1 [6,368 B]
Get:217 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 node-minimatch all 3.0.4-4ubuntu0.1 [14.1 kB]
Get:218 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-fs.realpath all 1.0.0-1 [5,572 B]
Get:219 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-inflight all 1.0.6-1 [3,382 B]
Get:220 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-path-is-absolute all 2.0.0-1 [3,900 B]
Get:221 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-glob all 7.1.6-1 [125 kB]
Get:222 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-graceful-fs all 4.2.3-2 [11.4 kB]
Get:223 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-typedarray all 0.0.6-1 [8,242 B]
Get:224 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-concat-stream all 1.6.2-1 [5,684 B]
Get:225 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-stream-shift all 1.0.0-1 [2,884 B]
Get:226 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-duplexify all 4.1.1-1 [5,664 B]
Get:227 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-flush-write-stream all 2.0.0-2 [4,212 B]
Get:228 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-from2 all 2.3.0-1 [4,372 B]
Get:229 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-cyclist all 1.0.1-2 [3,652 B]
Get:230 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-parallel-transform all 1.1.0-2 [4,172 B]
Get:231 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-pumpify all 2.0.1-1 [4,516 B]
Get:232 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-stream-each all 1.2.3-1 [4,688 B]
Get:233 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-through2 all 3.0.1-2 [6,720 B]
Get:234 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mississippi all 3.0.0-1 [7,804 B]
Get:235 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mkdirp all 0.5.1-2 [5,376 B]
Get:236 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-run-queue all 1.0.3-1 [4,540 B]
Get:237 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-rimraf all 2.6.3-1 [8,368 B]
Get:238 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-imurmurhash all 0.1.4-1 [8,272 B]
Get:239 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-iferr all 1.0.2-1 [3,536 B]
Get:240 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-fs-write-stream-atomic all 1.0.10-4 [4,860 B]
Get:241 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-copy-concurrently all 1.0.5-4 [6,556 B]
Get:242 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-move-concurrently all 1.0.1-2 [4,684 B]
Get:243 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-promise-inflight all 1.0.1-1 [3,144 B]
Get:244 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ssri all 7.1.0-2 [18.7 kB]
Get:245 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-unique-filename all 1.1.1+ds-1 [3,832 B]
Get:246 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-y18n all 4.0.0-2 [5,476 B]
Get:247 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-cacache all 11.3.3-2 [24.3 kB]
Get:248 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-call-limit all 1.1.1-1 [4,084 B]
Get:249 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-caseless all 0.12.0-1 [3,382 B]
Get:250 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ci-info all 2.0.0-1 [6,452 B]
Get:251 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-wrap-ansi all 4.0.0-2 [5,576 B]
Get:252 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-cliui all 4.1.0-2 [7,336 B]
Get:253 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-co all 4.6.0-1 [6,220 B]
Get:254 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-colors all 1.4.0-1 [11.8 kB]
Get:255 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-columnify all 1.5.4-1 [11.2 kB]
Get:256 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-proto-list all 1.2.4-1 [3,088 B]
Get:257 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ini all 1.3.5-1 [5,776 B]
Get:258 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-config-chain all 1.1.12-1 [8,056 B]
Get:259 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-obj all 1.0.1-2 [3,018 B]
Get:260 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-dot-prop all 5.2.0-1 [5,052 B]
Get:261 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-semver all 7.1.3-1 [31.6 kB]
Get:262 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-make-dir all 3.0.2-1 [5,820 B]
Get:263 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-crypto-random-string all 1.0.0-1 [3,250 B]
Get:264 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-unique-string all 1.0.0-1 [3,048 B]
Get:265 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-typedarray all 1.0.0-2 [2,216 B]
Get:266 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-typedarray-to-buffer all 3.0.3-3 [2,374 B]
Get:267 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-write-file-atomic all 3.0.3-1 [6,240 B]
Get:268 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-xdg-basedir all 3.0.0-1 [3,696 B]
Get:269 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-configstore all 5.0.1-1 [5,396 B]
Get:270 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-console-control-strings all 1.1.0-1 [4,946 B]
Get:271 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-dashdash all 1.14.1-2 [17.8 kB]
Get:272 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-decamelize all 1.2.0-1 [3,090 B]
Get:273 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mimic-response all 2.1.0-1 [4,588 B]
Get:274 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-decompress-response all 3.3.0-1 [3,396 B]
Get:275 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-deep-extend all 0.6.0-1 [4,972 B]
Get:276 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lodash-packages all 4.17.15+dfsg-2 [123 kB]
Get:277 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-define-properties all 1.1.3-1 [6,396 B]
Get:278 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-detect-indent all 5.0.0-1 [4,426 B]
Get:279 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-detect-newline all 2.1.0-1 [3,018 B]
Get:280 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-duplexer3 all 0.1.4-5 [5,168 B]
Get:281 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-jsbn all 1.1.0-1 [13.6 kB]
Get:282 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ecc-jsbn all 0.2.0-2 [9,432 B]
Get:283 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-editor all 1.0.0-1 [3,334 B]
Get:284 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-err-code all 2.0.0+dfsg-1 [4,024 B]
Get:285 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-es6-promise all 4.2.8-6 [14.2 kB]
Get:286 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-extsprintf all 1.3.0-1 [4,492 B]
Get:287 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-limit all 2.2.2-1 [5,556 B]
Get:288 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-locate all 2.0.0-1 [4,104 B]
Get:289 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-path-exists all 4.0.0-2 [3,872 B]
Get:290 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-locate-path all 5.0.0-2 [4,952 B]
Get:291 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-find-up all 4.1.0-2 [5,724 B]
Get:292 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-path-is-inside all 1.0.2-1 [3,982 B]
Get:293 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-fs-vacuum all 1.2.10-3 [4,584 B]
Get:294 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-function-bind all 1.1.1+repack-1 [5,040 B]
Get:295 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-object-assign all 4.1.1-3 [4,496 B]
Get:296 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-has-unicode all 2.0.1-2 [3,480 B]
Get:297 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-wide-align all 1.1.3-1 [3,936 B]
Get:298 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-gauge all 2.7.4-1 [22.1 kB]
Get:299 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-genfun all 5.0.0-1 [14.1 kB]
Get:300 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-get-caller-file all 1.0.2-1 [2,850 B]
Get:301 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-getpass all 0.1.7-1 [4,180 B]
Get:302 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-retry-allowed all 1.1.0-1 [3,416 B]
Get:303 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-cancelable all 0.3.0-1 [4,452 B]
Get:304 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-timeout all 1.2.0-1 [3,680 B]
Get:305 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-plain-obj all 1.1.0-1 [3,036 B]
Get:306 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-url-to-options all 1.0.1-1 [3,272 B]
Get:307 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-timed-out all 4.0.1-5 [4,228 B]
Get:308 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lowercase-keys all 2.0.0-1 [3,668 B]
Get:309 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-object all 1.0.1-1 [3,332 B]
Get:310 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-has-symbol-support-x all 1.4.1+dfsg-1 [4,072 B]
Get:311 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-has-to-string-tag-x all 1.4.1+dfsg-1 [4,188 B]
Get:312 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-isurl all 4.0.1-2 [6,976 B]
Get:313 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-prepend-http all 2.0.0-1 [3,332 B]
Get:314 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-url-parse-lax all 1.0.0-1 [3,260 B]
Get:315 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-got all 7.1.0-1 [11.8 kB]
Get:316 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-har-schema all 2.0.0-3 [5,788 B]
Get:317 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-har-validator all 5.1.3-1 [4,604 B]
Get:318 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-hosted-git-info all 2.8.5-1 [8,112 B]
Get:319 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 node-json-schema all 0.2.3-1+deb10u1build0.20.04.1 [7,436 B]
Get:320 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-verror all 1.10.0-1 [13.6 kB]
Get:321 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-jsprim all 1.4.1-1 [12.9 kB]
Get:322 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-sshpk all 1.16.1+dfsg-2 [54.7 kB]
Get:323 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-http-signature all 1.3.2-1 [10.9 kB]
Get:324 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-iconv-lite all 0.4.23-1 [124 kB]
Get:325 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-import-lazy all 3.0.0.REALLY.2.1.0-1 [4,036 B]
Get:326 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-invert-kv all 1.0.0-1 [2,900 B]
Get:327 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ip all 1.1.5-5 [6,648 B]
Get:328 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ip-regex all 4.1.0-2 [4,628 B]
Get:329 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-npm all 1.0.0-1 [2,872 B]
Get:330 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-is-path-inside all 1.0.1-1 [3,260 B]
Get:331 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-isstream all 0.1.2+dfsg-1 [3,588 B]
Get:332 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-json-parse-better-errors all 1.0.2-2 [4,584 B]
Get:333 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-jsonparse all 1.3.1-7 [7,004 B]
Get:334 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-through all 2.3.8-1 [4,220 B]
Get:335 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-jsonstream all 1.3.5-1 [8,468 B]
Get:336 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-minimist all 1.2.5-1 [6,092 B]
Get:337 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-strip-json-comments all 3.0.1-3 [4,676 B]
Get:338 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-rc all 1.2.8-1 [8,584 B]
Get:339 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-registry-url all 3.1.0-1 [3,292 B]
Get:340 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-registry-auth-token all 3.3.1-1 [4,752 B]
Get:341 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-package-json all 4.0.1-1 [4,220 B]
Get:342 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-latest-version all 3.1.0-1 [3,164 B]
Get:343 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lazy-property all 1.0.0-3 [3,596 B]
Get:344 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lcid all 1.0.0-1 [4,264 B]
Get:345 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-osenv all 0.1.5-1 [4,368 B]
Get:346 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-validate-npm-package-name all 3.0.0-1 [4,472 B]
Get:347 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-npm-package-arg all 6.1.1-1 [7,312 B]
Get:348 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-require-directory all 2.1.1-1 [5,394 B]
Get:349 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-set-blocking all 2.0.0-1 [3,402 B]
Get:350 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-require-main-filename all 1.0.1-1 [3,198 B]
Get:351 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-which-module all 2.0.0-1 [3,368 B]
Get:352 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mimic-fn all 3.0.0-1 [5,044 B]
Get:353 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mem all 1.1.0-1 [4,116 B]
Get:354 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-os-locale all 4.0.0-1 [4,720 B]
Get:355 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-yargs-parser all 18.1.1-1 [15.2 kB]
Get:356 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-yargs all 15.3.0-1 [91.5 kB]
Get:357 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-libnpx all 10.2.1-2 [35.0 kB]
Get:358 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lodash all 4.17.15+dfsg-2 [243 kB]
Get:359 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ms all 2.1.1-1 [4,588 B]
Get:360 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-npm-bundled all 1.1.1-1 [6,096 B]
Get:361 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-number-is-nan all 2.0.0-1 [3,428 B]
Get:362 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 xdg-utils all 1.1.3-2ubuntu1.20.04.2 [61.4 kB]
Get:363 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-opener all 1.5.1-1 [4,864 B]
Get:364 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-p-is-promise all 3.0.0-1 [3,792 B]
Get:365 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-performance-now all 2.1.0+debian-1 [4,482 B]
Get:366 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-pify all 3.0.0-1 [4,492 B]
Get:367 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-retry all 0.12.0-1 [10.4 kB]
Get:368 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-promise-retry all 1.1.1-4 [4,760 B]
Get:369 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mute-stream all 0.0.8-2 [5,172 B]
Get:370 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-read all 1.0.7-2 [5,304 B]
Get:371 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-promzard all 0.3.0-1 [9,004 B]
Get:372 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-pseudomap all 1.0.2-1 [3,534 B]
Get:373 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-psl all 1.7.0+ds-1 [36.7 kB]
Get:374 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-qw all 1.0.1-1 [3,120 B]
Get:375 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-resolve-from all 4.0.0-1 [3,724 B]
Get:376 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-semver-diff all 2.1.0-2 [3,388 B]
Get:377 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-slash all 3.0.0-1 [3,744 B]
Get:378 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-sorted-object all 2.0.1-1 [3,720 B]
Get:379 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-spdx-license-ids all 3.0.5-1 [6,448 B]
Get:380 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-spdx-exceptions all 2.2.0-1 [3,752 B]
Get:381 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-spdx-expression-parse all 3.0.0-1 [6,608 B]
Get:382 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-spdx-correct all 3.1.0-1 [5,188 B]
Get:383 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-stream-iterate all 1.2.0-4 [3,772 B]
Get:384 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-strict-uri-encode all 2.0.0-1 [2,984 B]
Get:385 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-text-table all 0.2.0-2 [4,348 B]
Get:386 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-tough-cookie all 3.0.0-1 [26.4 kB]
Get:387 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 node-uid-number all 0.0.6-1ubuntu0.20.04.1 [3,596 B]
Get:388 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-unpipe all 1.0.0-1 [3,530 B]
Get:389 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-uuid all 3.3.2-2 [16.4 kB]
Get:390 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-validate-npm-package-license all 3.0.4-1 [4,172 B]
Get:391 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-xtend all 4.0.2-1 [3,752 B]
Get:392 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 nodejs-doc all 10.19.0~dfsg-3ubuntu1.6 [943 kB]
Get:393 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libglvnd0 amd64 1.3.2-1~ubuntu0.20.04.2 [48.1 kB]
Get:394 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libglx0 amd64 1.3.2-1~ubuntu0.20.04.2 [32.5 kB]
Get:395 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 libgl1 amd64 1.3.2-1~ubuntu0.20.04.2 [85.8 kB]
Get:396 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 x11-utils amd64 7.7+5 [199 kB]
Get:397 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 x11-xserver-utils amd64 7.7+8 [162 kB]
Get:398 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB]
Get:399 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-abbrev all 1.1.1-2 [4,852 B]
Get:400 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-ansi all 0.3.1-1 [9,068 B]
Get:401 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-archy all 1.0.0-3 [4,480 B]
Get:402 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-bl all 4.0.0-2 [10.3 kB]
Get:403 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-delayed-stream all 1.0.0-4 [5,276 B]
Get:404 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-combined-stream all 1.0.8-1 [6,056 B]
Get:405 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-debug all 4.1.1-2 [17.6 kB]
Get:406 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-encoding all 0.1.12-3 [4,644 B]
Get:407 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-prr all 1.0.1-1 [3,726 B]
Get:408 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-errno all 0.1.7-1 [7,520 B]
Get:409 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-extend all 3.0.2-1 [5,496 B]
Get:410 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-forever-agent all 0.6.1-2 [4,248 B]
Get:411 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mime all 2.4.4+dfsg-1 [33.3 kB]
Get:412 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-mime-types all 2.1.25-1 [6,332 B]
Get:413 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-form-data all 3.0.0-2 [12.8 kB]
Get:414 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-nopt all 3.0.6-4 [10.7 kB]
Get:415 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-npmlog all 4.1.2-2 [8,224 B]
Get:416 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-json-stringify-safe all 5.0.1+repack-2 [20.5 kB]
Get:417 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-oauth-sign all 0.9.0-2 [4,312 B]
Get:418 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-qs all 6.9.1+ds-1 [17.1 kB]
Get:419 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-tunnel-agent all 0.6.1-2 [4,996 B]
Get:420 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-request all 2.88.1-4 [25.0 kB]
Get:421 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-tar all 4.4.10+ds1-2ubuntu1 [31.3 kB]
Get:422 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-gyp all 6.1.0-3 [33.8 kB]
Get:423 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-lockfile all 1.0.4-3 [7,252 B]
Get:424 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-resolve all 1.15.1-3 [13.0 kB]
Get:425 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-normalize-package-data all 2.5.0-1 [14.8 kB]
Get:426 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-os-tmpdir all 1.0.2-1 [3,836 B]
Get:427 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-read-package-json all 2.1.1-1 [9,392 B]
Get:428 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-sha all 3.0.0-1 [4,848 B]
Get:429 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 node-slide all 1.1.6-2 [6,328 B]
Get:430 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/universe amd64 npm all 6.14.4+ds-1ubuntu2 [583 kB]
Fetched 102 MB in 18min 2s (94.1 kB/s)
Extracting templates from packages: 100%
Selecting previously unselected package libpython2.7-minimal:amd64.
(Reading database ... 73545 files and directories currently installed.)
Preparing to unpack .../0-libpython2.7-minimal_2.7.18-1~20.04.4_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.18-1~20.04.4) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../1-python2.7-minimal_2.7.18-1~20.04.4_amd64.deb ...
Unpacking python2.7-minimal (2.7.18-1~20.04.4) ...
Selecting previously unselected package python2-minimal.
Preparing to unpack .../2-python2-minimal_2.7.17-2ubuntu4_amd64.deb ...
Unpacking python2-minimal (2.7.17-2ubuntu4) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../3-libpython2.7-stdlib_2.7.18-1~20.04.4_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.18-1~20.04.4) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../4-python2.7_2.7.18-1~20.04.4_amd64.deb ...
Unpacking python2.7 (2.7.18-1~20.04.4) ...
Selecting previously unselected package libpython2-stdlib:amd64.
Preparing to unpack .../5-libpython2-stdlib_2.7.17-2ubuntu4_amd64.deb ...
Unpacking libpython2-stdlib:amd64 (2.7.17-2ubuntu4) ...
Setting up libpython2.7-minimal:amd64 (2.7.18-1~20.04.4) ...
Setting up python2.7-minimal (2.7.18-1~20.04.4) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up python2-minimal (2.7.17-2ubuntu4) ...
Selecting previously unselected package python2.
(Reading database ... 74292 files and directories currently installed.)
Preparing to unpack .../000-python2_2.7.17-2ubuntu4_amd64.deb ...
Unpacking python2 (2.7.17-2ubuntu4) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../001-binutils-common_2.34-6ubuntu1.9_amd64.deb ...
Unpacking binutils-common:amd64 (2.34-6ubuntu1.9) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../002-libbinutils_2.34-6ubuntu1.9_amd64.deb ...
Unpacking libbinutils:amd64 (2.34-6ubuntu1.9) ...
Selecting previously unselected package libctf-nobfd0:amd64.
Preparing to unpack .../003-libctf-nobfd0_2.34-6ubuntu1.9_amd64.deb ...
Unpacking libctf-nobfd0:amd64 (2.34-6ubuntu1.9) ...
Selecting previously unselected package libctf0:amd64.
Preparing to unpack .../004-libctf0_2.34-6ubuntu1.9_amd64.deb ...
Unpacking libctf0:amd64 (2.34-6ubuntu1.9) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../005-binutils-x86-64-linux-gnu_2.34-6ubuntu1.9_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.34-6ubuntu1.9) ...
Selecting previously unselected package binutils.
Preparing to unpack .../006-binutils_2.34-6ubuntu1.9_amd64.deb ...
Unpacking binutils (2.34-6ubuntu1.9) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../007-libc-dev-bin_2.31-0ubuntu9.15_amd64.deb ...
Unpacking libc-dev-bin (2.31-0ubuntu9.15) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../008-linux-libc-dev_5.4.0-177.197_amd64.deb ...
Unpacking linux-libc-dev:amd64 (5.4.0-177.197) ...
Selecting previously unselected package libcrypt-dev:amd64.
Preparing to unpack .../009-libcrypt-dev_1%3a4.4.10-10ubuntu4_amd64.deb ...
Unpacking libcrypt-dev:amd64 (1:4.4.10-10ubuntu4) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../010-libc6-dev_2.31-0ubuntu9.15_amd64.deb ...
Unpacking libc6-dev:amd64 (2.31-0ubuntu9.15) ...
Selecting previously unselected package gcc-9-base:amd64.
Preparing to unpack .../011-gcc-9-base_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking gcc-9-base:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package libisl22:amd64.
Preparing to unpack .../012-libisl22_0.22.1-1_amd64.deb ...
Unpacking libisl22:amd64 (0.22.1-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../013-libmpc3_1.1.0-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.1.0-1) ...
Selecting previously unselected package cpp-9.
Preparing to unpack .../014-cpp-9_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking cpp-9 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package cpp.
Preparing to unpack .../015-cpp_4%3a9.3.0-1ubuntu2_amd64.deb ...
Unpacking cpp (4:9.3.0-1ubuntu2) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../016-libcc1-0_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libcc1-0:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../017-libgomp1_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libgomp1:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../018-libitm1_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libitm1:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../019-libatomic1_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libatomic1:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libasan5:amd64.
Preparing to unpack .../020-libasan5_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking libasan5:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../021-liblsan0_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking liblsan0:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../022-libtsan0_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libtsan0:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../023-libubsan1_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libubsan1:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../024-libquadmath0_10.5.0-1ubuntu1~20.04_amd64.deb ...
Unpacking libquadmath0:amd64 (10.5.0-1ubuntu1~20.04) ...
Selecting previously unselected package libgcc-9-dev:amd64.
Preparing to unpack .../025-libgcc-9-dev_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking libgcc-9-dev:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package gcc-9.
Preparing to unpack .../026-gcc-9_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking gcc-9 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package gcc.
Preparing to unpack .../027-gcc_4%3a9.3.0-1ubuntu2_amd64.deb ...
Unpacking gcc (4:9.3.0-1ubuntu2) ...
Selecting previously unselected package libstdc++-9-dev:amd64.
Preparing to unpack .../028-libstdc++-9-dev_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking libstdc++-9-dev:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package g++-9.
Preparing to unpack .../029-g++-9_9.4.0-1ubuntu1~20.04.2_amd64.deb ...
Unpacking g++-9 (9.4.0-1ubuntu1~20.04.2) ...
Selecting previously unselected package g++.
Preparing to unpack .../030-g++_4%3a9.3.0-1ubuntu2_amd64.deb ...
Unpacking g++ (4:9.3.0-1ubuntu2) ...
Selecting previously unselected package make.
Preparing to unpack .../031-make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../032-libdpkg-perl_1.19.7ubuntu3.2_all.deb ...
Unpacking libdpkg-perl (1.19.7ubuntu3.2) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../033-dpkg-dev_1.19.7ubuntu3.2_all.deb ...
Unpacking dpkg-dev (1.19.7ubuntu3.2) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../034-build-essential_12.8ubuntu1.1_amd64.deb ...
Unpacking build-essential (12.8ubuntu1.1) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../035-libfakeroot_1.24-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.24-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../036-fakeroot_1.24-1_amd64.deb ...
Unpacking fakeroot (1.24-1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../037-python-pkg-resources_44.0.0-2ubuntu0.1_all.deb ...
Unpacking python-pkg-resources (44.0.0-2ubuntu0.1) ...
Selecting previously unselected package gyp.
Preparing to unpack .../038-gyp_0.1+20180428git4d467626-3ubuntu1_all.deb ...
Unpacking gyp (0.1+20180428git4d467626-3ubuntu1) ...
Selecting previously unselected package javascript-common.
Preparing to unpack .../039-javascript-common_11_all.deb ...
Unpacking javascript-common (11) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../040-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 .../041-libalgorithm-diff-xs-perl_0.04-6_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-6) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../042-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Selecting previously unselected package libdata-dump-perl.
Preparing to unpack .../043-libdata-dump-perl_1.23-1_all.deb ...
Unpacking libdata-dump-perl (1.23-1) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../044-libdrm-amdgpu1_2.4.107-8ubuntu1~20.04.2_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../045-libpciaccess0_0.16-0ubuntu1_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.16-0ubuntu1) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../046-libdrm-intel1_2.4.107-8ubuntu1~20.04.2_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../047-libdrm-nouveau2_2.4.107-8ubuntu1~20.04.2_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../048-libdrm-radeon1_2.4.107-8ubuntu1~20.04.2_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../049-libencode-locale-perl_1.05-1_all.deb ...
Unpacking libencode-locale-perl (1.05-1) ...
Selecting previously unselected package libipc-system-simple-perl.
Preparing to unpack .../050-libipc-system-simple-perl_1.26-1_all.deb ...
Unpacking libipc-system-simple-perl (1.26-1) ...
Selecting previously unselected package libfile-basedir-perl.
Preparing to unpack .../051-libfile-basedir-perl_0.08-1_all.deb ...
Unpacking libfile-basedir-perl (0.08-1) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../052-liburi-perl_1.76-2_all.deb ...
Unpacking liburi-perl (1.76-2) ...
Selecting previously unselected package libfile-desktopentry-perl.
Preparing to unpack .../053-libfile-desktopentry-perl_0.22-1_all.deb ...
Unpacking libfile-desktopentry-perl (0.22-1) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../054-libfile-fcntllock-perl_0.22-3build4_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3build4) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../055-libtimedate-perl_2.3200-1_all.deb ...
Unpacking libtimedate-perl (2.3200-1) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../056-libhttp-date-perl_6.05-1_all.deb ...
Unpacking libhttp-date-perl (6.05-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../057-libfile-listing-perl_6.04-1_all.deb ...
Unpacking libfile-listing-perl (6.04-1) ...
Selecting previously unselected package libfile-mimeinfo-perl.
Preparing to unpack .../058-libfile-mimeinfo-perl_0.29-1_all.deb ...
Unpacking libfile-mimeinfo-perl (0.29-1) ...
Selecting previously unselected package libfont-afm-perl.
Preparing to unpack .../059-libfont-afm-perl_1.20-2_all.deb ...
Unpacking libfont-afm-perl (1.20-2) ...
Selecting previously unselected package libfontenc1:amd64.
Preparing to unpack .../060-libfontenc1_1%3a1.1.4-0ubuntu1_amd64.deb ...
Unpacking libfontenc1:amd64 (1:1.1.4-0ubuntu1) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../061-libglapi-mesa_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ...
Unpacking libglapi-mesa:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Selecting previously unselected package libllvm12:amd64.
Preparing to unpack .../062-libllvm12_1%3a12.0.0-3ubuntu1~20.04.5_amd64.deb ...
Unpacking libllvm12:amd64 (1:12.0.0-3ubuntu1~20.04.5) ...
Selecting previously unselected package libsensors-config.
Preparing to unpack .../063-libsensors-config_1%3a3.6.0-2ubuntu1.1_all.deb ...
Unpacking libsensors-config (1:3.6.0-2ubuntu1.1) ...
Selecting previously unselected package libsensors5:amd64.
Preparing to unpack .../064-libsensors5_1%3a3.6.0-2ubuntu1.1_amd64.deb ...
Unpacking libsensors5:amd64 (1:3.6.0-2ubuntu1.1) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../065-libvulkan1_1.2.131.2-1_amd64.deb ...
Unpacking libvulkan1:amd64 (1.2.131.2-1) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../066-libgl1-mesa-dri_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../067-libx11-xcb1_2%3a1.6.9-2ubuntu1.6_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.6.9-2ubuntu1.6) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../068-libxcb-dri2-0_1.14-2_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../069-libxcb-dri3-0_1.14-2_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../070-libxcb-glx0_1.14-2_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../071-libxcb-present0_1.14-2_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../072-libxcb-shm0_1.14-2_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../073-libxcb-sync1_1.14-2_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../074-libxcb-xfixes0_1.14-2_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.14-2) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../075-libxfixes3_1%3a5.0.3-2_amd64.deb ...
Unpacking libxfixes3:amd64 (1:5.0.3-2) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../076-libxshmfence1_1.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../077-libxxf86vm1_1%3a1.1.4-1build1_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1build1) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../078-libglx-mesa0_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ...
Unpacking libglx-mesa0:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../079-libhtml-tagset-perl_3.20-4_all.deb ...
Unpacking libhtml-tagset-perl (3.20-4) ...
Selecting previously unselected package libhtml-parser-perl.
Preparing to unpack .../080-libhtml-parser-perl_3.72-5_amd64.deb ...
Unpacking libhtml-parser-perl (3.72-5) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../081-libio-html-perl_1.001-1_all.deb ...
Unpacking libio-html-perl (1.001-1) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../082-liblwp-mediatypes-perl_6.04-1_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-1) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../083-libhttp-message-perl_6.22-1_all.deb ...
Unpacking libhttp-message-perl (6.22-1) ...
Selecting previously unselected package libhtml-form-perl.
Preparing to unpack .../084-libhtml-form-perl_6.07-1_all.deb ...
Unpacking libhtml-form-perl (6.07-1) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../085-libhtml-tree-perl_5.07-2_all.deb ...
Unpacking libhtml-tree-perl (5.07-2) ...
Selecting previously unselected package libhtml-format-perl.
Preparing to unpack .../086-libhtml-format-perl_2.12-1_all.deb ...
Unpacking libhtml-format-perl (2.12-1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../087-libhttp-cookies-perl_6.08-1_all.deb ...
Unpacking libhttp-cookies-perl (6.08-1) ...
Selecting previously unselected package libhttp-daemon-perl.
Preparing to unpack .../088-libhttp-daemon-perl_6.06-1ubuntu0.1_all.deb ...
Unpacking libhttp-daemon-perl (6.06-1ubuntu0.1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../089-libhttp-negotiate-perl_6.01-1_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../090-x11-common_1%3a7.7+19ubuntu14_all.deb ...
dpkg-query: no packages found matching nux-tools
Unpacking x11-common (1:7.7+19ubuntu14) ...
Selecting previously unselected package libice6:amd64.
Preparing to unpack .../091-libice6_2%3a1.0.10-0ubuntu1_amd64.deb ...
Unpacking libice6:amd64 (2:1.0.10-0ubuntu1) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../092-perl-openssl-defaults_4_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (4) ...
Selecting previously unselected package libnet-ssleay-perl.
Preparing to unpack .../093-libnet-ssleay-perl_1.88-2ubuntu1_amd64.deb ...
Unpacking libnet-ssleay-perl (1.88-2ubuntu1) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../094-libio-socket-ssl-perl_2.067-1_all.deb ...
Unpacking libio-socket-ssl-perl (2.067-1) ...
Selecting previously unselected package libio-stringy-perl.
Preparing to unpack .../095-libio-stringy-perl_2.111-3_all.deb ...
Unpacking libio-stringy-perl (2.111-3) ...
Selecting previously unselected package libjs-is-typedarray.
Preparing to unpack .../096-libjs-is-typedarray_1.0.0-2_all.deb ...
Unpacking libjs-is-typedarray (1.0.0-2) ...
Selecting previously unselected package libjs-psl.
Preparing to unpack .../097-libjs-psl_1.7.0+ds-1_all.deb ...
Unpacking libjs-psl (1.7.0+ds-1) ...
Selecting previously unselected package libjs-typedarray-to-buffer.
Preparing to unpack .../098-libjs-typedarray-to-buffer_3.0.3-3_all.deb ...
Unpacking libjs-typedarray-to-buffer (3.0.3-3) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../099-libnet-http-perl_6.19-1_all.deb ...
Unpacking libnet-http-perl (6.19-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../100-libtry-tiny-perl_0.30-1_all.deb ...
Unpacking libtry-tiny-perl (0.30-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../101-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../102-libwww-perl_6.43-1_all.deb ...
Unpacking libwww-perl (6.43-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../103-liblwp-protocol-https-perl_6.07-2ubuntu2_all.deb ...
Unpacking liblwp-protocol-https-perl (6.07-2ubuntu2) ...
Selecting previously unselected package libnet-smtp-ssl-perl.
Preparing to unpack .../104-libnet-smtp-ssl-perl_1.04-1_all.deb ...
Unpacking libnet-smtp-ssl-perl (1.04-1) ...
Selecting previously unselected package libmailtools-perl.
Preparing to unpack .../105-libmailtools-perl_2.21-1_all.deb ...
Unpacking libmailtools-perl (2.21-1) ...
Selecting previously unselected package libxml-parser-perl.
Preparing to unpack .../106-libxml-parser-perl_2.46-1_amd64.deb ...
Unpacking libxml-parser-perl (2.46-1) ...
Selecting previously unselected package libxml-twig-perl.
Preparing to unpack .../107-libxml-twig-perl_1%3a3.50-2_all.deb ...
Unpacking libxml-twig-perl (1:3.50-2) ...
Selecting previously unselected package libnet-dbus-perl.
Preparing to unpack .../108-libnet-dbus-perl_1.2.0-1_amd64.deb ...
Unpacking libnet-dbus-perl (1.2.0-1) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../109-libssl-dev_1.1.1f-1ubuntu2.22_amd64.deb ...
Unpacking libssl-dev:amd64 (1.1.1f-1ubuntu2.22) ...
Selecting previously unselected package libuv1-dev:amd64.
Preparing to unpack .../110-libuv1-dev_1.34.2-1ubuntu1.5_amd64.deb ...
Unpacking libuv1-dev:amd64 (1.34.2-1ubuntu1.5) ...
Selecting previously unselected package libc-ares2:amd64.
Preparing to unpack .../111-libc-ares2_1.15.0-1ubuntu0.5_amd64.deb ...
Unpacking libc-ares2:amd64 (1.15.0-1ubuntu0.5) ...
Selecting previously unselected package libnode64:amd64.
Preparing to unpack .../112-libnode64_10.19.0~dfsg-3ubuntu1.6_amd64.deb ...
Unpacking libnode64:amd64 (10.19.0~dfsg-3ubuntu1.6) ...
Selecting previously unselected package libnode-dev:amd64.
Preparing to unpack .../113-libnode-dev_10.19.0~dfsg-3ubuntu1.6_amd64.deb ...
Unpacking libnode-dev:amd64 (10.19.0~dfsg-3ubuntu1.6) ...
Selecting previously unselected package libsm6:amd64.
Preparing to unpack .../114-libsm6_2%3a1.2.3-1_amd64.deb ...
Unpacking libsm6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package libtie-ixhash-perl.
Preparing to unpack .../115-libtie-ixhash-perl_1.23-2_all.deb ...
Unpacking libtie-ixhash-perl (1.23-2) ...
Selecting previously unselected package libwayland-client0:amd64.
Preparing to unpack .../116-libwayland-client0_1.18.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-client0:amd64 (1.18.0-1ubuntu0.1) ...
Selecting previously unselected package libx11-protocol-perl.
Preparing to unpack .../117-libx11-protocol-perl_0.56-7_all.deb ...
Unpacking libx11-protocol-perl (0.56-7) ...
Selecting previously unselected package libxt6:amd64.
Preparing to unpack .../118-libxt6_1%3a1.1.5-1_amd64.deb ...
Unpacking libxt6:amd64 (1:1.1.5-1) ...
Selecting previously unselected package libxmu6:amd64.
Preparing to unpack .../119-libxmu6_2%3a1.1.3-0ubuntu1_amd64.deb ...
Unpacking libxmu6:amd64 (2:1.1.3-0ubuntu1) ...
Selecting previously unselected package libxaw7:amd64.
Preparing to unpack .../120-libxaw7_2%3a1.0.13-1_amd64.deb ...
Unpacking libxaw7:amd64 (2:1.0.13-1) ...
Selecting previously unselected package libxcb-randr0:amd64.
Preparing to unpack .../121-libxcb-randr0_1.14-2_amd64.deb ...
Unpacking libxcb-randr0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-shape0:amd64.
Preparing to unpack .../122-libxcb-shape0_1.14-2_amd64.deb ...
Unpacking libxcb-shape0:amd64 (1.14-2) ...
Selecting previously unselected package libxcomposite1:amd64.
Preparing to unpack .../123-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../124-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package libxcursor1:amd64.
Preparing to unpack .../125-libxcursor1_1%3a1.2.0-2_amd64.deb ...
Unpacking libxcursor1:amd64 (1:1.2.0-2) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../126-libxft2_2.3.3-0ubuntu1_amd64.deb ...
Unpacking libxft2:amd64 (2.3.3-0ubuntu1) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../127-libxi6_2%3a1.7.10-0ubuntu1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.7.10-0ubuntu1) ...
Selecting previously unselected package libxinerama1:amd64.
Preparing to unpack .../128-libxinerama1_2%3a1.1.4-2_amd64.deb ...
Unpacking libxinerama1:amd64 (2:1.1.4-2) ...
Selecting previously unselected package libxkbfile1:amd64.
Preparing to unpack .../129-libxkbfile1_1%3a1.1.0-1_amd64.deb ...
Unpacking libxkbfile1:amd64 (1:1.1.0-1) ...
Selecting previously unselected package libxml-xpathengine-perl.
Preparing to unpack .../130-libxml-xpathengine-perl_0.14-1_all.deb ...
Unpacking libxml-xpathengine-perl (0.14-1) ...
Selecting previously unselected package libxrandr2:amd64.
Preparing to unpack .../131-libxrandr2_2%3a1.5.2-0ubuntu1_amd64.deb ...
Unpacking libxrandr2:amd64 (2:1.5.2-0ubuntu1) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../132-libxtst6_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package libxv1:amd64.
Preparing to unpack .../133-libxv1_2%3a1.0.11-1_amd64.deb ...
Unpacking libxv1:amd64 (2:1.0.11-1) ...
Selecting previously unselected package libxxf86dga1:amd64.
Preparing to unpack .../134-libxxf86dga1_2%3a1.1.5-0ubuntu1_amd64.deb ...
Unpacking libxxf86dga1:amd64 (2:1.1.5-0ubuntu1) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../135-manpages-dev_5.05-1_all.deb ...
Unpacking manpages-dev (5.05-1) ...
Selecting previously unselected package mesa-vulkan-drivers:amd64.
Preparing to unpack .../136-mesa-vulkan-drivers_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ...
Unpacking mesa-vulkan-drivers:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Selecting previously unselected package nodejs.
Preparing to unpack .../137-nodejs_10.19.0~dfsg-3ubuntu1.6_amd64.deb ...
Unpacking nodejs (10.19.0~dfsg-3ubuntu1.6) ...
Selecting previously unselected package node-fast-deep-equal.
Preparing to unpack .../138-node-fast-deep-equal_1.1.0-1_all.deb ...
Unpacking node-fast-deep-equal (1.1.0-1) ...
Selecting previously unselected package node-jsonify.
Preparing to unpack .../139-node-jsonify_0.0.0-1_all.deb ...
Unpacking node-jsonify (0.0.0-1) ...
Selecting previously unselected package node-json-stable-stringify.
Preparing to unpack .../140-node-json-stable-stringify_1.0.1-1_all.deb ...
Unpacking node-json-stable-stringify (1.0.1-1) ...
Selecting previously unselected package node-json-schema-traverse.
Preparing to unpack .../141-node-json-schema-traverse_0.3.1-1_all.deb ...
Unpacking node-json-schema-traverse (0.3.1-1) ...
Selecting previously unselected package node-punycode.
Preparing to unpack .../142-node-punycode_2.1.1-3_all.deb ...
Unpacking node-punycode (2.1.1-3) ...
Selecting previously unselected package node-uri-js.
Preparing to unpack .../143-node-uri-js_4.2.2+dfsg-5_all.deb ...
Unpacking node-uri-js (4.2.2+dfsg-5) ...
Selecting previously unselected package node-ajv.
Preparing to unpack .../144-node-ajv_6.10.2-1_all.deb ...
Unpacking node-ajv (6.10.2-1) ...
Selecting previously unselected package node-clone.
Preparing to unpack .../145-node-clone_2.1.2-1_all.deb ...
Unpacking node-clone (2.1.2-1) ...
Selecting previously unselected package node-defaults.
Preparing to unpack .../146-node-defaults_1.0.3-1_all.deb ...
Unpacking node-defaults (1.0.3-1) ...
Selecting previously unselected package node-wcwidth.js.
Preparing to unpack .../147-node-wcwidth.js_1.0.0-1_all.deb ...
Unpacking node-wcwidth.js (1.0.0-1) ...
Selecting previously unselected package node-ansi-regex.
Preparing to unpack .../148-node-ansi-regex_5.0.0-1_all.deb ...
Unpacking node-ansi-regex (5.0.0-1) ...
Selecting previously unselected package node-strip-ansi.
Preparing to unpack .../149-node-strip-ansi_6.0.0-2_all.deb ...
Unpacking node-strip-ansi (6.0.0-2) ...
Selecting previously unselected package node-string-width.
Preparing to unpack .../150-node-string-width_2.1.1-1_all.deb ...
Unpacking node-string-width (2.1.1-1) ...
Selecting previously unselected package node-ansi-align.
Preparing to unpack .../151-node-ansi-align_3.0.0-1_all.deb ...
Unpacking node-ansi-align (3.0.0-1) ...
Selecting previously unselected package node-ansistyles.
Preparing to unpack .../152-node-ansistyles_0.1.3-2_all.deb ...
Unpacking node-ansistyles (0.1.3-2) ...
Selecting previously unselected package node-aproba.
Preparing to unpack .../153-node-aproba_2.0.0-1_all.deb ...
Unpacking node-aproba (2.0.0-1) ...
Selecting previously unselected package node-delegates.
Preparing to unpack .../154-node-delegates_1.0.0-1_all.deb ...
Unpacking node-delegates (1.0.0-1) ...
Selecting previously unselected package libjs-inherits.
Preparing to unpack .../155-libjs-inherits_2.0.4-1_all.deb ...
Unpacking libjs-inherits (2.0.4-1) ...
Selecting previously unselected package node-inherits.
Preparing to unpack .../156-node-inherits_2.0.4-1_all.deb ...
Unpacking node-inherits (2.0.4-1) ...
Selecting previously unselected package node-core-util-is.
Preparing to unpack .../157-node-core-util-is_1.0.2-1_all.deb ...
Unpacking node-core-util-is (1.0.2-1) ...
Selecting previously unselected package node-safe-buffer.
Preparing to unpack .../158-node-safe-buffer_5.2.0-1_all.deb ...
Unpacking node-safe-buffer (5.2.0-1) ...
Selecting previously unselected package node-string-decoder.
Preparing to unpack .../159-node-string-decoder_1.2.0-2_all.deb ...
Unpacking node-string-decoder (1.2.0-2) ...
Selecting previously unselected package node-process-nextick-args.
Preparing to unpack .../160-node-process-nextick-args_2.0.0-1_all.deb ...
Unpacking node-process-nextick-args (2.0.0-1) ...
Selecting previously unselected package node-util-deprecate.
Preparing to unpack .../161-node-util-deprecate_1.0.2-1_all.deb ...
Unpacking node-util-deprecate (1.0.2-1) ...
Selecting previously unselected package node-isarray.
Preparing to unpack .../162-node-isarray_2.0.5-1_all.deb ...
Unpacking node-isarray (2.0.5-1) ...
Selecting previously unselected package node-readable-stream.
Preparing to unpack .../163-node-readable-stream_3.4.0-2_all.deb ...
Unpacking node-readable-stream (3.4.0-2) ...
Selecting previously unselected package node-are-we-there-yet.
Preparing to unpack .../164-node-are-we-there-yet_1.1.5-1_all.deb ...
Unpacking node-are-we-there-yet (1.1.5-1) ...
Selecting previously unselected package node-asap.
Preparing to unpack .../165-node-asap_2.0.6-2_all.deb ...
Unpacking node-asap (2.0.6-2) ...
Selecting previously unselected package node-asn1.
Preparing to unpack .../166-node-asn1_0.2.3-2_all.deb ...
Unpacking node-asn1 (0.2.3-2) ...
Selecting previously unselected package node-assert-plus.
Preparing to unpack .../167-node-assert-plus_1.0.0-2_all.deb ...
Unpacking node-assert-plus (1.0.0-2) ...
Selecting previously unselected package node-asynckit.
Preparing to unpack .../168-node-asynckit_0.4.0-3_all.deb ...
Unpacking node-asynckit (0.4.0-3) ...
Selecting previously unselected package node-aws-sign2.
Preparing to unpack .../169-node-aws-sign2_0.7.1-2_all.deb ...
Unpacking node-aws-sign2 (0.7.1-2) ...
Selecting previously unselected package node-aws4.
Preparing to unpack .../170-node-aws4_1.9.0-1_all.deb ...
Unpacking node-aws4 (1.9.0-1) ...
Selecting previously unselected package node-tweetnacl.
Preparing to unpack .../171-node-tweetnacl_1.0.1+dfsg-2_all.deb ...
Unpacking node-tweetnacl (1.0.1+dfsg-2) ...
Selecting previously unselected package node-bcrypt-pbkdf.
Preparing to unpack .../172-node-bcrypt-pbkdf_1.0.2-1_all.deb ...
Unpacking node-bcrypt-pbkdf (1.0.2-1) ...
Selecting previously unselected package node-bluebird.
Preparing to unpack .../173-node-bluebird_3.5.1+dfsg2-2build1_all.deb ...
Unpacking node-bluebird (3.5.1+dfsg2-2build1) ...
Selecting previously unselected package node-camelcase.
Preparing to unpack .../174-node-camelcase_5.3.1-1_all.deb ...
Unpacking node-camelcase (5.3.1-1) ...
Selecting previously unselected package node-color-name.
Preparing to unpack .../175-node-color-name_1.1.3-1_all.deb ...
Unpacking node-color-name (1.1.3-1) ...
Selecting previously unselected package node-color-convert.
Preparing to unpack .../176-node-color-convert_1.9.3-1_all.deb ...
Unpacking node-color-convert (1.9.3-1) ...
Selecting previously unselected package node-ansi-styles.
Preparing to unpack .../177-node-ansi-styles_4.2.1-1_all.deb ...
Unpacking node-ansi-styles (4.2.1-1) ...
Selecting previously unselected package node-escape-string-regexp.
Preparing to unpack .../178-node-escape-string-regexp_1.0.5-1_all.deb ...
Unpacking node-escape-string-regexp (1.0.5-1) ...
Selecting previously unselected package node-has-flag.
Preparing to unpack .../179-node-has-flag_4.0.0-1_all.deb ...
Unpacking node-has-flag (4.0.0-1) ...
Selecting previously unselected package node-supports-color.
Preparing to unpack .../180-node-supports-color_6.1.0-2_all.deb ...
Unpacking node-supports-color (6.1.0-2) ...
Selecting previously unselected package node-chalk.
Preparing to unpack .../181-node-chalk_2.4.2-1_all.deb ...
Unpacking node-chalk (2.4.2-1) ...
Selecting previously unselected package node-cli-boxes.
Preparing to unpack .../182-node-cli-boxes_2.2.0-2_all.deb ...
Unpacking node-cli-boxes (2.2.0-2) ...
Selecting previously unselected package node-yallist.
Preparing to unpack .../183-node-yallist_4.0.0-1_all.deb ...
Unpacking node-yallist (4.0.0-1) ...
Selecting previously unselected package node-lru-cache.
Preparing to unpack .../184-node-lru-cache_5.1.1-5_all.deb ...
Unpacking node-lru-cache (5.1.1-5) ...
Selecting previously unselected package node-isexe.
Preparing to unpack .../185-node-isexe_2.0.0-4_all.deb ...
Unpacking node-isexe (2.0.0-4) ...
Selecting previously unselected package node-which.
Preparing to unpack .../186-node-which_2.0.2-1_all.deb ...
Unpacking node-which (2.0.2-1) ...
Selecting previously unselected package node-shebang-regex.
Preparing to unpack .../187-node-shebang-regex_2.0.0-1_all.deb ...
Unpacking node-shebang-regex (2.0.0-1) ...
Selecting previously unselected package node-shebang-command.
Preparing to unpack .../188-node-shebang-command_1.2.0-1_all.deb ...
Unpacking node-shebang-command (1.2.0-1) ...
Selecting previously unselected package node-cross-spawn.
Preparing to unpack .../189-node-cross-spawn_5.1.0-2_all.deb ...
Unpacking node-cross-spawn (5.1.0-2) ...
Selecting previously unselected package node-wrappy.
Preparing to unpack .../190-node-wrappy_1.0.2-1_all.deb ...
Unpacking node-wrappy (1.0.2-1) ...
Selecting previously unselected package node-once.
Preparing to unpack .../191-node-once_1.4.0-3_all.deb ...
Unpacking node-once (1.4.0-3) ...
Selecting previously unselected package node-end-of-stream.
Preparing to unpack .../192-node-end-of-stream_1.4.4-1_all.deb ...
Unpacking node-end-of-stream (1.4.4-1) ...
Selecting previously unselected package node-pump.
Preparing to unpack .../193-node-pump_3.0.0-2_all.deb ...
Unpacking node-pump (3.0.0-2) ...
Selecting previously unselected package node-get-stream.
Preparing to unpack .../194-node-get-stream_4.1.0-1_all.deb ...
Unpacking node-get-stream (4.1.0-1) ...
Selecting previously unselected package node-is-stream.
Preparing to unpack .../195-node-is-stream_1.1.0-1_all.deb ...
Unpacking node-is-stream (1.1.0-1) ...
Selecting previously unselected package node-npm-run-path.
Preparing to unpack .../196-node-npm-run-path_2.0.2-2_all.deb ...
Unpacking node-npm-run-path (2.0.2-2) ...
Selecting previously unselected package node-p-finally.
Preparing to unpack .../197-node-p-finally_1.0.0-2_all.deb ...
Unpacking node-p-finally (1.0.0-2) ...
Selecting previously unselected package node-signal-exit.
Preparing to unpack .../198-node-signal-exit_3.0.2-1_all.deb ...
Unpacking node-signal-exit (3.0.2-1) ...
Selecting previously unselected package node-strip-eof.
Preparing to unpack .../199-node-strip-eof_1.0.0-2_all.deb ...
Unpacking node-strip-eof (1.0.0-2) ...
Selecting previously unselected package node-execa.
Preparing to unpack .../200-node-execa_0.10.0+dfsg-1_all.deb ...
Unpacking node-execa (0.10.0+dfsg-1) ...
Selecting previously unselected package node-term-size.
Preparing to unpack .../201-node-term-size_1.2.0+dfsg-2_all.deb ...
Unpacking node-term-size (1.2.0+dfsg-2) ...
Selecting previously unselected package node-widest-line.
Preparing to unpack .../202-node-widest-line_3.1.0-1_all.deb ...
Unpacking node-widest-line (3.1.0-1) ...
Selecting previously unselected package node-boxen.
Preparing to unpack .../203-node-boxen_4.2.0-2_all.deb ...
Unpacking node-boxen (4.2.0-2) ...
Selecting previously unselected package node-builtin-modules.
Preparing to unpack .../204-node-builtin-modules_3.1.0-1_all.deb ...
Unpacking node-builtin-modules (3.1.0-1) ...
Selecting previously unselected package node-builtins.
Preparing to unpack .../205-node-builtins_1.0.3-1_all.deb ...
Unpacking node-builtins (1.0.3-1) ...
Selecting previously unselected package node-chownr.
Preparing to unpack .../206-node-chownr_1.1.3-3_all.deb ...
Unpacking node-chownr (1.1.3-3) ...
Selecting previously unselected package node-balanced-match.
Preparing to unpack .../207-node-balanced-match_1.0.0-1_all.deb ...
Unpacking node-balanced-match (1.0.0-1) ...
Selecting previously unselected package node-concat-map.
Preparing to unpack .../208-node-concat-map_0.0.1-2_all.deb ...
Unpacking node-concat-map (0.0.1-2) ...
Selecting previously unselected package node-brace-expansion.
Preparing to unpack .../209-node-brace-expansion_1.1.11-1_all.deb ...
Unpacking node-brace-expansion (1.1.11-1) ...
Selecting previously unselected package node-minimatch.
Preparing to unpack .../210-node-minimatch_3.0.4-4ubuntu0.1_all.deb ...
Unpacking node-minimatch (3.0.4-4ubuntu0.1) ...
Selecting previously unselected package node-fs.realpath.
Preparing to unpack .../211-node-fs.realpath_1.0.0-1_all.deb ...
Unpacking node-fs.realpath (1.0.0-1) ...
Selecting previously unselected package node-inflight.
Preparing to unpack .../212-node-inflight_1.0.6-1_all.deb ...
Unpacking node-inflight (1.0.6-1) ...
Selecting previously unselected package node-path-is-absolute.
Preparing to unpack .../213-node-path-is-absolute_2.0.0-1_all.deb ...
Unpacking node-path-is-absolute (2.0.0-1) ...
Selecting previously unselected package node-glob.
Preparing to unpack .../214-node-glob_7.1.6-1_all.deb ...
Unpacking node-glob (7.1.6-1) ...
Selecting previously unselected package node-graceful-fs.
Preparing to unpack .../215-node-graceful-fs_4.2.3-2_all.deb ...
Unpacking node-graceful-fs (4.2.3-2) ...
Selecting previously unselected package node-typedarray.
Preparing to unpack .../216-node-typedarray_0.0.6-1_all.deb ...
Unpacking node-typedarray (0.0.6-1) ...
Selecting previously unselected package node-concat-stream.
Preparing to unpack .../217-node-concat-stream_1.6.2-1_all.deb ...
Unpacking node-concat-stream (1.6.2-1) ...
Selecting previously unselected package node-stream-shift.
Preparing to unpack .../218-node-stream-shift_1.0.0-1_all.deb ...
Unpacking node-stream-shift (1.0.0-1) ...
Selecting previously unselected package node-duplexify.
Preparing to unpack .../219-node-duplexify_4.1.1-1_all.deb ...
Unpacking node-duplexify (4.1.1-1) ...
Selecting previously unselected package node-flush-write-stream.
Preparing to unpack .../220-node-flush-write-stream_2.0.0-2_all.deb ...
Unpacking node-flush-write-stream (2.0.0-2) ...
Selecting previously unselected package node-from2.
Preparing to unpack .../221-node-from2_2.3.0-1_all.deb ...
Unpacking node-from2 (2.3.0-1) ...
Selecting previously unselected package node-cyclist.
Preparing to unpack .../222-node-cyclist_1.0.1-2_all.deb ...
Unpacking node-cyclist (1.0.1-2) ...
Selecting previously unselected package node-parallel-transform.
Preparing to unpack .../223-node-parallel-transform_1.1.0-2_all.deb ...
Unpacking node-parallel-transform (1.1.0-2) ...
Selecting previously unselected package node-pumpify.
Preparing to unpack .../224-node-pumpify_2.0.1-1_all.deb ...
Unpacking node-pumpify (2.0.1-1) ...
Selecting previously unselected package node-stream-each.
Preparing to unpack .../225-node-stream-each_1.2.3-1_all.deb ...
Unpacking node-stream-each (1.2.3-1) ...
Selecting previously unselected package node-through2.
Preparing to unpack .../226-node-through2_3.0.1-2_all.deb ...
Unpacking node-through2 (3.0.1-2) ...
Selecting previously unselected package node-mississippi.
Preparing to unpack .../227-node-mississippi_3.0.0-1_all.deb ...
Unpacking node-mississippi (3.0.0-1) ...
Selecting previously unselected package node-mkdirp.
Preparing to unpack .../228-node-mkdirp_0.5.1-2_all.deb ...
Unpacking node-mkdirp (0.5.1-2) ...
Selecting previously unselected package node-run-queue.
Preparing to unpack .../229-node-run-queue_1.0.3-1_all.deb ...
Unpacking node-run-queue (1.0.3-1) ...
Selecting previously unselected package node-rimraf.
Preparing to unpack .../230-node-rimraf_2.6.3-1_all.deb ...
Unpacking node-rimraf (2.6.3-1) ...
Selecting previously unselected package node-imurmurhash.
Preparing to unpack .../231-node-imurmurhash_0.1.4-1_all.deb ...
Unpacking node-imurmurhash (0.1.4-1) ...
Selecting previously unselected package node-iferr.
Preparing to unpack .../232-node-iferr_1.0.2-1_all.deb ...
Unpacking node-iferr (1.0.2-1) ...
Selecting previously unselected package node-fs-write-stream-atomic.
Preparing to unpack .../233-node-fs-write-stream-atomic_1.0.10-4_all.deb ...
Unpacking node-fs-write-stream-atomic (1.0.10-4) ...
Selecting previously unselected package node-copy-concurrently.
Preparing to unpack .../234-node-copy-concurrently_1.0.5-4_all.deb ...
Unpacking node-copy-concurrently (1.0.5-4) ...
Selecting previously unselected package node-move-concurrently.
Preparing to unpack .../235-node-move-concurrently_1.0.1-2_all.deb ...
Unpacking node-move-concurrently (1.0.1-2) ...
Selecting previously unselected package node-promise-inflight.
Preparing to unpack .../236-node-promise-inflight_1.0.1-1_all.deb ...
Unpacking node-promise-inflight (1.0.1-1) ...
Selecting previously unselected package node-ssri.
Preparing to unpack .../237-node-ssri_7.1.0-2_all.deb ...
Unpacking node-ssri (7.1.0-2) ...
Selecting previously unselected package node-unique-filename.
Preparing to unpack .../238-node-unique-filename_1.1.1+ds-1_all.deb ...
Unpacking node-unique-filename (1.1.1+ds-1) ...
Selecting previously unselected package node-y18n.
Preparing to unpack .../239-node-y18n_4.0.0-2_all.deb ...
Unpacking node-y18n (4.0.0-2) ...
Selecting previously unselected package node-cacache.
Preparing to unpack .../240-node-cacache_11.3.3-2_all.deb ...
Unpacking node-cacache (11.3.3-2) ...
Selecting previously unselected package node-call-limit.
Preparing to unpack .../241-node-call-limit_1.1.1-1_all.deb ...
Unpacking node-call-limit (1.1.1-1) ...
Selecting previously unselected package node-caseless.
Preparing to unpack .../242-node-caseless_0.12.0-1_all.deb ...
Unpacking node-caseless (0.12.0-1) ...
Selecting previously unselected package node-ci-info.
Preparing to unpack .../243-node-ci-info_2.0.0-1_all.deb ...
Unpacking node-ci-info (2.0.0-1) ...
Selecting previously unselected package node-wrap-ansi.
Preparing to unpack .../244-node-wrap-ansi_4.0.0-2_all.deb ...
Unpacking node-wrap-ansi (4.0.0-2) ...
Selecting previously unselected package node-cliui.
Preparing to unpack .../245-node-cliui_4.1.0-2_all.deb ...
Unpacking node-cliui (4.1.0-2) ...
Selecting previously unselected package node-co.
Preparing to unpack .../246-node-co_4.6.0-1_all.deb ...
Unpacking node-co (4.6.0-1) ...
Selecting previously unselected package node-colors.
Preparing to unpack .../247-node-colors_1.4.0-1_all.deb ...
Unpacking node-colors (1.4.0-1) ...
Selecting previously unselected package node-columnify.
Preparing to unpack .../248-node-columnify_1.5.4-1_all.deb ...
Unpacking node-columnify (1.5.4-1) ...
Selecting previously unselected package node-proto-list.
Preparing to unpack .../249-node-proto-list_1.2.4-1_all.deb ...
Unpacking node-proto-list (1.2.4-1) ...
Selecting previously unselected package node-ini.
Preparing to unpack .../250-node-ini_1.3.5-1_all.deb ...
Unpacking node-ini (1.3.5-1) ...
Selecting previously unselected package node-config-chain.
Preparing to unpack .../251-node-config-chain_1.1.12-1_all.deb ...
Unpacking node-config-chain (1.1.12-1) ...
Selecting previously unselected package node-is-obj.
Preparing to unpack .../252-node-is-obj_1.0.1-2_all.deb ...
Unpacking node-is-obj (1.0.1-2) ...
Selecting previously unselected package node-dot-prop.
Preparing to unpack .../253-node-dot-prop_5.2.0-1_all.deb ...
Unpacking node-dot-prop (5.2.0-1) ...
Selecting previously unselected package node-semver.
Preparing to unpack .../254-node-semver_7.1.3-1_all.deb ...
Unpacking node-semver (7.1.3-1) ...
Selecting previously unselected package node-make-dir.
Preparing to unpack .../255-node-make-dir_3.0.2-1_all.deb ...
Unpacking node-make-dir (3.0.2-1) ...
Selecting previously unselected package node-crypto-random-string.
Preparing to unpack .../256-node-crypto-random-string_1.0.0-1_all.deb ...
Unpacking node-crypto-random-string (1.0.0-1) ...
Selecting previously unselected package node-unique-string.
Preparing to unpack .../257-node-unique-string_1.0.0-1_all.deb ...
Unpacking node-unique-string (1.0.0-1) ...
Selecting previously unselected package node-is-typedarray.
Preparing to unpack .../258-node-is-typedarray_1.0.0-2_all.deb ...
Unpacking node-is-typedarray (1.0.0-2) ...
Selecting previously unselected package node-typedarray-to-buffer.
Preparing to unpack .../259-node-typedarray-to-buffer_3.0.3-3_all.deb ...
Unpacking node-typedarray-to-buffer (3.0.3-3) ...
Selecting previously unselected package node-write-file-atomic.
Preparing to unpack .../260-node-write-file-atomic_3.0.3-1_all.deb ...
Unpacking node-write-file-atomic (3.0.3-1) ...
Selecting previously unselected package node-xdg-basedir.
Preparing to unpack .../261-node-xdg-basedir_3.0.0-1_all.deb ...
Unpacking node-xdg-basedir (3.0.0-1) ...
Selecting previously unselected package node-configstore.
Preparing to unpack .../262-node-configstore_5.0.1-1_all.deb ...
Unpacking node-configstore (5.0.1-1) ...
Selecting previously unselected package node-console-control-strings.
Preparing to unpack .../263-node-console-control-strings_1.1.0-1_all.deb ...
Unpacking node-console-control-strings (1.1.0-1) ...
Selecting previously unselected package node-dashdash.
Preparing to unpack .../264-node-dashdash_1.14.1-2_all.deb ...
Unpacking node-dashdash (1.14.1-2) ...
Selecting previously unselected package node-decamelize.
Preparing to unpack .../265-node-decamelize_1.2.0-1_all.deb ...
Unpacking node-decamelize (1.2.0-1) ...
Selecting previously unselected package node-mimic-response.
Preparing to unpack .../266-node-mimic-response_2.1.0-1_all.deb ...
Unpacking node-mimic-response (2.1.0-1) ...
Selecting previously unselected package node-decompress-response.
Preparing to unpack .../267-node-decompress-response_3.3.0-1_all.deb ...
Unpacking node-decompress-response (3.3.0-1) ...
Selecting previously unselected package node-deep-extend.
Preparing to unpack .../268-node-deep-extend_0.6.0-1_all.deb ...
Unpacking node-deep-extend (0.6.0-1) ...
Selecting previously unselected package node-lodash-packages.
Preparing to unpack .../269-node-lodash-packages_4.17.15+dfsg-2_all.deb ...
Unpacking node-lodash-packages (4.17.15+dfsg-2) ...
Selecting previously unselected package node-define-properties.
Preparing to unpack .../270-node-define-properties_1.1.3-1_all.deb ...
Unpacking node-define-properties (1.1.3-1) ...
Selecting previously unselected package node-detect-indent.
Preparing to unpack .../271-node-detect-indent_5.0.0-1_all.deb ...
Unpacking node-detect-indent (5.0.0-1) ...
Selecting previously unselected package node-detect-newline.
Preparing to unpack .../272-node-detect-newline_2.1.0-1_all.deb ...
Unpacking node-detect-newline (2.1.0-1) ...
Selecting previously unselected package node-duplexer3.
Preparing to unpack .../273-node-duplexer3_0.1.4-5_all.deb ...
Unpacking node-duplexer3 (0.1.4-5) ...
Selecting previously unselected package node-jsbn.
Preparing to unpack .../274-node-jsbn_1.1.0-1_all.deb ...
Unpacking node-jsbn (1.1.0-1) ...
Selecting previously unselected package node-ecc-jsbn.
Preparing to unpack .../275-node-ecc-jsbn_0.2.0-2_all.deb ...
Unpacking node-ecc-jsbn (0.2.0-2) ...
Selecting previously unselected package node-editor.
Preparing to unpack .../276-node-editor_1.0.0-1_all.deb ...
Unpacking node-editor (1.0.0-1) ...
Selecting previously unselected package node-err-code.
Preparing to unpack .../277-node-err-code_2.0.0+dfsg-1_all.deb ...
Unpacking node-err-code (2.0.0+dfsg-1) ...
Selecting previously unselected package node-es6-promise.
Preparing to unpack .../278-node-es6-promise_4.2.8-6_all.deb ...
Unpacking node-es6-promise (4.2.8-6) ...
Selecting previously unselected package node-extsprintf.
Preparing to unpack .../279-node-extsprintf_1.3.0-1_all.deb ...
Unpacking node-extsprintf (1.3.0-1) ...
Selecting previously unselected package node-p-limit.
Preparing to unpack .../280-node-p-limit_2.2.2-1_all.deb ...
Unpacking node-p-limit (2.2.2-1) ...
Selecting previously unselected package node-p-locate.
Preparing to unpack .../281-node-p-locate_2.0.0-1_all.deb ...
Unpacking node-p-locate (2.0.0-1) ...
Selecting previously unselected package node-path-exists.
Preparing to unpack .../282-node-path-exists_4.0.0-2_all.deb ...
Unpacking node-path-exists (4.0.0-2) ...
Selecting previously unselected package node-locate-path.
Preparing to unpack .../283-node-locate-path_5.0.0-2_all.deb ...
Unpacking node-locate-path (5.0.0-2) ...
Selecting previously unselected package node-find-up.
Preparing to unpack .../284-node-find-up_4.1.0-2_all.deb ...
Unpacking node-find-up (4.1.0-2) ...
Selecting previously unselected package node-path-is-inside.
Preparing to unpack .../285-node-path-is-inside_1.0.2-1_all.deb ...
Unpacking node-path-is-inside (1.0.2-1) ...
Selecting previously unselected package node-fs-vacuum.
Preparing to unpack .../286-node-fs-vacuum_1.2.10-3_all.deb ...
Unpacking node-fs-vacuum (1.2.10-3) ...
Selecting previously unselected package node-function-bind.
Preparing to unpack .../287-node-function-bind_1.1.1+repack-1_all.deb ...
Unpacking node-function-bind (1.1.1+repack-1) ...
Selecting previously unselected package node-object-assign.
Preparing to unpack .../288-node-object-assign_4.1.1-3_all.deb ...
Unpacking node-object-assign (4.1.1-3) ...
Selecting previously unselected package node-has-unicode.
Preparing to unpack .../289-node-has-unicode_2.0.1-2_all.deb ...
Unpacking node-has-unicode (2.0.1-2) ...
Selecting previously unselected package node-wide-align.
Preparing to unpack .../290-node-wide-align_1.1.3-1_all.deb ...
Unpacking node-wide-align (1.1.3-1) ...
Selecting previously unselected package node-gauge.
Preparing to unpack .../291-node-gauge_2.7.4-1_all.deb ...
Unpacking node-gauge (2.7.4-1) ...
Selecting previously unselected package node-genfun.
Preparing to unpack .../292-node-genfun_5.0.0-1_all.deb ...
Unpacking node-genfun (5.0.0-1) ...
Selecting previously unselected package node-get-caller-file.
Preparing to unpack .../293-node-get-caller-file_1.0.2-1_all.deb ...
Unpacking node-get-caller-file (1.0.2-1) ...
Selecting previously unselected package node-getpass.
Preparing to unpack .../294-node-getpass_0.1.7-1_all.deb ...
Unpacking node-getpass (0.1.7-1) ...
Selecting previously unselected package node-is-retry-allowed.
Preparing to unpack .../295-node-is-retry-allowed_1.1.0-1_all.deb ...
Unpacking node-is-retry-allowed (1.1.0-1) ...
Selecting previously unselected package node-p-cancelable.
Preparing to unpack .../296-node-p-cancelable_0.3.0-1_all.deb ...
Unpacking node-p-cancelable (0.3.0-1) ...
Selecting previously unselected package node-p-timeout.
Preparing to unpack .../297-node-p-timeout_1.2.0-1_all.deb ...
Unpacking node-p-timeout (1.2.0-1) ...
Selecting previously unselected package node-is-plain-obj.
Preparing to unpack .../298-node-is-plain-obj_1.1.0-1_all.deb ...
Unpacking node-is-plain-obj (1.1.0-1) ...
Selecting previously unselected package node-url-to-options.
Preparing to unpack .../299-node-url-to-options_1.0.1-1_all.deb ...
Unpacking node-url-to-options (1.0.1-1) ...
Selecting previously unselected package node-timed-out.
Preparing to unpack .../300-node-timed-out_4.0.1-5_all.deb ...
Unpacking node-timed-out (4.0.1-5) ...
Selecting previously unselected package node-lowercase-keys.
Preparing to unpack .../301-node-lowercase-keys_2.0.0-1_all.deb ...
Unpacking node-lowercase-keys (2.0.0-1) ...
Selecting previously unselected package node-is-object.
Preparing to unpack .../302-node-is-object_1.0.1-1_all.deb ...
Unpacking node-is-object (1.0.1-1) ...
Selecting previously unselected package node-has-symbol-support-x.
Preparing to unpack .../303-node-has-symbol-support-x_1.4.1+dfsg-1_all.deb ...
Unpacking node-has-symbol-support-x (1.4.1+dfsg-1) ...
Selecting previously unselected package node-has-to-string-tag-x.
Preparing to unpack .../304-node-has-to-string-tag-x_1.4.1+dfsg-1_all.deb ...
Unpacking node-has-to-string-tag-x (1.4.1+dfsg-1) ...
Selecting previously unselected package node-isurl.
Preparing to unpack .../305-node-isurl_4.0.1-2_all.deb ...
Unpacking node-isurl (4.0.1-2) ...
Selecting previously unselected package node-prepend-http.
Preparing to unpack .../306-node-prepend-http_2.0.0-1_all.deb ...
Unpacking node-prepend-http (2.0.0-1) ...
Selecting previously unselected package node-url-parse-lax.
Preparing to unpack .../307-node-url-parse-lax_1.0.0-1_all.deb ...
Unpacking node-url-parse-lax (1.0.0-1) ...
Selecting previously unselected package node-got.
Preparing to unpack .../308-node-got_7.1.0-1_all.deb ...
Unpacking node-got (7.1.0-1) ...
Selecting previously unselected package node-har-schema.
Preparing to unpack .../309-node-har-schema_2.0.0-3_all.deb ...
Unpacking node-har-schema (2.0.0-3) ...
Selecting previously unselected package node-har-validator.
Preparing to unpack .../310-node-har-validator_5.1.3-1_all.deb ...
Unpacking node-har-validator (5.1.3-1) ...
Selecting previously unselected package node-hosted-git-info.
Preparing to unpack .../311-node-hosted-git-info_2.8.5-1_all.deb ...
Unpacking node-hosted-git-info (2.8.5-1) ...
Selecting previously unselected package node-json-schema.
Preparing to unpack .../312-node-json-schema_0.2.3-1+deb10u1build0.20.04.1_all.deb ...
Unpacking node-json-schema (0.2.3-1+deb10u1build0.20.04.1) ...
Selecting previously unselected package node-verror.
Preparing to unpack .../313-node-verror_1.10.0-1_all.deb ...
Unpacking node-verror (1.10.0-1) ...
Selecting previously unselected package node-jsprim.
Preparing to unpack .../314-node-jsprim_1.4.1-1_all.deb ...
Unpacking node-jsprim (1.4.1-1) ...
Selecting previously unselected package node-sshpk.
Preparing to unpack .../315-node-sshpk_1.16.1+dfsg-2_all.deb ...
Unpacking node-sshpk (1.16.1+dfsg-2) ...
Selecting previously unselected package node-http-signature.
Preparing to unpack .../316-node-http-signature_1.3.2-1_all.deb ...
Unpacking node-http-signature (1.3.2-1) ...
Selecting previously unselected package node-iconv-lite.
Preparing to unpack .../317-node-iconv-lite_0.4.23-1_all.deb ...
Unpacking node-iconv-lite (0.4.23-1) ...
Selecting previously unselected package node-import-lazy.
Preparing to unpack .../318-node-import-lazy_3.0.0.REALLY.2.1.0-1_all.deb ...
Unpacking node-import-lazy (3.0.0.REALLY.2.1.0-1) ...
Selecting previously unselected package node-invert-kv.
Preparing to unpack .../319-node-invert-kv_1.0.0-1_all.deb ...
Unpacking node-invert-kv (1.0.0-1) ...
Selecting previously unselected package node-ip.
Preparing to unpack .../320-node-ip_1.1.5-5_all.deb ...
Unpacking node-ip (1.1.5-5) ...
Selecting previously unselected package node-ip-regex.
Preparing to unpack .../321-node-ip-regex_4.1.0-2_all.deb ...
Unpacking node-ip-regex (4.1.0-2) ...
Selecting previously unselected package node-is-npm.
Preparing to unpack .../322-node-is-npm_1.0.0-1_all.deb ...
Unpacking node-is-npm (1.0.0-1) ...
Selecting previously unselected package node-is-path-inside.
Preparing to unpack .../323-node-is-path-inside_1.0.1-1_all.deb ...
Unpacking node-is-path-inside (1.0.1-1) ...
Selecting previously unselected package node-isstream.
Preparing to unpack .../324-node-isstream_0.1.2+dfsg-1_all.deb ...
Unpacking node-isstream (0.1.2+dfsg-1) ...
Selecting previously unselected package node-json-parse-better-errors.
Preparing to unpack .../325-node-json-parse-better-errors_1.0.2-2_all.deb ...
Unpacking node-json-parse-better-errors (1.0.2-2) ...
Selecting previously unselected package node-jsonparse.
Preparing to unpack .../326-node-jsonparse_1.3.1-7_all.deb ...
Unpacking node-jsonparse (1.3.1-7) ...
Selecting previously unselected package node-through.
Preparing to unpack .../327-node-through_2.3.8-1_all.deb ...
Unpacking node-through (2.3.8-1) ...
Selecting previously unselected package node-jsonstream.
Preparing to unpack .../328-node-jsonstream_1.3.5-1_all.deb ...
Unpacking node-jsonstream (1.3.5-1) ...
Selecting previously unselected package node-minimist.
Preparing to unpack .../329-node-minimist_1.2.5-1_all.deb ...
Unpacking node-minimist (1.2.5-1) ...
Selecting previously unselected package node-strip-json-comments.
Preparing to unpack .../330-node-strip-json-comments_3.0.1-3_all.deb ...
Unpacking node-strip-json-comments (3.0.1-3) ...
Selecting previously unselected package node-rc.
Preparing to unpack .../331-node-rc_1.2.8-1_all.deb ...
Unpacking node-rc (1.2.8-1) ...
Selecting previously unselected package node-registry-url.
Preparing to unpack .../332-node-registry-url_3.1.0-1_all.deb ...
Unpacking node-registry-url (3.1.0-1) ...
Selecting previously unselected package node-registry-auth-token.
Preparing to unpack .../333-node-registry-auth-token_3.3.1-1_all.deb ...
Unpacking node-registry-auth-token (3.3.1-1) ...
Selecting previously unselected package node-package-json.
Preparing to unpack .../334-node-package-json_4.0.1-1_all.deb ...
Unpacking node-package-json (4.0.1-1) ...
Selecting previously unselected package node-latest-version.
Preparing to unpack .../335-node-latest-version_3.1.0-1_all.deb ...
Unpacking node-latest-version (3.1.0-1) ...
Selecting previously unselected package node-lazy-property.
Preparing to unpack .../336-node-lazy-property_1.0.0-3_all.deb ...
Unpacking node-lazy-property (1.0.0-3) ...
Selecting previously unselected package node-lcid.
Preparing to unpack .../337-node-lcid_1.0.0-1_all.deb ...
Unpacking node-lcid (1.0.0-1) ...
Selecting previously unselected package node-osenv.
Preparing to unpack .../338-node-osenv_0.1.5-1_all.deb ...
Unpacking node-osenv (0.1.5-1) ...
Selecting previously unselected package node-validate-npm-package-name.
Preparing to unpack .../339-node-validate-npm-package-name_3.0.0-1_all.deb ...
Unpacking node-validate-npm-package-name (3.0.0-1) ...
Selecting previously unselected package node-npm-package-arg.
Preparing to unpack .../340-node-npm-package-arg_6.1.1-1_all.deb ...
Unpacking node-npm-package-arg (6.1.1-1) ...
Selecting previously unselected package node-require-directory.
Preparing to unpack .../341-node-require-directory_2.1.1-1_all.deb ...
Unpacking node-require-directory (2.1.1-1) ...
Selecting previously unselected package node-set-blocking.
Preparing to unpack .../342-node-set-blocking_2.0.0-1_all.deb ...
Unpacking node-set-blocking (2.0.0-1) ...
Selecting previously unselected package node-require-main-filename.
Preparing to unpack .../343-node-require-main-filename_1.0.1-1_all.deb ...
Unpacking node-require-main-filename (1.0.1-1) ...
Selecting previously unselected package node-which-module.
Preparing to unpack .../344-node-which-module_2.0.0-1_all.deb ...
Unpacking node-which-module (2.0.0-1) ...
Selecting previously unselected package node-mimic-fn.
Preparing to unpack .../345-node-mimic-fn_3.0.0-1_all.deb ...
Unpacking node-mimic-fn (3.0.0-1) ...
Selecting previously unselected package node-mem.
Preparing to unpack .../346-node-mem_1.1.0-1_all.deb ...
Unpacking node-mem (1.1.0-1) ...
Selecting previously unselected package node-os-locale.
Preparing to unpack .../347-node-os-locale_4.0.0-1_all.deb ...
Unpacking node-os-locale (4.0.0-1) ...
Selecting previously unselected package node-yargs-parser.
Preparing to unpack .../348-node-yargs-parser_18.1.1-1_all.deb ...
Unpacking node-yargs-parser (18.1.1-1) ...
Selecting previously unselected package node-yargs.
Preparing to unpack .../349-node-yargs_15.3.0-1_all.deb ...
Unpacking node-yargs (15.3.0-1) ...
Selecting previously unselected package node-libnpx.
Preparing to unpack .../350-node-libnpx_10.2.1-2_all.deb ...
Unpacking node-libnpx (10.2.1-2) ...
Selecting previously unselected package node-lodash.
Preparing to unpack .../351-node-lodash_4.17.15+dfsg-2_all.deb ...
Unpacking node-lodash (4.17.15+dfsg-2) ...
Selecting previously unselected package node-ms.
Preparing to unpack .../352-node-ms_2.1.1-1_all.deb ...
Unpacking node-ms (2.1.1-1) ...
Selecting previously unselected package node-npm-bundled.
Preparing to unpack .../353-node-npm-bundled_1.1.1-1_all.deb ...
Unpacking node-npm-bundled (1.1.1-1) ...
Selecting previously unselected package node-number-is-nan.
Preparing to unpack .../354-node-number-is-nan_2.0.0-1_all.deb ...
Unpacking node-number-is-nan (2.0.0-1) ...
Selecting previously unselected package xdg-utils.
Preparing to unpack .../355-xdg-utils_1.1.3-2ubuntu1.20.04.2_all.deb ...
Unpacking xdg-utils (1.1.3-2ubuntu1.20.04.2) ...
Selecting previously unselected package node-opener.
Preparing to unpack .../356-node-opener_1.5.1-1_all.deb ...
Unpacking node-opener (1.5.1-1) ...
Selecting previously unselected package node-p-is-promise.
Preparing to unpack .../357-node-p-is-promise_3.0.0-1_all.deb ...
Unpacking node-p-is-promise (3.0.0-1) ...
Selecting previously unselected package node-performance-now.
Preparing to unpack .../358-node-performance-now_2.1.0+debian-1_all.deb ...
Unpacking node-performance-now (2.1.0+debian-1) ...
Selecting previously unselected package node-pify.
Preparing to unpack .../359-node-pify_3.0.0-1_all.deb ...
Unpacking node-pify (3.0.0-1) ...
Selecting previously unselected package node-retry.
Preparing to unpack .../360-node-retry_0.12.0-1_all.deb ...
Unpacking node-retry (0.12.0-1) ...
Selecting previously unselected package node-promise-retry.
Preparing to unpack .../361-node-promise-retry_1.1.1-4_all.deb ...
Unpacking node-promise-retry (1.1.1-4) ...
Selecting previously unselected package node-mute-stream.
Preparing to unpack .../362-node-mute-stream_0.0.8-2_all.deb ...
Unpacking node-mute-stream (0.0.8-2) ...
Selecting previously unselected package node-read.
Preparing to unpack .../363-node-read_1.0.7-2_all.deb ...
Unpacking node-read (1.0.7-2) ...
Selecting previously unselected package node-promzard.
Preparing to unpack .../364-node-promzard_0.3.0-1_all.deb ...
Unpacking node-promzard (0.3.0-1) ...
Selecting previously unselected package node-pseudomap.
Preparing to unpack .../365-node-pseudomap_1.0.2-1_all.deb ...
Unpacking node-pseudomap (1.0.2-1) ...
Selecting previously unselected package node-psl.
Preparing to unpack .../366-node-psl_1.7.0+ds-1_all.deb ...
Unpacking node-psl (1.7.0+ds-1) ...
Selecting previously unselected package node-qw.
Preparing to unpack .../367-node-qw_1.0.1-1_all.deb ...
Unpacking node-qw (1.0.1-1) ...
Selecting previously unselected package node-resolve-from.
Preparing to unpack .../368-node-resolve-from_4.0.0-1_all.deb ...
Unpacking node-resolve-from (4.0.0-1) ...
Selecting previously unselected package node-semver-diff.
Preparing to unpack .../369-node-semver-diff_2.1.0-2_all.deb ...
Unpacking node-semver-diff (2.1.0-2) ...
Selecting previously unselected package node-slash.
Preparing to unpack .../370-node-slash_3.0.0-1_all.deb ...
Unpacking node-slash (3.0.0-1) ...
Selecting previously unselected package node-sorted-object.
Preparing to unpack .../371-node-sorted-object_2.0.1-1_all.deb ...
Unpacking node-sorted-object (2.0.1-1) ...
Selecting previously unselected package node-spdx-license-ids.
Preparing to unpack .../372-node-spdx-license-ids_3.0.5-1_all.deb ...
Unpacking node-spdx-license-ids (3.0.5-1) ...
Selecting previously unselected package node-spdx-exceptions.
Preparing to unpack .../373-node-spdx-exceptions_2.2.0-1_all.deb ...
Unpacking node-spdx-exceptions (2.2.0-1) ...
Selecting previously unselected package node-spdx-expression-parse.
Preparing to unpack .../374-node-spdx-expression-parse_3.0.0-1_all.deb ...
Unpacking node-spdx-expression-parse (3.0.0-1) ...
Selecting previously unselected package node-spdx-correct.
Preparing to unpack .../375-node-spdx-correct_3.1.0-1_all.deb ...
Unpacking node-spdx-correct (3.1.0-1) ...
Selecting previously unselected package node-stream-iterate.
Preparing to unpack .../376-node-stream-iterate_1.2.0-4_all.deb ...
Unpacking node-stream-iterate (1.2.0-4) ...
Selecting previously unselected package node-strict-uri-encode.
Preparing to unpack .../377-node-strict-uri-encode_2.0.0-1_all.deb ...
Unpacking node-strict-uri-encode (2.0.0-1) ...
Selecting previously unselected package node-text-table.
Preparing to unpack .../378-node-text-table_0.2.0-2_all.deb ...
Unpacking node-text-table (0.2.0-2) ...
Selecting previously unselected package node-tough-cookie.
Preparing to unpack .../379-node-tough-cookie_3.0.0-1_all.deb ...
Unpacking node-tough-cookie (3.0.0-1) ...
Selecting previously unselected package node-uid-number.
Preparing to unpack .../380-node-uid-number_0.0.6-1ubuntu0.20.04.1_all.deb ...
Unpacking node-uid-number (0.0.6-1ubuntu0.20.04.1) ...
Selecting previously unselected package node-unpipe.
Preparing to unpack .../381-node-unpipe_1.0.0-1_all.deb ...
Unpacking node-unpipe (1.0.0-1) ...
Selecting previously unselected package node-uuid.
Preparing to unpack .../382-node-uuid_3.3.2-2_all.deb ...
Unpacking node-uuid (3.3.2-2) ...
Selecting previously unselected package node-validate-npm-package-license.
Preparing to unpack .../383-node-validate-npm-package-license_3.0.4-1_all.deb ...
Unpacking node-validate-npm-package-license (3.0.4-1) ...
Selecting previously unselected package node-xtend.
Preparing to unpack .../384-node-xtend_4.0.2-1_all.deb ...
Unpacking node-xtend (4.0.2-1) ...
Selecting previously unselected package nodejs-doc.
Preparing to unpack .../385-nodejs-doc_10.19.0~dfsg-3ubuntu1.6_all.deb ...
Unpacking nodejs-doc (10.19.0~dfsg-3ubuntu1.6) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../386-libglvnd0_1.3.2-1~ubuntu0.20.04.2_amd64.deb ...
Unpacking libglvnd0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../387-libglx0_1.3.2-1~ubuntu0.20.04.2_amd64.deb ...
Unpacking libglx0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../388-libgl1_1.3.2-1~ubuntu0.20.04.2_amd64.deb ...
Unpacking libgl1:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Selecting previously unselected package x11-utils.
Preparing to unpack .../389-x11-utils_7.7+5_amd64.deb ...
Unpacking x11-utils (7.7+5) ...
Selecting previously unselected package x11-xserver-utils.
Preparing to unpack .../390-x11-xserver-utils_7.7+8_amd64.deb ...
Unpacking x11-xserver-utils (7.7+8) ...
Selecting previously unselected package libauthen-sasl-perl.
Preparing to unpack .../391-libauthen-sasl-perl_2.1600-1_all.deb ...
Unpacking libauthen-sasl-perl (2.1600-1) ...
Selecting previously unselected package node-abbrev.
Preparing to unpack .../392-node-abbrev_1.1.1-2_all.deb ...
Unpacking node-abbrev (1.1.1-2) ...
Selecting previously unselected package node-ansi.
Preparing to unpack .../393-node-ansi_0.3.1-1_all.deb ...
Unpacking node-ansi (0.3.1-1) ...
Selecting previously unselected package node-archy.
Preparing to unpack .../394-node-archy_1.0.0-3_all.deb ...
Unpacking node-archy (1.0.0-3) ...
Selecting previously unselected package node-bl.
Preparing to unpack .../395-node-bl_4.0.0-2_all.deb ...
Unpacking node-bl (4.0.0-2) ...
Selecting previously unselected package node-delayed-stream.
Preparing to unpack .../396-node-delayed-stream_1.0.0-4_all.deb ...
Unpacking node-delayed-stream (1.0.0-4) ...
Selecting previously unselected package node-combined-stream.
Preparing to unpack .../397-node-combined-stream_1.0.8-1_all.deb ...
Unpacking node-combined-stream (1.0.8-1) ...
Selecting previously unselected package node-debug.
Preparing to unpack .../398-node-debug_4.1.1-2_all.deb ...
Unpacking node-debug (4.1.1-2) ...
Selecting previously unselected package node-encoding.
Preparing to unpack .../399-node-encoding_0.1.12-3_all.deb ...
Unpacking node-encoding (0.1.12-3) ...
Selecting previously unselected package node-prr.
Preparing to unpack .../400-node-prr_1.0.1-1_all.deb ...
Unpacking node-prr (1.0.1-1) ...
Selecting previously unselected package node-errno.
Preparing to unpack .../401-node-errno_0.1.7-1_all.deb ...
Unpacking node-errno (0.1.7-1) ...
Selecting previously unselected package node-extend.
Preparing to unpack .../402-node-extend_3.0.2-1_all.deb ...
Unpacking node-extend (3.0.2-1) ...
Selecting previously unselected package node-forever-agent.
Preparing to unpack .../403-node-forever-agent_0.6.1-2_all.deb ...
Unpacking node-forever-agent (0.6.1-2) ...
Selecting previously unselected package node-mime.
Preparing to unpack .../404-node-mime_2.4.4+dfsg-1_all.deb ...
Unpacking node-mime (2.4.4+dfsg-1) ...
Selecting previously unselected package node-mime-types.
Preparing to unpack .../405-node-mime-types_2.1.25-1_all.deb ...
Unpacking node-mime-types (2.1.25-1) ...
Selecting previously unselected package node-form-data.
Preparing to unpack .../406-node-form-data_3.0.0-2_all.deb ...
Unpacking node-form-data (3.0.0-2) ...
Selecting previously unselected package node-nopt.
Preparing to unpack .../407-node-nopt_3.0.6-4_all.deb ...
Unpacking node-nopt (3.0.6-4) ...
Selecting previously unselected package node-npmlog.
Preparing to unpack .../408-node-npmlog_4.1.2-2_all.deb ...
Unpacking node-npmlog (4.1.2-2) ...
Selecting previously unselected package node-json-stringify-safe.
Preparing to unpack .../409-node-json-stringify-safe_5.0.1+repack-2_all.deb ...
Unpacking node-json-stringify-safe (5.0.1+repack-2) ...
Selecting previously unselected package node-oauth-sign.
Preparing to unpack .../410-node-oauth-sign_0.9.0-2_all.deb ...
Unpacking node-oauth-sign (0.9.0-2) ...
Selecting previously unselected package node-qs.
Preparing to unpack .../411-node-qs_6.9.1+ds-1_all.deb ...
Unpacking node-qs (6.9.1+ds-1) ...
Selecting previously unselected package node-tunnel-agent.
Preparing to unpack .../412-node-tunnel-agent_0.6.1-2_all.deb ...
Unpacking node-tunnel-agent (0.6.1-2) ...
Selecting previously unselected package node-request.
Preparing to unpack .../413-node-request_2.88.1-4_all.deb ...
Unpacking node-request (2.88.1-4) ...
Selecting previously unselected package node-tar.
Preparing to unpack .../414-node-tar_4.4.10+ds1-2ubuntu1_all.deb ...
Unpacking node-tar (4.4.10+ds1-2ubuntu1) ...
Selecting previously unselected package node-gyp.
Preparing to unpack .../415-node-gyp_6.1.0-3_all.deb ...
Unpacking node-gyp (6.1.0-3) ...
Selecting previously unselected package node-lockfile.
Preparing to unpack .../416-node-lockfile_1.0.4-3_all.deb ...
Unpacking node-lockfile (1.0.4-3) ...
Selecting previously unselected package node-resolve.
Preparing to unpack .../417-node-resolve_1.15.1-3_all.deb ...
Unpacking node-resolve (1.15.1-3) ...
Selecting previously unselected package node-normalize-package-data.
Preparing to unpack .../418-node-normalize-package-data_2.5.0-1_all.deb ...
Unpacking node-normalize-package-data (2.5.0-1) ...
Selecting previously unselected package node-os-tmpdir.
Preparing to unpack .../419-node-os-tmpdir_1.0.2-1_all.deb ...
Unpacking node-os-tmpdir (1.0.2-1) ...
Selecting previously unselected package node-read-package-json.
Preparing to unpack .../420-node-read-package-json_2.1.1-1_all.deb ...
Unpacking node-read-package-json (2.1.1-1) ...
Selecting previously unselected package node-sha.
Preparing to unpack .../421-node-sha_3.0.0-1_all.deb ...
Unpacking node-sha (3.0.0-1) ...
Selecting previously unselected package node-slide.
Preparing to unpack .../422-node-slide_1.1.6-2_all.deb ...
Unpacking node-slide (1.1.6-2) ...
Selecting previously unselected package npm.
Preparing to unpack .../423-npm_6.14.4+ds-1ubuntu2_all.deb ...
Unpacking npm (6.14.4+ds-1ubuntu2) ...
Setting up javascript-common (11) ...
apache2_invoke: Enable configuration javascript-common
apache2.service is not active, cannot reload.
invoke-rc.d: initscript apache2, action "reload" failed.
Setting up libuv1-dev:amd64 (1.34.2-1ubuntu1.5) ...
Setting up libxcb-dri3-0:amd64 (1.14-2) ...
Setting up manpages-dev (5.05-1) ...
Setting up libx11-xcb1:amd64 (2:1.6.9-2ubuntu1.6) ...
Setting up libpciaccess0:amd64 (0.16-0ubuntu1) ...
Setting up libdrm-nouveau2:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Setting up libtie-ixhash-perl (1.23-2) ...
Setting up libxcb-xfixes0:amd64 (1.14-2) ...
Setting up libjs-inherits (2.0.4-1) ...
Setting up libxi6:amd64 (2:1.7.10-0ubuntu1) ...
Setting up libfont-afm-perl (1.20-2) ...
Setting up libxrender1:amd64 (1:0.9.10-1) ...
Setting up libfile-fcntllock-perl (0.22-3build4) ...
Setting up libalgorithm-diff-perl (1.19.03-2) ...
Setting up libdrm-radeon1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Setting up libglvnd0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Setting up libio-stringy-perl (2.111-3) ...
Setting up libhtml-tagset-perl (3.20-4) ...
Setting up libauthen-sasl-perl (2.1600-1) ...
Setting up libxcb-glx0:amd64 (1.14-2) ...
Setting up libdrm-intel1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Setting up liblwp-mediatypes-perl (6.04-1) ...
Setting up libxcb-shape0:amd64 (1.14-2) ...
Setting up binutils-common:amd64 (2.34-6ubuntu1.9) ...
Setting up x11-common (1:7.7+19ubuntu14) ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Setting up libtry-tiny-perl (0.30-1) ...
Setting up libsensors-config (1:3.6.0-2ubuntu1.1) ...
Setting up libxxf86dga1:amd64 (2:1.1.5-0ubuntu1) ...
Setting up perl-openssl-defaults:amd64 (4) ...
Setting up linux-libc-dev:amd64 (5.4.0-177.197) ...
Setting up libctf-nobfd0:amd64 (2.34-6ubuntu1.9) ...
Setting up libencode-locale-perl (1.05-1) ...
Setting up libxcb-shm0:amd64 (1.14-2) ...
Setting up libc-ares2:amd64 (1.15.0-1ubuntu0.5) ...
Setting up libgomp1:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libfakeroot:amd64 (1.24-1) ...
Setting up libxxf86vm1:amd64 (1:1.1.4-1build1) ...
Setting up libpython2.7-stdlib:amd64 (2.7.18-1~20.04.4) ...
Setting up fakeroot (1.24-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libxcb-present0:amd64 (1.14-2) ...
Setting up libjs-psl (1.7.0+ds-1) ...
Setting up libfontenc1:amd64 (1:1.1.4-0ubuntu1) ...
Setting up libdata-dump-perl (1.23-1) ...
Setting up make (4.2.1-1.2) ...
Setting up libxfixes3:amd64 (1:5.0.3-2) ...
Setting up libxcb-sync1:amd64 (1.14-2) ...
Setting up libipc-system-simple-perl (1.26-1) ...
Setting up libxml-xpathengine-perl (0.14-1) ...
Setting up libllvm12:amd64 (1:12.0.0-3ubuntu1~20.04.5) ...
Setting up libquadmath0:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libxinerama1:amd64 (2:1.1.4-2) ...
Setting up libxv1:amd64 (2:1.0.11-1) ...
Setting up libssl-dev:amd64 (1.1.1f-1ubuntu2.22) ...
Setting up libnode64:amd64 (10.19.0~dfsg-3ubuntu1.6) ...
Setting up libmpc3:amd64 (1.1.0-1) ...
Setting up libatomic1:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libio-html-perl (1.001-1) ...
Setting up libxrandr2:amd64 (2:1.5.2-0ubuntu1) ...
Setting up libsensors5:amd64 (1:3.6.0-2ubuntu1.1) ...
Setting up libglapi-mesa:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Setting up libdpkg-perl (1.19.7ubuntu3.2) ...
Setting up libvulkan1:amd64 (1.2.131.2-1) ...
Setting up nodejs-doc (10.19.0~dfsg-3ubuntu1.6) ...
Setting up libtimedate-perl (2.3200-1) ...
Setting up libubsan1:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libxcb-dri2-0:amd64 (1.14-2) ...
Setting up libxshmfence1:amd64 (1.3-1) ...
Setting up libcrypt-dev:amd64 (1:4.4.10-10ubuntu4) ...
Setting up libxcb-randr0:amd64 (1.14-2) ...
Setting up libisl22:amd64 (0.22.1-1) ...
Setting up libxkbfile1:amd64 (1:1.1.0-1) ...
Setting up libbinutils:amd64 (2.34-6ubuntu1.9) ...
Setting up libc-dev-bin (2.31-0ubuntu9.15) ...
Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
Setting up libalgorithm-diff-xs-perl (0.04-6) ...
Setting up xdg-utils (1.1.3-2ubuntu1.20.04.2) ...
Setting up libcc1-0:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up liburi-perl (1.76-2) ...
Setting up libx11-protocol-perl (0.56-7) ...
Setting up liblsan0:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libitm1:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up gcc-9-base:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Setting up libjs-is-typedarray (1.0.0-2) ...
Setting up libdrm-amdgpu1:amd64 (2.4.107-8ubuntu1~20.04.2) ...
Setting up libtsan0:amd64 (10.5.0-1ubuntu1~20.04) ...
Setting up libwayland-client0:amd64 (1.18.0-1ubuntu0.1) ...
Setting up libctf0:amd64 (2.34-6ubuntu1.9) ...
Setting up libnet-ssleay-perl (1.88-2ubuntu1) ...
Setting up mesa-vulkan-drivers:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Setting up libice6:amd64 (2:1.0.10-0ubuntu1) ...
Setting up libhttp-date-perl (6.05-1) ...
Setting up libxft2:amd64 (2.3.3-0ubuntu1) ...
Setting up libfile-basedir-perl (0.08-1) ...
Setting up libfile-listing-perl (6.04-1) ...
Setting up python2.7 (2.7.18-1~20.04.4) ...
Setting up libnode-dev:amd64 (10.19.0~dfsg-3ubuntu1.6) ...
Setting up libpython2-stdlib:amd64 (2.7.17-2ubuntu4) ...
Setting up libxtst6:amd64 (2:1.2.3-1) ...
Setting up libxcursor1:amd64 (1:1.2.0-2) ...
Setting up libgl1-mesa-dri:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Setting up libnet-http-perl (6.19-1) ...
Setting up nodejs (10.19.0~dfsg-3ubuntu1.6) ...
update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode
Setting up node-minimist (1.2.5-1) ...
Setting up node-aws4 (1.9.0-1) ...
Setting up python2 (2.7.17-2ubuntu4) ...
Setting up node-prepend-http (2.0.0-1) ...
Setting up node-typedarray (0.0.6-1) ...
Setting up node-function-bind (1.1.1+repack-1) ...
Setting up node-clone (2.1.2-1) ...
Setting up node-iferr (1.0.2-1) ...
Setting up node-chownr (1.1.3-3) ...
Setting up node-has-flag (4.0.0-1) ...
Setting up node-os-tmpdir (1.0.2-1) ...
Setting up node-lodash-packages (4.17.15+dfsg-2) ...
Setting up node-json-schema-traverse (0.3.1-1) ...
Setting up node-asap (2.0.6-2) ...
Setting up node-mime (2.4.4+dfsg-1) ...
Setting up node-inherits (2.0.4-1) ...
Setting up node-builtin-modules (3.1.0-1) ...
Setting up node-path-is-absolute (2.0.0-1) ...
Setting up libasan5:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Setting up node-ini (1.3.5-1) ...
Setting up node-iconv-lite (0.4.23-1) ...
Setting up node-is-npm (1.0.0-1) ...
Setting up node-safe-buffer (5.2.0-1) ...
Setting up node-promise-inflight (1.0.1-1) ...
Setting up node-json-stringify-safe (5.0.1+repack-2) ...
Setting up node-json-parse-better-errors (1.0.2-2) ...
Setting up node-strict-uri-encode (2.0.0-1) ...
Setting up node-y18n (4.0.0-2) ...
Setting up node-detect-newline (2.1.0-1) ...
Setting up node-fast-deep-equal (1.1.0-1) ...
Setting up node-shebang-regex (2.0.0-1) ...
Setting up node-har-schema (2.0.0-3) ...
Setting up node-mime-types (2.1.25-1) ...
Setting up node-performance-now (2.1.0+debian-1) ...
Setting up node-err-code (2.0.0+dfsg-1) ...
Setting up node-resolve-from (4.0.0-1) ...
Setting up node-balanced-match (1.0.0-1) ...
Setting up node-ansi (0.3.1-1) ...
Setting up node-is-object (1.0.1-1) ...
Setting up node-is-stream (1.1.0-1) ...
Setting up node-spdx-exceptions (2.2.0-1) ...
Setting up node-deep-extend (0.6.0-1) ...
Setting up node-p-finally (1.0.0-2) ...
Setting up node-set-blocking (2.0.0-1) ...
Setting up node-prr (1.0.1-1) ...
Setting up node-tunnel-agent (0.6.1-2) ...
Setting up node-npm-bundled (1.1.1-1) ...
Setting up node-uid-number (0.0.6-1ubuntu0.20.04.1) ...
Setting up node-signal-exit (3.0.2-1) ...
Setting up node-cyclist (1.0.1-2) ...
Setting up node-wrappy (1.0.2-1) ...
Setting up node-text-table (0.2.0-2) ...
Setting up libfile-desktopentry-perl (0.22-1) ...
Setting up node-asynckit (0.4.0-3) ...
Setting up node-proto-list (1.2.4-1) ...
Setting up node-require-directory (2.1.1-1) ...
Setting up node-ip (1.1.5-5) ...
Setting up node-punycode (2.1.1-3) ...
Setting up node-concat-stream (1.6.2-1) ...
Setting up node-defaults (1.0.3-1) ...
Setting up node-is-typedarray (1.0.0-2) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up node-mute-stream (0.0.8-2) ...
Setting up node-mimic-response (2.1.0-1) ...
Setting up libjs-typedarray-to-buffer (3.0.3-3) ...
Setting up node-duplexer3 (0.1.4-5) ...
Setting up node-number-is-nan (2.0.0-1) ...
Setting up node-graceful-fs (4.2.3-2) ...
Setting up node-jsonify (0.0.0-1) ...
Setting up libhtml-parser-perl (3.72-5) ...
Setting up node-json-stable-stringify (1.0.1-1) ...
Setting up node-hosted-git-info (2.8.5-1) ...
Setting up node-aproba (2.0.0-1) ...
Setting up node-mimic-fn (3.0.0-1) ...
Setting up node-ip-regex (4.1.0-2) ...
Setting up cpp-9 (9.4.0-1ubuntu1~20.04.2) ...
Setting up libc6-dev:amd64 (2.31-0ubuntu9.15) ...
Setting up node-crypto-random-string (1.0.0-1) ...
Setting up node-spdx-license-ids (3.0.5-1) ...
Setting up node-string-decoder (1.2.0-2) ...
Setting up node-mkdirp (0.5.1-2) ...
Setting up node-run-queue (1.0.3-1) ...
Setting up node-call-limit (1.1.1-1) ...
Setting up node-core-util-is (1.0.2-1) ...
Setting up node-json-schema (0.2.3-1+deb10u1build0.20.04.1) ...
Setting up node-uri-js (4.2.2+dfsg-5) ...
Setting up node-cli-boxes (2.2.0-2) ...
Setting up node-opener (1.5.1-1) ...
Setting up node-archy (1.0.0-3) ...
Setting up node-caseless (0.12.0-1) ...
Setting up node-imurmurhash (0.1.4-1) ...
Setting up node-xtend (4.0.2-1) ...
Setting up node-p-timeout (1.2.0-1) ...
Setting up node-encoding (0.1.12-3) ...
Setting up node-config-chain (1.1.12-1) ...
Setting up node-read (1.0.7-2) ...
Setting up node-detect-indent (5.0.0-1) ...
Setting up libsm6:amd64 (2:1.2.3-1) ...
Setting up node-npm-run-path (2.0.2-2) ...
Setting up node-asn1 (0.2.3-2) ...
Setting up node-has-symbol-support-x (1.4.1+dfsg-1) ...
Setting up node-sorted-object (2.0.1-1) ...
Setting up node-lodash (4.17.15+dfsg-2) ...
Setting up libio-socket-ssl-perl (2.067-1) ...
Setting up node-isarray (2.0.5-1) ...
Setting up node-osenv (0.1.5-1) ...
Setting up node-is-plain-obj (1.1.0-1) ...
Setting up node-ms (2.1.1-1) ...
Setting up node-shebang-command (1.2.0-1) ...
Setting up libhttp-message-perl (6.22-1) ...
Setting up binutils-x86-64-linux-gnu (2.34-6ubuntu1.9) ...
Setting up node-lowercase-keys (2.0.0-1) ...
Setting up node-decompress-response (3.3.0-1) ...
Setting up libhtml-form-perl (6.07-1) ...
Setting up node-es6-promise (4.2.8-6) ...
Setting up node-strip-eof (1.0.0-2) ...
Setting up node-process-nextick-args (2.0.0-1) ...
Setting up node-semver (7.1.3-1) ...
Setting up node-has-unicode (2.0.1-2) ...
Setting up node-fs-write-stream-atomic (1.0.10-4) ...
Setting up node-forever-agent (0.6.1-2) ...
Setting up node-unpipe (1.0.0-1) ...
Setting up node-qs (6.9.1+ds-1) ...
Setting up node-slide (1.1.6-2) ...
Setting up node-delayed-stream (1.0.0-4) ...
Setting up node-isstream (0.1.2+dfsg-1) ...
Setting up node-builtins (1.0.3-1) ...
Setting up node-stream-shift (1.0.0-1) ...
Setting up node-colors (1.4.0-1) ...
Setting up node-fs.realpath (1.0.0-1) ...
Setting up libfile-mimeinfo-perl (0.29-1) ...
Setting up node-oauth-sign (0.9.0-2) ...
Setting up node-url-to-options (1.0.1-1) ...
Setting up node-jsbn (1.1.0-1) ...
Setting up libhttp-negotiate-perl (6.01-1) ...
Setting up node-object-assign (4.1.1-3) ...
Setting up node-extsprintf (1.3.0-1) ...
Setting up node-abbrev (1.1.1-2) ...
Setting up node-mem (1.1.0-1) ...
Setting up node-path-is-inside (1.0.2-1) ...
Setting up libglx-mesa0:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...
Setting up node-supports-color (6.1.0-2) ...
Setting up node-invert-kv (1.0.0-1) ...
Setting up node-pify (3.0.0-1) ...
Setting up node-p-limit (2.2.2-1) ...
Setting up node-yallist (4.0.0-1) ...
Setting up node-define-properties (1.1.3-1) ...
Setting up node-p-cancelable (0.3.0-1) ...
Setting up node-ansi-regex (5.0.0-1) ...
Setting up node-p-is-promise (3.0.0-1) ...
Setting up node-timed-out (4.0.1-5) ...
Setting up node-strip-json-comments (3.0.1-3) ...
Setting up libglx0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Setting up node-once (1.4.0-3) ...
Setting up node-psl (1.7.0+ds-1) ...
Setting up node-slash (3.0.0-1) ...
Setting up node-util-deprecate (1.0.2-1) ...
Setting up node-editor (1.0.0-1) ...
Setting up libhttp-cookies-perl (6.08-1) ...
Setting up node-retry (0.12.0-1) ...
Setting up node-get-caller-file (1.0.2-1) ...
Setting up node-sha (3.0.0-1) ...
Setting up node-require-main-filename (1.0.1-1) ...
Setting up node-url-parse-lax (1.0.0-1) ...
Setting up node-concat-map (0.0.1-2) ...
Setting up node-import-lazy (3.0.0.REALLY.2.1.0-1) ...
Setting up node-is-retry-allowed (1.1.0-1) ...
Setting up python-pkg-resources (44.0.0-2ubuntu0.1) ...
Setting up node-assert-plus (1.0.0-2) ...
Setting up node-ansistyles (0.1.3-2) ...
Setting up node-delegates (1.0.0-1) ...
Setting up libhtml-tree-perl (5.07-2) ...
Setting up node-xdg-basedir (3.0.0-1) ...
Setting up node-co (4.6.0-1) ...
Setting up node-isexe (2.0.0-4) ...
Setting up node-is-obj (1.0.1-2) ...
Setting up node-resolve (1.15.1-3) ...
Setting up node-jsonparse (1.3.1-7) ...
Setting up node-ajv (6.10.2-1) ...
Setting up node-path-exists (4.0.0-2) ...
Setting up node-qw (1.0.1-1) ...
Setting up node-tweetnacl (1.0.1+dfsg-2) ...
Setting up node-escape-string-regexp (1.0.5-1) ...
Setting up node-through (2.3.8-1) ...
Setting up node-genfun (5.0.0-1) ...
Setting up node-errno (0.1.7-1) ...
Setting up node-p-locate (2.0.0-1) ...
Setting up node-which-module (2.0.0-1) ...
Setting up node-decamelize (1.2.0-1) ...
Setting up node-ci-info (2.0.0-1) ...
Setting up node-aws-sign2 (0.7.1-2) ...
Setting up node-pseudomap (1.0.2-1) ...
Setting up node-color-name (1.1.3-1) ...
Setting up node-semver-diff (2.1.0-2) ...
Setting up node-bluebird (3.5.1+dfsg2-2build1) ...
Setting up node-unique-string (1.0.0-1) ...
Setting up node-console-control-strings (1.1.0-1) ...
Setting up libhtml-format-perl (2.12-1) ...
Setting up node-debug (4.1.1-2) ...
Setting up node-camelcase (5.3.1-1) ...
Setting up binutils (2.34-6ubuntu1.9) ...
Setting up node-uuid (3.3.2-2) ...
Setting up node-from2 (2.3.0-1) ...
Setting up node-extend (3.0.2-1) ...
Setting up node-jsonstream (1.3.5-1) ...
Setting up node-lazy-property (1.0.0-3) ...
Setting up node-yargs-parser (18.1.1-1) ...
Setting up node-dashdash (1.14.1-2) ...
Setting up dpkg-dev (1.19.7ubuntu3.2) ...
Setting up node-make-dir (3.0.2-1) ...
Setting up node-validate-npm-package-name (3.0.0-1) ...
Setting up node-promzard (0.3.0-1) ...
Setting up node-wcwidth.js (1.0.0-1) ...
Setting up libgcc-9-dev:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Setting up node-locate-path (5.0.0-2) ...
Setting up node-ecc-jsbn (0.2.0-2) ...
Setting up node-combined-stream (1.0.8-1) ...
Setting up node-unique-filename (1.1.1+ds-1) ...
Setting up libgl1:amd64 (1.3.2-1~ubuntu0.20.04.2) ...
Setting up libnet-smtp-ssl-perl (1.04-1) ...
Setting up libmailtools-perl (2.21-1) ...
Setting up node-brace-expansion (1.1.11-1) ...
Setting up node-form-data (3.0.0-2) ...
Setting up node-strip-ansi (6.0.0-2) ...
Setting up node-lockfile (1.0.4-3) ...
Setting up node-spdx-expression-parse (3.0.0-1) ...
Setting up node-parallel-transform (1.1.0-2) ...
Setting up node-which (2.0.2-1) ...
Setting up libxt6:amd64 (1:1.1.5-1) ...
Setting up node-lcid (1.0.0-1) ...
Setting up node-typedarray-to-buffer (3.0.3-3) ...
Setting up node-dot-prop (5.2.0-1) ...
Setting up node-stream-iterate (1.2.0-4) ...
Setting up node-tar (4.4.10+ds1-2ubuntu1) ...
Setting up libhttp-daemon-perl (6.06-1ubuntu0.1) ...
Setting up node-inflight (1.0.6-1) ...
Setting up cpp (4:9.3.0-1ubuntu2) ...
Setting up node-has-to-string-tag-x (1.4.1+dfsg-1) ...
Setting up node-tough-cookie (3.0.0-1) ...
Setting up node-rc (1.2.8-1) ...
Setting up node-is-path-inside (1.0.1-1) ...
Setting up node-minimatch (3.0.4-4ubuntu0.1) ...
Setting up node-npm-package-arg (6.1.1-1) ...
Setting up node-verror (1.10.0-1) ...
Setting up node-getpass (0.1.7-1) ...
Setting up node-nopt (3.0.6-4) ...
Setting up node-isurl (4.0.1-2) ...
Setting up node-color-convert (1.9.3-1) ...
Setting up node-string-width (2.1.1-1) ...
Setting up gyp (0.1+20180428git4d467626-3ubuntu1) ...
Setting up node-har-validator (5.1.3-1) ...
Setting up gcc-9 (9.4.0-1ubuntu1~20.04.2) ...
Setting up node-readable-stream (3.4.0-2) ...
Setting up node-ssri (7.1.0-2) ...
Setting up node-through2 (3.0.1-2) ...
Setting up node-lru-cache (5.1.1-5) ...
Setting up node-bcrypt-pbkdf (1.0.2-1) ...
Setting up node-promise-retry (1.1.1-4) ...
Setting up libxmu6:amd64 (2:1.1.3-0ubuntu1) ...
Setting up node-end-of-stream (1.4.4-1) ...
Setting up libstdc++-9-dev:amd64 (9.4.0-1ubuntu1~20.04.2) ...
Setting up node-pump (3.0.0-2) ...
Setting up node-write-file-atomic (3.0.3-1) ...
Setting up node-columnify (1.5.4-1) ...
Setting up node-jsprim (1.4.1-1) ...
Setting up node-flush-write-stream (2.0.0-2) ...
Setting up node-are-we-there-yet (1.1.5-1) ...
Setting up node-find-up (4.1.0-2) ...
Setting up libxaw7:amd64 (2:1.0.13-1) ...
Setting up x11-xserver-utils (7.7+8) ...
Setting up gcc (4:9.3.0-1ubuntu2) ...
Setting up node-duplexify (4.1.1-1) ...
Setting up node-spdx-correct (3.1.0-1) ...
Setting up node-cross-spawn (5.1.0-2) ...
Setting up node-ansi-styles (4.2.1-1) ...
Setting up node-glob (7.1.6-1) ...
Setting up node-get-stream (4.1.0-1) ...
Setting up node-pumpify (2.0.1-1) ...
Setting up node-widest-line (3.1.0-1) ...
Setting up node-got (7.1.0-1) ...
Setting up node-chalk (2.4.2-1) ...
Setting up g++-9 (9.4.0-1ubuntu1~20.04.2) ...
Setting up node-configstore (5.0.1-1) ...
Setting up node-registry-url (3.1.0-1) ...
Setting up node-registry-auth-token (3.3.1-1) ...
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 x11-utils (7.7+5) ...
Setting up build-essential (12.8ubuntu1.1) ...
Setting up node-wide-align (1.1.3-1) ...
Setting up node-ansi-align (3.0.0-1) ...
Setting up node-rimraf (2.6.3-1) ...
Setting up node-sshpk (1.16.1+dfsg-2) ...
Setting up node-bl (4.0.0-2) ...
Setting up node-validate-npm-package-license (3.0.4-1) ...
Setting up node-stream-each (1.2.3-1) ...
Setting up node-mississippi (3.0.0-1) ...
Setting up node-execa (0.10.0+dfsg-1) ...
Setting up node-copy-concurrently (1.0.5-4) ...
Setting up node-move-concurrently (1.0.1-2) ...
Setting up node-term-size (1.2.0+dfsg-2) ...
Setting up node-os-locale (4.0.0-1) ...
Setting up node-http-signature (1.3.2-1) ...
Setting up node-fs-vacuum (1.2.10-3) ...
Setting up node-gauge (2.7.4-1) ...
Setting up node-wrap-ansi (4.0.0-2) ...
Setting up node-normalize-package-data (2.5.0-1) ...
Setting up node-boxen (4.2.0-2) ...
Setting up node-package-json (4.0.1-1) ...
Setting up node-latest-version (3.1.0-1) ...
Setting up node-request (2.88.1-4) ...
Setting up node-npmlog (4.1.2-2) ...
Setting up node-cliui (4.1.0-2) ...
Setting up node-yargs (15.3.0-1) ...
Setting up node-cacache (11.3.3-2) ...
Setting up node-read-package-json (2.1.1-1) ...
Setting up node-gyp (6.1.0-3) ...
Setting up node-libnpx (10.2.1-2) ...
Setting up npm (6.14.4+ds-1ubuntu2) ...
Setting up libwww-perl (6.43-1) ...
Setting up liblwp-protocol-https-perl (6.07-2ubuntu2) ...
Setting up libxml-parser-perl (2.46-1) ...
Setting up libxml-twig-perl (1:3.50-2) ...
Setting up libnet-dbus-perl (1.2.0-1) ...
Processing triggers for systemd (245.4-4ubuntu3.23) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for mime-support (3.64ubuntu1) ...
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
root@miner:~# php -v
PHP 7.4.3-4ubuntu2.22 (cli) (built: May  1 2024 10:11:33) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.3-4ubuntu2.22, Copyright (c), by Zend Technologies
root@miner:~#

窗口3:启动zabbxi

root@miner:~# vi /etc/zabbix/zabbix_server.conf
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
Created symlink /etc/systemd/system/multi-user.target.wants/zabbix-server.service → /lib/systemd/system/zabbix-server.service.
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      90493/zabbix_agentd
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      90502/zabbix_server
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::10050                :::*                    LISTEN      90493/zabbix_agentd
tcp6       0      0 :::10051                :::*                    LISTEN      90502/zabbix_server
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~# ufw status
Status: inactive
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN      90493/zabbix_agentd
tcp        0      0 0.0.0.0:10051           0.0.0.0:*               LISTEN      90502/zabbix_server
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::10050                :::*                    LISTEN      90493/zabbix_agentd
tcp6       0      0 :::10051                :::*                    LISTEN      90502/zabbix_server
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
root@miner:~# service nginx stop
root@miner:~# systemctl restart zabbix-server zabbix-agent apache2
root@miner:~# systemctl enable zabbix-server zabbix-agent apache2
Synchronizing state of zabbix-server.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-server
Synchronizing state of zabbix-agent.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable zabbix-agent
Synchronizing state of apache2.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
root@miner:~# ^C
root@miner:~#

窗口4:安装mysql

login as: root
root@172.20.0.12's password:
    ┌──────────────────────────────────────────────────────────────────────┐
    │                 • MobaXterm Personal Edition v21.5 •                 │
    │               (SSH client, X server and network tools)               │
    │                                                                      │
    │ ➤ SSH session to root@172.20.0.12                                    │
    │   • Direct SSH      :  ✔                                             │
    │   • SSH compression :  ✔                                             │
    │   • SSH-browser     :  ✔                                             │
    │   • X11-forwarding  :  ✔  (remote display is forwarded through SSH)  │
    │                                                                      │
    │ ➤ For more info, ctrl+click on help or visit our website.            │
    └──────────────────────────────────────────────────────────────────────┘

Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-177-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Tue 07 May 2024 09:26:11 AM UTC

  System load:  0.0                Processes:               302
  Usage of /:   3.4% of 195.80GB   Users logged in:         2
  Memory usage: 3%                 IPv4 address for ens160: 172.20.0.12
  Swap usage:   0%


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

New release '22.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.


Last login: Tue May  7 09:21:13 2024 from 172.20.0.88
root@miner:~# apt install mysql
Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 41950 (apt)
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysql
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysql
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql
root@miner:~# apt install mysqld
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysqld
root@miner:~# service mysql restart
Failed to restart mysql.service: Unit mysql.service not found.
root@miner:~# sudo apt install mysql-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libfwupdplugin1 libxmlb1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libevent-core-2.1-7 libevent-pthreads-2.1-7 libfcgi-perl libhtml-template-perl libmecab2 mecab-ipadic mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0
  mysql-common mysql-server-8.0 mysql-server-core-8.0
Suggested packages:
  libipc-sharedcache-perl mailx tinyca
The following NEW packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libevent-core-2.1-7 libevent-pthreads-2.1-7 libfcgi-perl libhtml-template-perl libmecab2 mecab-ipadic mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0
  mysql-common mysql-server mysql-server-8.0 mysql-server-core-8.0
0 upgraded, 16 newly installed, 0 to remove and 7 not upgraded.
Need to get 36.4 MB of archives.
After this operation, 317 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mysql-common all 5.8+1.0.5ubuntu2 [7,496 B]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-client-core-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [5,084 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-client-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [22.0 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libevent-core-2.1-7 amd64 2.1.11-stable-1 [89.1 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libevent-pthreads-2.1-7 amd64 2.1.11-stable-1 [7,372 B]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libmecab2 amd64 0.996-10build1 [233 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server-core-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [22.7 MB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server-8.0 amd64 8.0.36-0ubuntu0.20.04.1 [1,326 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libcgi-pm-perl all 4.46-1 [186 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libfcgi-perl amd64 0.79-1 [33.1 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libcgi-fast-perl all 1:2.15-1 [10.5 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 libhtml-template-perl all 2.97-1 [59.0 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-utils amd64 0.996-10build1 [4,912 B]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-ipadic all 2.7.0-20070801+main-2.1 [6,714 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal/main amd64 mecab-ipadic-utf8 all 2.7.0-20070801+main-2.1 [4,380 B]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 mysql-server all 8.0.36-0ubuntu0.20.04.1 [9,484 B]
Fetched 36.4 MB in 8min 26s (71.9 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mysql-common.
(Reading database ... 88175 files and directories currently installed.)
Preparing to unpack .../0-mysql-common_5.8+1.0.5ubuntu2_all.deb ...
Unpacking mysql-common (5.8+1.0.5ubuntu2) ...
Selecting previously unselected package mysql-client-core-8.0.
Preparing to unpack .../1-mysql-client-core-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-client-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package mysql-client-8.0.
Preparing to unpack .../2-mysql-client-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-client-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package libevent-core-2.1-7:amd64.
Preparing to unpack .../3-libevent-core-2.1-7_2.1.11-stable-1_amd64.deb ...
Unpacking libevent-core-2.1-7:amd64 (2.1.11-stable-1) ...
Selecting previously unselected package libevent-pthreads-2.1-7:amd64.
Preparing to unpack .../4-libevent-pthreads-2.1-7_2.1.11-stable-1_amd64.deb ...
Unpacking libevent-pthreads-2.1-7:amd64 (2.1.11-stable-1) ...
Selecting previously unselected package libmecab2:amd64.
Preparing to unpack .../5-libmecab2_0.996-10build1_amd64.deb ...
Unpacking libmecab2:amd64 (0.996-10build1) ...
Selecting previously unselected package mysql-server-core-8.0.
Preparing to unpack .../6-mysql-server-core-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-server-core-8.0 (8.0.36-0ubuntu0.20.04.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
Selecting previously unselected package mysql-server-8.0.
(Reading database ... 88391 files and directories currently installed.)
Preparing to unpack .../0-mysql-server-8.0_8.0.36-0ubuntu0.20.04.1_amd64.deb ...
Unpacking mysql-server-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Selecting previously unselected package libcgi-pm-perl.
Preparing to unpack .../1-libcgi-pm-perl_4.46-1_all.deb ...
Unpacking libcgi-pm-perl (4.46-1) ...
Selecting previously unselected package libfcgi-perl.
Preparing to unpack .../2-libfcgi-perl_0.79-1_amd64.deb ...
Unpacking libfcgi-perl (0.79-1) ...
Selecting previously unselected package libcgi-fast-perl.
Preparing to unpack .../3-libcgi-fast-perl_1%3a2.15-1_all.deb ...
Unpacking libcgi-fast-perl (1:2.15-1) ...
Selecting previously unselected package libhtml-template-perl.
Preparing to unpack .../4-libhtml-template-perl_2.97-1_all.deb ...
Unpacking libhtml-template-perl (2.97-1) ...
Selecting previously unselected package mecab-utils.
Preparing to unpack .../5-mecab-utils_0.996-10build1_amd64.deb ...
Unpacking mecab-utils (0.996-10build1) ...
Selecting previously unselected package mecab-ipadic.
Preparing to unpack .../6-mecab-ipadic_2.7.0-20070801+main-2.1_all.deb ...
Unpacking mecab-ipadic (2.7.0-20070801+main-2.1) ...
Selecting previously unselected package mecab-ipadic-utf8.
Preparing to unpack .../7-mecab-ipadic-utf8_2.7.0-20070801+main-2.1_all.deb ...
Unpacking mecab-ipadic-utf8 (2.7.0-20070801+main-2.1) ...
Selecting previously unselected package mysql-server.
Preparing to unpack .../8-mysql-server_8.0.36-0ubuntu0.20.04.1_all.deb ...
Unpacking mysql-server (8.0.36-0ubuntu0.20.04.1) ...
Setting up libmecab2:amd64 (0.996-10build1) ...
Setting up mysql-client-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up libcgi-pm-perl (4.46-1) ...
Setting up libhtml-template-perl (2.97-1) ...
Setting up mecab-utils (0.996-10build1) ...
Setting up libevent-core-2.1-7:amd64 (2.1.11-stable-1) ...
Setting up mysql-client-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up libfcgi-perl (0.79-1) ...
Setting up libevent-pthreads-2.1-7:amd64 (2.1.11-stable-1) ...
Setting up mecab-ipadic (2.7.0-20070801+main-2.1) ...
Compiling IPA dictionary for Mecab.  This takes long time...
reading /usr/share/mecab/dic/ipadic/unk.def ... 40
emitting double-array: 100% |###########################################|
/usr/share/mecab/dic/ipadic/model.def is not found. skipped.
reading /usr/share/mecab/dic/ipadic/Adj.csv ... 27210
reading /usr/share/mecab/dic/ipadic/Adnominal.csv ... 135
reading /usr/share/mecab/dic/ipadic/Interjection.csv ... 252
reading /usr/share/mecab/dic/ipadic/Noun.org.csv ... 16668
reading /usr/share/mecab/dic/ipadic/Noun.number.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.proper.csv ... 27328
reading /usr/share/mecab/dic/ipadic/Noun.adverbal.csv ... 795
reading /usr/share/mecab/dic/ipadic/Auxil.csv ... 199
reading /usr/share/mecab/dic/ipadic/Postp.csv ... 146
reading /usr/share/mecab/dic/ipadic/Noun.verbal.csv ... 12146
reading /usr/share/mecab/dic/ipadic/Filler.csv ... 19
reading /usr/share/mecab/dic/ipadic/Suffix.csv ... 1393
reading /usr/share/mecab/dic/ipadic/Postp-col.csv ... 91
reading /usr/share/mecab/dic/ipadic/Others.csv ... 2
reading /usr/share/mecab/dic/ipadic/Adverb.csv ... 3032
reading /usr/share/mecab/dic/ipadic/Prefix.csv ... 221
reading /usr/share/mecab/dic/ipadic/Noun.name.csv ... 34202
reading /usr/share/mecab/dic/ipadic/Symbol.csv ... 208
reading /usr/share/mecab/dic/ipadic/Conjunction.csv ... 171
reading /usr/share/mecab/dic/ipadic/Verb.csv ... 130750
reading /usr/share/mecab/dic/ipadic/Noun.adjv.csv ... 3328
reading /usr/share/mecab/dic/ipadic/Noun.demonst.csv ... 120
reading /usr/share/mecab/dic/ipadic/Noun.csv ... 60477
reading /usr/share/mecab/dic/ipadic/Noun.nai.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.others.csv ... 151
reading /usr/share/mecab/dic/ipadic/Noun.place.csv ... 72999
emitting double-array: 100% |###########################################|
reading /usr/share/mecab/dic/ipadic/matrix.def ... 1316x1316
emitting matrix      : 100% |###########################################|

done!
update-alternatives: using /var/lib/mecab/dic/ipadic to provide /var/lib/mecab/dic/debian (mecab-dictionary) in auto mode
Setting up libcgi-fast-perl (1:2.15-1) ...
Setting up mysql-server-core-8.0 (8.0.36-0ubuntu0.20.04.1) ...
Setting up mecab-ipadic-utf8 (2.7.0-20070801+main-2.1) ...
Compiling IPA dictionary for Mecab.  This takes long time...
reading /usr/share/mecab/dic/ipadic/unk.def ... 40
emitting double-array: 100% |###########################################|
/usr/share/mecab/dic/ipadic/model.def is not found. skipped.
reading /usr/share/mecab/dic/ipadic/Adj.csv ... 27210
reading /usr/share/mecab/dic/ipadic/Adnominal.csv ... 135
reading /usr/share/mecab/dic/ipadic/Interjection.csv ... 252
reading /usr/share/mecab/dic/ipadic/Noun.org.csv ... 16668
reading /usr/share/mecab/dic/ipadic/Noun.number.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.proper.csv ... 27328
reading /usr/share/mecab/dic/ipadic/Noun.adverbal.csv ... 795
reading /usr/share/mecab/dic/ipadic/Auxil.csv ... 199
reading /usr/share/mecab/dic/ipadic/Postp.csv ... 146
reading /usr/share/mecab/dic/ipadic/Noun.verbal.csv ... 12146
reading /usr/share/mecab/dic/ipadic/Filler.csv ... 19
reading /usr/share/mecab/dic/ipadic/Suffix.csv ... 1393
reading /usr/share/mecab/dic/ipadic/Postp-col.csv ... 91
reading /usr/share/mecab/dic/ipadic/Others.csv ... 2
reading /usr/share/mecab/dic/ipadic/Adverb.csv ... 3032
reading /usr/share/mecab/dic/ipadic/Prefix.csv ... 221
reading /usr/share/mecab/dic/ipadic/Noun.name.csv ... 34202
reading /usr/share/mecab/dic/ipadic/Symbol.csv ... 208
reading /usr/share/mecab/dic/ipadic/Conjunction.csv ... 171
reading /usr/share/mecab/dic/ipadic/Verb.csv ... 130750
reading /usr/share/mecab/dic/ipadic/Noun.adjv.csv ... 3328
reading /usr/share/mecab/dic/ipadic/Noun.demonst.csv ... 120
reading /usr/share/mecab/dic/ipadic/Noun.csv ... 60477
reading /usr/share/mecab/dic/ipadic/Noun.nai.csv ... 42
reading /usr/share/mecab/dic/ipadic/Noun.others.csv ... 151
reading /usr/share/mecab/dic/ipadic/Noun.place.csv ... 72999
emitting double-array: 100% |###########################################|
reading /usr/share/mecab/dic/ipadic/matrix.def ... 1316x1316
emitting matrix      : 100% |###########################################|

done!
update-alternatives: using /var/lib/mecab/dic/ipadic-utf8 to provide /var/lib/mecab/dic/debian (mecab-dictionary) in auto mode
Setting up mysql-server-8.0 (8.0.36-0ubuntu0.20.04.1) ...
update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Renaming removed key_buffer and myisam-recover options (if present)
mysqld will log errors to /var/log/mysql/error.log
mysqld is running as pid 83792
Created symlink /etc/systemd/system/multi-user.target.wants/mysql.service → /lib/systemd/system/mysql.service.
Setting up mysql-server (8.0.36-0ubuntu0.20.04.1) ...
Processing triggers for systemd (245.4-4ubuntu3.23) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for libc-bin (2.31-0ubuntu9.15) ...
root@miner:~# service mysql restart
root@miner:~# netstat -tlnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      20922/sshd: miner@p
tcp        0      0 127.0.0.1:6011          0.0.0.0:*               LISTEN      40957/sshd: root@pt
tcp        0      0 127.0.0.1:6012          0.0.0.0:*               LISTEN      42046/sshd: root@pt
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      84963/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26520/nginx: master
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      7948/systemd-resolv
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      21301/sshd: /usr/sb
tcp6       0      0 ::1:6010                :::*                    LISTEN      20922/sshd: miner@p
tcp6       0      0 ::1:6011                :::*                    LISTEN      40957/sshd: root@pt
tcp6       0      0 ::1:6012                :::*                    LISTEN      42046/sshd: root@pt
tcp6       0      0 :::9100                 :::*                    LISTEN      40691/node_exporter
tcp6       0      0 :::80                   :::*                    LISTEN      26520/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      21301/sshd: /usr/sb
root@miner:~# ^C
root@miner:~#

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jekc868

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值