20240703在Ubuntu22.04上配置RK3588的Android12的编译环境

20240703在Ubuntu22.04上配置RK3588的Android12的编译环境
2024/7/3 14:31


缘起:在飞凌的OK3588-C开发板使用最新的Buildroot,挂载飞凌原配的OV5645+OV13850各种错误。
并且在调试过程中发现,飞凌的u-boot闭源,据说是因为u-boot中有加密IC芯片!
各种坑/隐患。不想将来有惊喜,使用飞凌的OK3588-C核心板就得现在先做好Rockchip原厂的Buildroot这份SDK的适配。

飞凌Linux R4的:
viewpro@viewpro-ThinkBook-16-G5-IRH:~/versions/fpga_OK3588_Linux_fs/kernel$ cat .config
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.10.66 Kernel Configuration
#


rk3588-linux-20220811.tar.gz
Z:\SDK\kernel\.config

sdk
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.10.66 Kernel Configuration
#

【直觉/根据小版本比对:飞凌的SDK:Linux R4是基于Rockchip原厂的2年前的SDK魔改的!】
【加入了QT,当然也加入了各种私货!】


RK3588_V1.43.tar.gz
Z:\RK3588\kernel\.config
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.10.160 Kernel Configuration


Z:\repo_RK3588_Buildroot20240508\kernel\.config
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.10.198 Kernel Configuration


由于拿到了一份RK3588的Buildroot完全没有dl,因此需要使用技术手段下载!
rk3588-linux-20220811.tar.gz

这些包一个一个下载太累,repo_RK3588_Buildroot20240508最新的Buildroot的中内置的dl竟然因为版本原因,Buildroot-20220811不认。
十年前的虚拟机Ubuntu14.04尝试编译Buildroot-20220811竟然报错:奇葩的问题。一般归结为Ubuntu版本太低,不做研究了!
直接虚拟机VMware17.5中上Ubuntu22.04。
【Ubuntu24.04太新了,没有信心去折腾】

rootroot@rootroot-virtual-machine:~/SDK$ 
rootroot@rootroot-virtual-machine:~/SDK$ ll *.sh
lrwxrwxrwx 1 rootroot rootroot 31  4月  8  2022 build.sh -> device/rockchip/common/build.sh*
lrwxrwxrwx 1 rootroot rootroot 27  4月  8  2022 envsetup.sh -> buildroot/build/envsetup.sh*
lrwxrwxrwx 1 rootroot rootroot 36  4月  8  2022 mkfirmware.sh -> device/rockchip/common/mkfirmware.sh*
lrwxrwxrwx 1 rootroot rootroot 33  4月  8  2022 rkflash.sh -> device/rockchip/common/rkflash.sh*
rootroot@rootroot-virtual-machine:~/SDK$ ./build.sh 
./build.sh: line 84: realpath: command not found
ERROR: Running main failed!
ERROR: exit code 127 from line 84:
    CMD=`realpath $0`
rootroot@rootroot-virtual-machine:~/SDK$ 


然后上编译环境:
根据经验,先上Rk3588的Android12的编译环境,然后直接编译Buildroot,缺啥补啥了!
一般不专门准备Buildroot的编译环境!


百度:AIO-3588Q WIKI
https://wiki.t-firefly.com/zh_CN/iCore-3588Q/android_prepare_compile_android.html
iCore-3588Q产品规格书
iCore-3588Q采用Rockchip RK3588新一代旗舰级八核64位处理器,最大可配32GB大内存;支持8K视频编解码;采用了BTB接口,传输能力更强;拥有丰富的接口,支持多硬盘、千兆网、WiFi6、5G/4G扩展和多种视频输入输出;支持多种操作系统;可适用于ARM PC、边缘计算、云服务器、智能NVR等领域

Docs ? 2. 编译环境搭建View page source


2. 编译环境搭建
2.1. 准备工作
编译 Android 对机器的配置要求较高:

64 位 CPU

16GB 物理内存+交换内存

250GB 空闲的磁盘空间

建议使用 Ubuntu 18.04 操作系统或更高版本

Ubuntu 16.04 或 18.04 软件包安装参考:

sudo apt-get update

sudo apt-get install git gnupg flex bison gperf libsdl1.2-dev \
libesd-java libwxgtk3.0-dev squashfs-tools build-essential zip curl \
libncurses5-dev zlib1g-dev pngcrush schedtool libxml2 libxml2-utils \
xsltproc lzop libc6-dev schedtool g++-multilib lib32z1-dev lib32ncurses5-dev \
lib32readline-dev gcc-multilib libswitch-perl libssl-dev unzip zip device-tree-compiler \
liblz4-tool python-pyelftools python3-pyelftools -y 
2.2. 编译FAQ
由于每个人的PC系统版本和环境配置不一样,安装软件包后编译并不一定都会成功,可能会出现缺少某些软件包而引起的错误,如:

2.2.1. Q1
 OBJCOPY spl/u-boot-spl-nodtb.bin
  CAT     spl/u-boot-spl-dtb.bin
  COPY    spl/u-boot-spl.bin
  CFGCHK  u-boot.cfg
ERROR: No 'dtc', please: apt-get install device-tree-compiler
此时视报错信息去安装缺少的软件包(dtc)即可

sudo apt-get install git
sudo apt-get install gnupg
sudo apt-get install flex
sudo apt-get install bison
sudo apt-get install gperf
sudo apt-get install libsdl1.2-dev
sudo apt-get install libesd-java
sudo apt-get install libwxgtk3.0-dev【异常了】
sudo apt-get install squashfs-tools
sudo apt-get install build-essential
sudo apt-get install zip
sudo apt-get install curl
sudo apt-get install libncurses5-dev
sudo apt-get install zlib1g-dev
sudo apt-get install pngcrush
sudo apt-get install schedtool
sudo apt-get install libxml2
sudo apt-get install libxml2-utils
sudo apt-get install xsltproc
sudo apt-get install lzop
sudo apt-get install libc6-dev
sudo apt-get install schedtool
sudo apt-get install g++-multilib
sudo apt-get install lib32z1-dev
sudo apt-get install lib32ncurses5-dev
sudo apt-get install lib32readline-dev
sudo apt-get install gcc-multilib
sudo apt-get install libswitch-perl
sudo apt-get install libssl-dev
sudo apt-get install unzip
sudo apt-get install zip
sudo apt-get install device-tree-compiler
sudo apt-get install liblz4-tool
sudo apt-get install python-pyelftools【异常了】
sudo apt-get install python3-pyelftools


有两个工具包异常了,时间的关系:不予关注了!
【暂时不影响Buildroot-20220811的编译】
sudo apt-get install libwxgtk3.0-dev
sudo apt-get install python-pyelftools


首先在虚拟机VMware17.5中安装Ubuntu22.04完成之后,限制性的操作:
sudo apt-get update
sudo apt-get upgrade

sudo apt-get install openssh-server
sudo apt-get install nethogs
sudo apt-get install net-tools

rootroot@rootroot-virtual-machine:~$ sudo apt install python2
rootroot@rootroot-virtual-machine:/usr/bin$ sudo ln -s python2 python

rootroot@rootroot-virtual-machine:~$ sudo apt install samba
rootroot@rootroot-virtual-machine:~$ sudo smbpasswd -a rootroot

rootroot@rootroot-virtual-machine:/etc/samba$ sudo cp smb.conf smb.conf.bak1
sudo echo "[rootroot]" >> smb.conf
sudo echo "comment=rootroot Shared Folder" >> smb.conf
sudo echo "path=/" >> smb.conf
sudo echo "#public=yes" >> smb.conf
sudo echo "writable=yes" >> smb.conf
sudo echo "#readonly=yes" >> smb.conf
sudo echo "valid users=rootroot" >> smb.conf
sudo echo "create mask=0700" >> smb.conf
sudo echo "directory mask=0700" >> smb.conf
sudo echo "available=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf


最详细的LOG:

[BEGIN] 2024/7/2 11:43:24
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ ll
total 76
drwxr-x--- 14 rootroot rootroot 4096  7月  2 11:38 ./
drwxr-xr-x  3 root     root     4096  7月  2  2024 ../
-rw-------  1 rootroot rootroot  307  7月  2 11:34 .bash_history
-rw-r--r--  1 rootroot rootroot  220  7月  2  2024 .bash_logout
-rw-r--r--  1 rootroot rootroot 3771  7月  2  2024 .bashrc
drwx------ 10 rootroot rootroot 4096  7月  2 11:32 .cache/
drwx------ 12 rootroot rootroot 4096  7月  2 11:32 .config/
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Desktop/
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Documents/
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Downloads/
drwx------  3 rootroot rootroot 4096  7月  2  2024 .local/
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Music/
drwxr-xr-x  3 rootroot rootroot 4096  7月  2  2024 Pictures/
-rw-r--r--  1 rootroot rootroot  807  7月  2  2024 .profile
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Public/
drwx------  4 rootroot rootroot 4096  7月  2  2024 snap/
-rw-r--r--  1 rootroot rootroot    0  7月  2  2024 .sudo_as_admin_successful
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Templates/
drwxr-xr-x  2 rootroot rootroot 4096  7月  2  2024 Videos/
-rw-------  1 rootroot rootroot   70  7月  2 11:38 .Xauthority
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ sudo apt-get install nethogs
[sudo] password for rootroot: 
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  nethogs
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 32.7 kB of archives.
After this operation, 84.0 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 nethogs amd64 0.8.6-3 [32.7 kB]
Fetched 32.7 kB in 21s (1,588 B/s)             
Selecting previously unselected package nethogs.
(Reading database ... 166058 files and directories currently installed.)
Preparing to unpack .../nethogs_0.8.6-3_amd64.deb ...
Unpacking nethogs (0.8.6-3) ...
Setting up nethogs (0.8.6-3) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ sudo apt-get install git
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  git-man liberror-perl
Suggested packages:
  git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn
The following NEW packages will be installed:
  git git-man liberror-perl
0 upgraded, 3 newly installed, 0 to remove and 8 not upgraded.
Need to get 4,146 kB of archives.
After this operation, 21.0 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 jammy/main amd64 liberror-perl all 0.17029-1 [26.5 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 git-man all 1:2.34.1-1ubuntu1.11 [955 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 git amd64 1:2.34.1-1ubuntu1.11 [3,165 kB]
Fetched 4,146 kB in 23s (177 kB/s)
Selecting previously unselected package liberror-perl.
(Reading database ... 166064 files and directories currently installed.)
Preparing to unpack .../liberror-perl_0.17029-1_all.deb ...
Unpacking liberror-perl (0.17029-1) ...
Selecting previously unselected package git-man.
Preparing to unpack .../git-man_1%3a2.34.1-1ubuntu1.11_all.deb ...
Unpacking git-man (1:2.34.1-1ubuntu1.11) ...
Selecting previously unselected package git.
Preparing to unpack .../git_1%3a2.34.1-1ubuntu1.11_amd64.deb ...
Unpacking git (1:2.34.1-1ubuntu1.11) ...
Setting up liberror-perl (0.17029-1) ...
Setting up git-man (1:2.34.1-1ubuntu1.11) ...
Setting up git (1:2.34.1-1ubuntu1.11) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install gnupg
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
gnupg is already the newest version (2.2.27-3ubuntu2.1).
gnupg set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install flex
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu gcc gcc-11 libasan6 libbinutils libc-dev-bin libc-devtools libc6-dev libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libfl-dev libfl2 libgcc-11-dev libitm1
  liblsan0 libnsl-dev libquadmath0 libsigsegv2 libtirpc-dev libtsan0 libubsan1 linux-libc-dev m4 manpages-dev rpcsvc-proto
Suggested packages:
  binutils-doc bison build-essential flex-doc gcc-multilib make autoconf automake libtool gcc-doc gcc-11-multilib gcc-11-doc gcc-11-locales glibc-doc m4-doc
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu flex gcc gcc-11 libasan6 libbinutils libc-dev-bin libc-devtools libc6-dev libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libfl-dev libfl2 libgcc-11-dev
  libitm1 liblsan0 libnsl-dev libquadmath0 libsigsegv2 libtirpc-dev libtsan0 libubsan1 linux-libc-dev m4 manpages-dev rpcsvc-proto
0 upgraded, 30 newly installed, 0 to remove and 8 not upgraded.
Need to get 39.7 MB of archives.
After this operation, 133 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 jammy/main amd64 libsigsegv2 amd64 2.13-1ubuntu3 [14.6 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 m4 amd64 1.4.18-5ubuntu2 [199 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 flex amd64 2.6.4-8build2 [307 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 binutils-common amd64 2.38-4ubuntu2.6 [222 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libbinutils amd64 2.38-4ubuntu2.6 [662 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libctf-nobfd0 amd64 2.38-4ubuntu2.6 [108 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libctf0 amd64 2.38-4ubuntu2.6 [103 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.38-4ubuntu2.6 [2,326 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 binutils amd64 2.38-4ubuntu2.6 [3,200 B]
Get:10 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB]
Get:11 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB]
Get:12 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libasan6 amd64 11.4.0-1ubuntu1~22.04 [2,282 kB]
Get:13 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1,069 kB]
Get:14 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtsan0 amd64 11.4.0-1ubuntu1~22.04 [2,260 kB]
Get:15 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB]
Get:16 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB]
Get:17 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,517 kB]
Get:18 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11 amd64 11.4.0-1ubuntu1~22.04 [20.1 MB]
Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5,112 B]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc-dev-bin amd64 2.35-0ubuntu3.8 [20.3 kB]
Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc-devtools amd64 2.35-0ubuntu3.8 [28.9 kB]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 linux-libc-dev amd64 5.15.0-113.123 [1,342 kB]
Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libcrypt-dev amd64 1:4.4.27-1 [112 kB]
Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
Get:25 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libtirpc-dev amd64 1.3.2-2ubuntu0.1 [192 kB]
Get:26 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc6-dev amd64 2.35-0ubuntu3.8 [2,100 kB]
Get:28 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libfl2 amd64 2.6.4-8build2 [10.7 kB]
Get:29 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libfl-dev amd64 2.6.4-8build2 [6,236 B]
Get:30 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 manpages-dev all 5.10-1ubuntu1 [2,309 kB]
Fetched 39.7 MB in 24s (1,653 kB/s)      
Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 167049 files and directories currently installed.)
Preparing to unpack .../00-libsigsegv2_2.13-1ubuntu3_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.13-1ubuntu3) ...
Selecting previously unselected package m4.
Preparing to unpack .../01-m4_1.4.18-5ubuntu2_amd64.deb ...
Unpacking m4 (1.4.18-5ubuntu2) ...
Selecting previously unselected package flex.
Preparing to unpack .../02-flex_2.6.4-8build2_amd64.deb ...
Unpacking flex (2.6.4-8build2) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../03-binutils-common_2.38-4ubuntu2.6_amd64.deb ...
Unpacking binutils-common:amd64 (2.38-4ubuntu2.6) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../04-libbinutils_2.38-4ubuntu2.6_amd64.deb ...
Unpacking libbinutils:amd64 (2.38-4ubuntu2.6) ...
Selecting previously unselected package libctf-nobfd0:amd64.
Preparing to unpack .../05-libctf-nobfd0_2.38-4ubuntu2.6_amd64.deb ...
Unpacking libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
Selecting previously unselected package libctf0:amd64.
Preparing to unpack .../06-libctf0_2.38-4ubuntu2.6_amd64.deb ...
Unpacking libctf0:amd64 (2.38-4ubuntu2.6) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../07-binutils-x86-64-linux-gnu_2.38-4ubuntu2.6_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
Selecting previously unselected package binutils.
Preparing to unpack .../08-binutils_2.38-4ubuntu2.6_amd64.deb ...
Unpacking binutils (2.38-4ubuntu2.6) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../09-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../10-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libasan6:amd64.
Preparing to unpack .../11-libasan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../12-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../13-libtsan0_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../14-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../15-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libgcc-11-dev:amd64.
Preparing to unpack .../16-libgcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package gcc-11.
Preparing to unpack .../17-gcc-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking gcc-11 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package gcc.
Preparing to unpack .../18-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking gcc (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../19-libc-dev-bin_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc-dev-bin (2.35-0ubuntu3.8) ...
Selecting previously unselected package libc-devtools.
Preparing to unpack .../20-libc-devtools_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc-devtools (2.35-0ubuntu3.8) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../21-linux-libc-dev_5.15.0-113.123_amd64.deb ...
Unpacking linux-libc-dev:amd64 (5.15.0-113.123) ...
Selecting previously unselected package libcrypt-dev:amd64.
Preparing to unpack .../22-libcrypt-dev_1%3a4.4.27-1_amd64.deb ...
Unpacking libcrypt-dev:amd64 (1:4.4.27-1) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../23-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
Selecting previously unselected package libtirpc-dev:amd64.
Preparing to unpack .../24-libtirpc-dev_1.3.2-2ubuntu0.1_amd64.deb ...
Unpacking libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
Selecting previously unselected package libnsl-dev:amd64.
Preparing to unpack .../25-libnsl-dev_1.3.0-2build2_amd64.deb ...
Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../26-libc6-dev_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc6-dev:amd64 (2.35-0ubuntu3.8) ...
Selecting previously unselected package libfl2:amd64.
Preparing to unpack .../27-libfl2_2.6.4-8build2_amd64.deb ...
Unpacking libfl2:amd64 (2.6.4-8build2) ...
Selecting previously unselected package libfl-dev:amd64.
Preparing to unpack .../28-libfl-dev_2.6.4-8build2_amd64.deb ...
Unpacking libfl-dev:amd64 (2.6.4-8build2) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../29-manpages-dev_5.10-1ubuntu1_all.deb ...
Unpacking manpages-dev (5.10-1ubuntu1) ...
Setting up manpages-dev (5.10-1ubuntu1) ...
Setting up binutils-common:amd64 (2.38-4ubuntu2.6) ...
Setting up linux-libc-dev:amd64 (5.15.0-113.123) ...
Setting up libctf-nobfd0:amd64 (2.38-4ubuntu2.6) ...
Setting up libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
Setting up libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
Setting up libsigsegv2:amd64 (2.13-1ubuntu3) ...
Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
Setting up libfl2:amd64 (2.6.4-8build2) ...
Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
Setting up libnsl-dev:amd64 (1.3.0-2build2) ...
Setting up libcrypt-dev:amd64 (1:4.4.27-1) ...
Setting up libbinutils:amd64 (2.38-4ubuntu2.6) ...
Setting up libc-dev-bin (2.35-0ubuntu3.8) ...
Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
Setting up libc-devtools (2.35-0ubuntu3.8) ...
Setting up libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
Setting up libctf0:amd64 (2.38-4ubuntu2.6) ...
Setting up m4 (1.4.18-5ubuntu2) ...
Setting up libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
Setting up libc6-dev:amd64 (2.35-0ubuntu3.8) ...
Setting up binutils-x86-64-linux-gnu (2.38-4ubuntu2.6) ...
Setting up flex (2.6.4-8build2) ...
Setting up binutils (2.38-4ubuntu2.6) ...
Setting up libfl-dev:amd64 (2.6.4-8build2) ...
Setting up gcc-11 (11.4.0-1ubuntu1~22.04) ...
Setting up gcc (4:11.2.0-1ubuntu1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for install-info (6.8-4build1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install bison
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
Suggested packages:
  bison-doc
The following NEW packages will be installed:
  bison
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 748 kB of archives.
After this operation, 2,519 kB of additional disk space will be used.
Get:1 http://cn.archive.ubuntu.com/ubuntu jammy/main amd64 bison amd64 2:3.8.2+dfsg-1build1 [748 kB]
Fetched 748 kB in 22s (33.7 kB/s)              
Selecting previously unselected package bison.
(Reading database ... 171586 files and directories currently installed.)
Preparing to unpack .../bison_2%3a3.8.2+dfsg-1build1_amd64.deb ...
Unpacking bison (2:3.8.2+dfsg-1build1) ...
Setting up bison (2:3.8.2+dfsg-1build1) ...
update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install gperf
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  gperf
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 103 kB of archives.
After this operation, 270 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 gperf amd64 3.1-1build1 [103 kB]
Fetched 103 kB in 23s (4,547 B/s)                             
Selecting previously unselected package gperf.
(Reading database ... 171702 files and directories currently installed.)
Preparing to unpack .../gperf_3.1-1build1_amd64.deb ...
Unpacking gperf (3.1-1build1) ...
Setting up gperf (3.1-1build1) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for install-info (6.8-4build1) ...
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libsdl1.2-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libasound2-dev libblkid-dev libcaca-dev libdpkg-perl libffi-dev libfile-fcntllock-perl libgl-dev libglib2.0-dev libglib2.0-dev-bin libglu1-mesa-dev libglx-dev libmount-dev libpcre16-3 libpcre2-16-0
  libpcre2-dev libpcre2-posix3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpng-dev libpng-tools libpthread-stubs0-dev libpulse-dev libsdl1.2debian libselinux1-dev libsepol-dev libslang2-dev libx11-dev
  libxau-dev libxcb1-dev libxdmcp-dev libxext-dev pkg-config python3-distutils uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  libasound2-doc debian-keyring bzr libgirepository1.0-dev libglib2.0-doc libxml2-utils libx11-doc libxcb-doc libxext-doc dpkg-dev
The following NEW packages will be installed:
  libasound2-dev libblkid-dev libcaca-dev libdpkg-perl libffi-dev libfile-fcntllock-perl libgl-dev libglib2.0-dev libglib2.0-dev-bin libglu1-mesa-dev libglx-dev libmount-dev libpcre16-3 libpcre2-16-0
  libpcre2-dev libpcre2-posix3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpng-dev libpng-tools libpthread-stubs0-dev libpulse-dev libsdl1.2-dev libsdl1.2debian libselinux1-dev libsepol-dev libslang2-dev
  libx11-dev libxau-dev libxcb1-dev libxdmcp-dev libxext-dev pkg-config python3-distutils uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
0 upgraded, 40 newly installed, 0 to remove and 8 not upgraded.
Need to get 9,656 kB of archives.
After this operation, 45.1 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 jammy/main amd64 libasound2-dev amd64 1.2.6.1-1ubuntu1 [110 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-2ubuntu9.2 [164 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libpng-dev amd64 1.6.37-3build5 [192 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libslang2-dev amd64 2.3.2-5build4 [437 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libcaca-dev amd64 0.99.beta19-2.2ubuntu4 [772 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.3 [237 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libfile-fcntllock-perl amd64 0.22-3build7 [33.9 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 x11proto-dev all 2021.5-1 [604 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libxau-dev amd64 1:1.0.9-1build5 [9,724 B]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libxdmcp-dev amd64 1:1.1.3-0ubuntu5 [26.5 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 xtrans-dev all 1.4.0-1 [68.9 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libpthread-stubs0-dev amd64 0.4-1build2 [5,516 B]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libxcb1-dev amd64 1.14-3ubuntu3 [86.5 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libx11-dev amd64 2:1.7.5-1ubuntu0.3 [744 kB]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libglx-dev amd64 1.4.0-1 [14.1 kB]
Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libgl-dev amd64 1.4.0-1 [101 kB]
Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libffi-dev amd64 3.4.2-4 [63.7 kB]
Get:19 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-distutils all 3.10.8-1~22.04 [139 kB]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libglib2.0-dev-bin amd64 2.72.4-0ubuntu2.3 [117 kB]
Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 uuid-dev amd64 2.37.2-4ubuntu3.4 [33.1 kB]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libblkid-dev amd64 2.37.2-4ubuntu3.4 [185 kB]
Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libsepol-dev amd64 3.3-1build1 [378 kB]
Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB]
Get:25 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre2-posix3 amd64 10.39-3ubuntu0.1 [6,130 B]
Get:26 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre2-dev amd64 10.39-3ubuntu0.1 [730 kB]
Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libselinux1-dev amd64 3.3-1build2 [158 kB]
Get:28 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libmount-dev amd64 2.37.2-4ubuntu3.4 [14.5 kB]
Get:29 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre16-3 amd64 2:8.39-13ubuntu0.22.04.1 [164 kB]
Get:30 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre32-3 amd64 2:8.39-13ubuntu0.22.04.1 [155 kB]
Get:31 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcrecpp0v5 amd64 2:8.39-13ubuntu0.22.04.1 [16.5 kB]
Get:32 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libpcre3-dev amd64 2:8.39-13ubuntu0.22.04.1 [579 kB]
Get:33 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB]
Get:34 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libglib2.0-dev amd64 2.72.4-0ubuntu2.3 [1,743 kB]
Get:35 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libglu1-mesa-dev amd64 9.0.2-1 [231 kB]
Get:36 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libpng-tools amd64 1.6.37-3build5 [28.7 kB]
Get:37 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse-dev amd64 1:15.99.1+dfsg1-1ubuntu2.2 [75.6 kB]
Get:38 http://cn.archive.ubuntu.com/ubuntu jammy/universe amd64 libsdl1.2debian amd64 1.2.15+dfsg2-6 [177 kB]
Get:39 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libxext-dev amd64 2:1.3.4-1build1 [84.7 kB]
Get:40 http://cn.archive.ubuntu.com/ubuntu jammy/universe amd64 libsdl1.2-dev amd64 1.2.15+dfsg2-6 [708 kB]
Fetched 9,656 kB in 22s (435 kB/s)      
Extracting templates from packages: 100%
Selecting previously unselected package libasound2-dev:amd64.
(Reading database ... 171716 files and directories currently installed.)
Preparing to unpack .../00-libasound2-dev_1.2.6.1-1ubuntu1_amd64.deb ...
Unpacking libasound2-dev:amd64 (1.2.6.1-1ubuntu1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../01-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../02-libpng-dev_1.6.37-3build5_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.37-3build5) ...
Selecting previously unselected package libslang2-dev:amd64.
Preparing to unpack .../03-libslang2-dev_2.3.2-5build4_amd64.deb ...
Unpacking libslang2-dev:amd64 (2.3.2-5build4) ...
Selecting previously unselected package libcaca-dev.
Preparing to unpack .../04-libcaca-dev_0.99.beta19-2.2ubuntu4_amd64.deb ...
Unpacking libcaca-dev (0.99.beta19-2.2ubuntu4) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../05-libdpkg-perl_1.21.1ubuntu2.3_all.deb ...
Unpacking libdpkg-perl (1.21.1ubuntu2.3) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../06-libfile-fcntllock-perl_0.22-3build7_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3build7) ...
Selecting previously unselected package xorg-sgml-doctools.
Preparing to unpack .../07-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
Selecting previously unselected package x11proto-dev.
Preparing to unpack .../08-x11proto-dev_2021.5-1_all.deb ...
Unpacking x11proto-dev (2021.5-1) ...
Selecting previously unselected package libxau-dev:amd64.
Preparing to unpack .../09-libxau-dev_1%3a1.0.9-1build5_amd64.deb ...
Unpacking libxau-dev:amd64 (1:1.0.9-1build5) ...
Selecting previously unselected package libxdmcp-dev:amd64.
Preparing to unpack .../10-libxdmcp-dev_1%3a1.1.3-0ubuntu5_amd64.deb ...
Unpacking libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Selecting previously unselected package xtrans-dev.
Preparing to unpack .../11-xtrans-dev_1.4.0-1_all.deb ...
Unpacking xtrans-dev (1.4.0-1) ...
Selecting previously unselected package libpthread-stubs0-dev:amd64.
Preparing to unpack .../12-libpthread-stubs0-dev_0.4-1build2_amd64.deb ...
Unpacking libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Selecting previously unselected package libxcb1-dev:amd64.
Preparing to unpack .../13-libxcb1-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libx11-dev:amd64.
Preparing to unpack .../14-libx11-dev_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
Unpacking libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libglx-dev:amd64.
Preparing to unpack .../15-libglx-dev_1.4.0-1_amd64.deb ...
Unpacking libglx-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libgl-dev:amd64.
Preparing to unpack .../16-libgl-dev_1.4.0-1_amd64.deb ...
Unpacking libgl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libffi-dev:amd64.
Preparing to unpack .../17-libffi-dev_3.4.2-4_amd64.deb ...
Unpacking libffi-dev:amd64 (3.4.2-4) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../18-python3-distutils_3.10.8-1~22.04_all.deb ...
Unpacking python3-distutils (3.10.8-1~22.04) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../19-libglib2.0-dev-bin_2.72.4-0ubuntu2.3_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.72.4-0ubuntu2.3) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../20-uuid-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking uuid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package libblkid-dev:amd64.
Preparing to unpack .../21-libblkid-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking libblkid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package libsepol-dev:amd64.
Preparing to unpack .../22-libsepol-dev_3.3-1build1_amd64.deb ...
Unpacking libsepol-dev:amd64 (3.3-1build1) ...
Selecting previously unselected package libpcre2-16-0:amd64.
Preparing to unpack .../23-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-posix3:amd64.
Preparing to unpack .../24-libpcre2-posix3_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-dev:amd64.
Preparing to unpack .../25-libpcre2-dev_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libselinux1-dev:amd64.
Preparing to unpack .../26-libselinux1-dev_3.3-1build2_amd64.deb ...
Unpacking libselinux1-dev:amd64 (3.3-1build2) ...
Selecting previously unselected package libmount-dev:amd64.
Preparing to unpack .../27-libmount-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking libmount-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../28-libpcre16-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../29-libpcre32-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../30-libpcrecpp0v5_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../31-libpcre3-dev_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../32-pkg-config_0.29.2-1ubuntu3_amd64.deb ...
Unpacking pkg-config (0.29.2-1ubuntu3) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../33-libglib2.0-dev_2.72.4-0ubuntu2.3_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.72.4-0ubuntu2.3) ...
Selecting previously unselected package libglu1-mesa-dev:amd64.
Preparing to unpack .../34-libglu1-mesa-dev_9.0.2-1_amd64.deb ...
Unpacking libglu1-mesa-dev:amd64 (9.0.2-1) ...
Selecting previously unselected package libpng-tools.
Preparing to unpack .../35-libpng-tools_1.6.37-3build5_amd64.deb ...
Unpacking libpng-tools (1.6.37-3build5) ...
Selecting previously unselected package libpulse-dev:amd64.
Preparing to unpack .../36-libpulse-dev_1%3a15.99.1+dfsg1-1ubuntu2.2_amd64.deb ...
Unpacking libpulse-dev:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ...
Selecting previously unselected package libsdl1.2debian:amd64.
Preparing to unpack .../37-libsdl1.2debian_1.2.15+dfsg2-6_amd64.deb ...
Unpacking libsdl1.2debian:amd64 (1.2.15+dfsg2-6) ...
Selecting previously unselected package libxext-dev:amd64.
Preparing to unpack .../38-libxext-dev_2%3a1.3.4-1build1_amd64.deb ...
Unpacking libxext-dev:amd64 (2:1.3.4-1build1) ...
Selecting previously unselected package libsdl1.2-dev.
Preparing to unpack .../39-libsdl1.2-dev_1.2.15+dfsg2-6_amd64.deb ...
Unpacking libsdl1.2-dev (1.2.15+dfsg2-6) ...
Setting up python3-distutils (3.10.8-1~22.04) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libglib2.0-dev-bin (2.72.4-0ubuntu2.3) ...
Setting up libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libpng-tools (1.6.37-3build5) ...
Setting up libfile-fcntllock-perl (0.22-3build7) ...
Setting up libffi-dev:amd64 (3.4.2-4) ...
Setting up libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
Setting up xtrans-dev (1.4.0-1) ...
Setting up uuid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libsdl1.2debian:amd64 (1.2.15+dfsg2-6) ...
Setting up libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libsepol-dev:amd64 (3.3-1build1) ...
Setting up libdpkg-perl (1.21.1ubuntu2.3) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu9.2) ...
Setting up libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Setting up xorg-sgml-doctools (1:1.11-1.1) ...
Setting up libasound2-dev:amd64 (1.2.6.1-1ubuntu1) ...
Setting up libblkid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Setting up libselinux1-dev:amd64 (3.3-1build2) ...
Setting up libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libpng-dev:amd64 (1.6.37-3build5) ...
Setting up pkg-config (0.29.2-1ubuntu3) ...
Setting up libmount-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libslang2-dev:amd64 (2.3.2-5build4) ...
Setting up libglib2.0-dev:amd64 (2.72.4-0ubuntu2.3) ...
Setting up libcaca-dev (0.99.beta19-2.2ubuntu4) ...
Processing triggers for libglib2.0-0:amd64 (2.72.4-0ubuntu2.3) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
Processing triggers for man-db (2.10.2-1) ...
Setting up libpulse-dev:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ...
Processing triggers for sgml-base (1.30) ...
Processing triggers for install-info (6.8-4build1) ...
Setting up x11proto-dev (2021.5-1) ...
Setting up libxau-dev:amd64 (1:1.0.9-1build5) ...
Setting up libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Setting up libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Setting up libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Setting up libxext-dev:amd64 (2:1.3.4-1build1) ...
Setting up libglx-dev:amd64 (1.4.0-1) ...
Setting up libgl-dev:amd64 (1.4.0-1) ...
Setting up libglu1-mesa-dev:amd64 (9.0.2-1) ...
Setting up libsdl1.2-dev (1.2.15+dfsg2-6) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libesd-java
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libjorbis-java
The following NEW packages will be installed:
  libesd-java libjorbis-java
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 364 kB of archives.
After this operation, 1,693 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 libjorbis-java all 0.0.17-3 [101 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 libesd-java all 0.0.7-5 [263 kB]
Fetched 364 kB in 21s (17.6 kB/s)    
Selecting previously unselected package libjorbis-java.
(Reading database ... 174467 files and directories currently installed.)
Preparing to unpack .../libjorbis-java_0.0.17-3_all.deb ...
Unpacking libjorbis-java (0.0.17-3) ...
Selecting previously unselected package libesd-java.
Preparing to unpack .../libesd-java_0.0.7-5_all.deb ...
Unpacking libesd-java (0.0.7-5) ...
Setting up libjorbis-java (0.0.17-3) ...
Setting up libesd-java (0.0.7-5) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libwxgtk3.0-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package libwxgtk3.0-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libwxgtk3.0-dev' has no installation candidate
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install squashfs-tools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
squashfs-tools is already the newest version (1:4.5-3build1).
squashfs-tools set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install build-essential
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  dpkg-dev fakeroot g++ g++-11 libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libfakeroot libstdc++-11-dev lto-disabled-list make
Suggested packages:
  debian-keyring g++-multilib g++-11-multilib gcc-11-doc libstdc++-11-doc make-doc
The following NEW packages will be installed:
  build-essential dpkg-dev fakeroot g++ g++-11 libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libfakeroot libstdc++-11-dev lto-disabled-list make
0 upgraded, 12 newly installed, 0 to remove and 8 not upgraded.
Need to get 14.8 MB of archives.
After this operation, 52.5 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,101 kB]
Get:2 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11 amd64 11.4.0-1ubuntu1~22.04 [11.4 MB]
Get:3 http://cn.archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1,412 B]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.3 [922 kB]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4,744 B]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libfakeroot amd64 1.28-1ubuntu1 [31.5 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 fakeroot amd64 1.28-1ubuntu1 [60.4 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6build3 [11.9 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
Fetched 14.8 MB in 24s (615 kB/s)                   
Selecting previously unselected package libstdc++-11-dev:amd64.
(Reading database ... 174553 files and directories currently installed.)
Preparing to unpack .../00-libstdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package g++-11.
Preparing to unpack .../01-g++-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking g++-11 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package g++.
Preparing to unpack .../02-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking g++ (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package make.
Preparing to unpack .../03-make_4.3-4.1build1_amd64.deb ...
Unpacking make (4.3-4.1build1) ...
Selecting previously unselected package lto-disabled-list.
Preparing to unpack .../04-lto-disabled-list_24_all.deb ...
Unpacking lto-disabled-list (24) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../05-dpkg-dev_1.21.1ubuntu2.3_all.deb ...
Unpacking dpkg-dev (1.21.1ubuntu2.3) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../06-build-essential_12.9ubuntu3_amd64.deb ...
Unpacking build-essential (12.9ubuntu3) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../07-libfakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.28-1ubuntu1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../08-fakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking fakeroot (1.28-1ubuntu1) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../09-libalgorithm-diff-perl_1.201-1_all.deb ...
Unpacking libalgorithm-diff-perl (1.201-1) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Preparing to unpack .../10-libalgorithm-diff-xs-perl_0.04-6build3_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../11-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Setting up lto-disabled-list (24) ...
Setting up libalgorithm-diff-perl (1.201-1) ...
Setting up libfakeroot:amd64 (1.28-1ubuntu1) ...
Setting up fakeroot (1.28-1ubuntu1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up make (4.3-4.1build1) ...
Setting up libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Setting up g++-11 (11.4.0-1ubuntu1~22.04) ...
Setting up dpkg-dev (1.21.1ubuntu2.3) ...
Setting up g++ (4:11.2.0-1ubuntu1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up build-essential (12.9ubuntu3) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install zip
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
zip is already the newest version (3.0-12build2).
zip set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install curl
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  curl
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 194 kB of archives.
After this operation, 454 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 curl amd64 7.81.0-1ubuntu1.16 [194 kB]
Fetched 194 kB in 23s (8,557 B/s)              
Selecting previously unselected package curl.
(Reading database ... 175780 files and directories currently installed.)
Preparing to unpack .../curl_7.81.0-1ubuntu1.16_amd64.deb ...
Unpacking curl (7.81.0-1ubuntu1.16) ...
Setting up curl (7.81.0-1ubuntu1.16) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libncurses5-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libncurses-dev
Suggested packages:
  ncurses-doc
The following NEW packages will be installed:
  libncurses-dev libncurses5-dev
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 381 kB of archives.
After this operation, 2,414 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libncurses-dev amd64 6.3-2ubuntu0.1 [381 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libncurses5-dev amd64 6.3-2ubuntu0.1 [790 B]
Fetched 381 kB in 22s (17.4 kB/s)       
Selecting previously unselected package libncurses-dev:amd64.
(Reading database ... 175787 files and directories currently installed.)
Preparing to unpack .../libncurses-dev_6.3-2ubuntu0.1_amd64.deb ...
Unpacking libncurses-dev:amd64 (6.3-2ubuntu0.1) ...
Selecting previously unselected package libncurses5-dev:amd64.
Preparing to unpack .../libncurses5-dev_6.3-2ubuntu0.1_amd64.deb ...
Unpacking libncurses5-dev:amd64 (6.3-2ubuntu0.1) ...
Setting up libncurses-dev:amd64 (6.3-2ubuntu0.1) ...
Setting up libncurses5-dev:amd64 (6.3-2ubuntu0.1) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install zlib1g-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
zlib1g-dev is already the newest version (1:1.2.11.dfsg-2ubuntu9.2).
zlib1g-dev set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install pngcrush
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  pngcrush
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 52.8 kB of archives.
After this operation, 143 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 pngcrush amd64 1.8.13-0.1 [52.8 kB]
Fetched 52.8 kB in 23s (2,281 B/s)             
Selecting previously unselected package pngcrush.
(Reading database ... 175877 files and directories currently installed.)
Preparing to unpack .../pngcrush_1.8.13-0.1_amd64.deb ...
Unpacking pngcrush (1.8.13-0.1) ...
Setting up pngcrush (1.8.13-0.1) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install schedtool
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  schedtool
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 22.0 kB of archives.
After this operation, 52.2 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 schedtool amd64 1.3.0-4 [22.0 kB]
Fetched 22.0 kB in 22s (1,020 B/s)                            
Selecting previously unselected package schedtool.
(Reading database ... 175883 files and directories currently installed.)
Preparing to unpack .../schedtool_1.3.0-4_amd64.deb ...
Unpacking schedtool (1.3.0-4) ...
Setting up schedtool (1.3.0-4) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libxml2
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libxml2 is already the newest version (2.9.13+dfsg-1ubuntu0.4).
libxml2 set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libxml2-utils
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  libxml2-utils
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 40.2 kB of archives.
After this operation, 207 kB of additional disk space will be used.
Get:1 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libxml2-utils amd64 2.9.13+dfsg-1ubuntu0.4 [40.2 kB]
Fetched 40.2 kB in 22s (1,823 B/s)                            
Selecting previously unselected package libxml2-utils.
(Reading database ... 175892 files and directories currently installed.)
Preparing to unpack .../libxml2-utils_2.9.13+dfsg-1ubuntu0.4_amd64.deb ...
Unpacking libxml2-utils (2.9.13+dfsg-1ubuntu0.4) ...
Setting up libxml2-utils (2.9.13+dfsg-1ubuntu0.4) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install xsltproc
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  xsltproc
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 14.7 kB of archives.
After this operation, 164 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 xsltproc amd64 1.1.34-4ubuntu0.22.04.1 [14.7 kB]
Fetched 14.7 kB in 21s (717 B/s)               
Selecting previously unselected package xsltproc.
(Reading database ... 175900 files and directories currently installed.)
Preparing to unpack .../xsltproc_1.1.34-4ubuntu0.22.04.1_amd64.deb ...
Unpacking xsltproc (1.1.34-4ubuntu0.22.04.1) ...
Setting up xsltproc (1.1.34-4ubuntu0.22.04.1) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install lzop
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  lzop
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 83.7 kB of archives.
After this operation, 163 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 lzop amd64 1.04-2build2 [83.7 kB]
Fetched 83.7 kB in 21s (4,062 B/s)             
Selecting previously unselected package lzop.
(Reading database ... 175910 files and directories currently installed.)
Preparing to unpack .../lzop_1.04-2build2_amd64.deb ...
Unpacking lzop (1.04-2build2) ...
Setting up lzop (1.04-2build2) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libc6-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libc6-dev is already the newest version (2.35-0ubuntu3.8).
libc6-dev set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install schedtool
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
schedtool is already the newest version (1.3.0-4).
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install g++-multilib
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  g++-11-multilib gcc-11-multilib gcc-multilib lib32asan6 lib32atomic1 lib32gcc-11-dev lib32gcc-s1 lib32gomp1 lib32itm1 lib32quadmath0 lib32stdc++-11-dev lib32stdc++6 lib32ubsan1 libc6-dev-i386 libc6-dev-x32
  libc6-i386 libc6-x32 libx32asan6 libx32atomic1 libx32gcc-11-dev libx32gcc-s1 libx32gomp1 libx32itm1 libx32quadmath0 libx32stdc++-11-dev libx32stdc++6 libx32ubsan1
Suggested packages:
  lib32stdc++6-11-dbg libx32stdc++6-11-dbg
The following NEW packages will be installed:
  g++-11-multilib g++-multilib gcc-11-multilib gcc-multilib lib32asan6 lib32atomic1 lib32gcc-11-dev lib32gcc-s1 lib32gomp1 lib32itm1 lib32quadmath0 lib32stdc++-11-dev lib32stdc++6 lib32ubsan1 libc6-dev-i386
  libc6-dev-x32 libc6-i386 libc6-x32 libx32asan6 libx32atomic1 libx32gcc-11-dev libx32gcc-s1 libx32gomp1 libx32itm1 libx32quadmath0 libx32stdc++-11-dev libx32stdc++6 libx32ubsan1
0 upgraded, 28 newly installed, 0 to remove and 8 not upgraded.
Need to get 23.7 MB of archives.
After this operation, 105 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 jammy-updates/main amd64 libc6-i386 amd64 2.35-0ubuntu3.8 [2,838 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc6-dev-i386 amd64 2.35-0ubuntu3.8 [1,445 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc6-x32 amd64 2.35-0ubuntu3.8 [2,978 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libc6-dev-x32 amd64 2.35-0ubuntu3.8 [1,632 kB]
Get:5 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32gcc-s1 amd64 12.3.0-1ubuntu1~22.04 [63.9 kB]
Get:6 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32gcc-s1 amd64 12.3.0-1ubuntu1~22.04 [54.0 kB]
Get:7 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32gomp1 amd64 12.3.0-1ubuntu1~22.04 [133 kB]
Get:8 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32gomp1 amd64 12.3.0-1ubuntu1~22.04 [127 kB]
Get:9 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32itm1 amd64 12.3.0-1ubuntu1~22.04 [32.0 kB]
Get:10 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32itm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB]
Get:11 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32atomic1 amd64 12.3.0-1ubuntu1~22.04 [8,500 B]
Get:12 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32atomic1 amd64 12.3.0-1ubuntu1~22.04 [10.2 kB]
Get:13 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32asan6 amd64 11.4.0-1ubuntu1~22.04 [2,154 kB]
Get:14 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32asan6 amd64 11.4.0-1ubuntu1~22.04 [2,128 kB]
Get:15 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32stdc++6 amd64 12.3.0-1ubuntu1~22.04 [740 kB]
Get:16 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32ubsan1 amd64 12.3.0-1ubuntu1~22.04 [959 kB]
Get:17 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32stdc++6 amd64 12.3.0-1ubuntu1~22.04 [682 kB]
Get:18 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32ubsan1 amd64 12.3.0-1ubuntu1~22.04 [963 kB]
Get:19 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32quadmath0 amd64 12.3.0-1ubuntu1~22.04 [244 kB]
Get:20 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32quadmath0 amd64 12.3.0-1ubuntu1~22.04 [156 kB]
Get:21 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32gcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,339 kB]
Get:22 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32gcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,107 kB]
Get:23 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11-multilib amd64 11.4.0-1ubuntu1~22.04 [876 B]
Get:24 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 lib32stdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [989 kB]
Get:25 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx32stdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [906 kB]
Get:26 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11-multilib amd64 11.4.0-1ubuntu1~22.04 [890 B]
Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 gcc-multilib amd64 4:11.2.0-1ubuntu1 [1,382 B]
Get:28 http://cn.archive.ubuntu.com/ubuntu jammy/main amd64 g++-multilib amd64 4:11.2.0-1ubuntu1 [854 B]
Fetched 23.7 MB in 23s (1,048 kB/s)
Selecting previously unselected package libc6-i386.
(Reading database ... 175925 files and directories currently installed.)
Preparing to unpack .../00-libc6-i386_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc6-i386 (2.35-0ubuntu3.8) ...
Selecting previously unselected package libc6-dev-i386.
Preparing to unpack .../01-libc6-dev-i386_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc6-dev-i386 (2.35-0ubuntu3.8) ...
Selecting previously unselected package libc6-x32.
Preparing to unpack .../02-libc6-x32_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc6-x32 (2.35-0ubuntu3.8) ...
Selecting previously unselected package libc6-dev-x32.
Preparing to unpack .../03-libc6-dev-x32_2.35-0ubuntu3.8_amd64.deb ...
Unpacking libc6-dev-x32 (2.35-0ubuntu3.8) ...
Selecting previously unselected package lib32gcc-s1.
Preparing to unpack .../04-lib32gcc-s1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32gcc-s1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32gcc-s1.
Preparing to unpack .../05-libx32gcc-s1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32gcc-s1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32gomp1.
Preparing to unpack .../06-lib32gomp1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32gomp1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32gomp1.
Preparing to unpack .../07-libx32gomp1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32gomp1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32itm1.
Preparing to unpack .../08-lib32itm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32itm1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32itm1.
Preparing to unpack .../09-libx32itm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32itm1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32atomic1.
Preparing to unpack .../10-lib32atomic1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32atomic1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32atomic1.
Preparing to unpack .../11-libx32atomic1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32atomic1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32asan6.
Preparing to unpack .../12-lib32asan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32asan6 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32asan6.
Preparing to unpack .../13-libx32asan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32asan6 (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32stdc++6.
Preparing to unpack .../14-lib32stdc++6_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32stdc++6 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32ubsan1.
Preparing to unpack .../15-lib32ubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32ubsan1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32stdc++6.
Preparing to unpack .../16-libx32stdc++6_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32stdc++6 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32ubsan1.
Preparing to unpack .../17-libx32ubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32ubsan1 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32quadmath0.
Preparing to unpack .../18-lib32quadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32quadmath0 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32quadmath0.
Preparing to unpack .../19-libx32quadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32quadmath0 (12.3.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32gcc-11-dev.
Preparing to unpack .../20-lib32gcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32gcc-11-dev (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32gcc-11-dev.
Preparing to unpack .../21-libx32gcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32gcc-11-dev (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package gcc-11-multilib.
Preparing to unpack .../22-gcc-11-multilib_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking gcc-11-multilib (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package lib32stdc++-11-dev.
Preparing to unpack .../23-lib32stdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking lib32stdc++-11-dev (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package libx32stdc++-11-dev.
Preparing to unpack .../24-libx32stdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking libx32stdc++-11-dev (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package g++-11-multilib.
Preparing to unpack .../25-g++-11-multilib_11.4.0-1ubuntu1~22.04_amd64.deb ...
Unpacking g++-11-multilib (11.4.0-1ubuntu1~22.04) ...
Selecting previously unselected package gcc-multilib.
Preparing to unpack .../26-gcc-multilib_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking gcc-multilib (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package g++-multilib.
Preparing to unpack .../27-g++-multilib_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking g++-multilib (4:11.2.0-1ubuntu1) ...
Setting up libc6-x32 (2.35-0ubuntu3.8) ...
Setting up libx32gomp1 (12.3.0-1ubuntu1~22.04) ...
Setting up libc6-i386 (2.35-0ubuntu3.8) ...
Setting up libx32quadmath0 (12.3.0-1ubuntu1~22.04) ...
Setting up lib32atomic1 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32atomic1 (12.3.0-1ubuntu1~22.04) ...
Setting up libc6-dev-i386 (2.35-0ubuntu3.8) ...
Setting up lib32itm1 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32gcc-s1 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32itm1 (12.3.0-1ubuntu1~22.04) ...
Setting up libc6-dev-x32 (2.35-0ubuntu3.8) ...
Setting up lib32gomp1 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32asan6 (11.4.0-1ubuntu1~22.04) ...
Setting up lib32gcc-s1 (12.3.0-1ubuntu1~22.04) ...
Setting up lib32stdc++6 (12.3.0-1ubuntu1~22.04) ...
Setting up lib32asan6 (11.4.0-1ubuntu1~22.04) ...
Setting up lib32quadmath0 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32stdc++6 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32ubsan1 (12.3.0-1ubuntu1~22.04) ...
Setting up lib32ubsan1 (12.3.0-1ubuntu1~22.04) ...
Setting up libx32gcc-11-dev (11.4.0-1ubuntu1~22.04) ...
Setting up libx32stdc++-11-dev (11.4.0-1ubuntu1~22.04) ...
Setting up lib32gcc-11-dev (11.4.0-1ubuntu1~22.04) ...
Setting up lib32stdc++-11-dev (11.4.0-1ubuntu1~22.04) ...
Setting up gcc-11-multilib (11.4.0-1ubuntu1~22.04) ...
Setting up gcc-multilib (4:11.2.0-1ubuntu1) ...
Setting up g++-11-multilib (11.4.0-1ubuntu1~22.04) ...
Setting up g++-multilib (4:11.2.0-1ubuntu1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install lib32z1-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  lib32z1
The following NEW packages will be installed:
  lib32z1 lib32z1-dev
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 122 kB of archives.
After this operation, 366 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32z1 amd64 1:1.2.11.dfsg-2ubuntu9.2 [59.8 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32z1-dev amd64 1:1.2.11.dfsg-2ubuntu9.2 [62.1 kB]
Fetched 122 kB in 22s (5,639 B/s) 
Selecting previously unselected package lib32z1.
(Reading database ... 176847 files and directories currently installed.)
Preparing to unpack .../lib32z1_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
Unpacking lib32z1 (1:1.2.11.dfsg-2ubuntu9.2) ...
Selecting previously unselected package lib32z1-dev.
Preparing to unpack .../lib32z1-dev_1%3a1.2.11.dfsg-2ubuntu9.2_amd64.deb ...
Unpacking lib32z1-dev (1:1.2.11.dfsg-2ubuntu9.2) ...
Setting up lib32z1 (1:1.2.11.dfsg-2ubuntu9.2) ...
Setting up lib32z1-dev (1:1.2.11.dfsg-2ubuntu9.2) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install lib32ncurses5-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'lib32ncurses-dev' instead of 'lib32ncurses5-dev'
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  lib32ncurses6 lib32ncursesw6 lib32tinfo6
Suggested packages:
  ncurses-doc
The following NEW packages will be installed:
  lib32ncurses-dev lib32ncurses6 lib32ncursesw6 lib32tinfo6
0 upgraded, 4 newly installed, 0 to remove and 8 not upgraded.
Need to get 727 kB of archives.
After this operation, 3,080 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32tinfo6 amd64 6.3-2ubuntu0.1 [103 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32ncurses6 amd64 6.3-2ubuntu0.1 [118 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32ncursesw6 amd64 6.3-2ubuntu0.1 [157 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 lib32ncurses-dev amd64 6.3-2ubuntu0.1 [350 kB]
Fetched 727 kB in 21s (34.2 kB/s)         
Selecting previously unselected package lib32tinfo6.
(Reading database ... 176858 files and directories currently installed.)
Preparing to unpack .../lib32tinfo6_6.3-2ubuntu0.1_amd64.deb ...
Unpacking lib32tinfo6 (6.3-2ubuntu0.1) ...
Selecting previously unselected package lib32ncurses6.
Preparing to unpack .../lib32ncurses6_6.3-2ubuntu0.1_amd64.deb ...
Unpacking lib32ncurses6 (6.3-2ubuntu0.1) ...
Selecting previously unselected package lib32ncursesw6.
Preparing to unpack .../lib32ncursesw6_6.3-2ubuntu0.1_amd64.deb ...
Unpacking lib32ncursesw6 (6.3-2ubuntu0.1) ...
Selecting previously unselected package lib32ncurses-dev.
Preparing to unpack .../lib32ncurses-dev_6.3-2ubuntu0.1_amd64.deb ...
Unpacking lib32ncurses-dev (6.3-2ubuntu0.1) ...
Setting up lib32tinfo6 (6.3-2ubuntu0.1) ...
Setting up lib32ncurses6 (6.3-2ubuntu0.1) ...
Setting up lib32ncursesw6 (6.3-2ubuntu0.1) ...
Setting up lib32ncurses-dev (6.3-2ubuntu0.1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install lib32readline-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  lib32readline8
The following NEW packages will be installed:
  lib32readline-dev lib32readline8
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 316 kB of archives.
After this operation, 1,008 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 lib32readline8 amd64 8.1.2-1 [154 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 lib32readline-dev amd64 8.1.2-1 [161 kB]
Fetched 316 kB in 21s (14.9 kB/s)          
Selecting previously unselected package lib32readline8.
(Reading database ... 176910 files and directories currently installed.)
Preparing to unpack .../lib32readline8_8.1.2-1_amd64.deb ...
Unpacking lib32readline8 (8.1.2-1) ...
Selecting previously unselected package lib32readline-dev.
Preparing to unpack .../lib32readline-dev_8.1.2-1_amd64.deb ...
Unpacking lib32readline-dev (8.1.2-1) ...
Setting up lib32readline8 (8.1.2-1) ...
Setting up lib32readline-dev (8.1.2-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install gcc-multilib
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
gcc-multilib is already the newest version (4:11.2.0-1ubuntu1).
gcc-multilib set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libswitch-perl
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  libswitch-perl
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 18.3 kB of archives.
After this operation, 52.2 kB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 libswitch-perl all 2.17-2.1 [18.3 kB]
Fetched 18.3 kB in 21s (853 B/s)                              
Selecting previously unselected package libswitch-perl.
(Reading database ... 176924 files and directories currently installed.)
Preparing to unpack .../libswitch-perl_2.17-2.1_all.deb ...
Unpacking libswitch-perl (2.17-2.1) ...
Setting up libswitch-perl (2.17-2.1) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install libssl-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
Suggested packages:
  libssl-doc
The following NEW packages will be installed:
  libssl-dev
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 2,375 kB of archives.
After this operation, 12.4 MB of additional disk space will be used.
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libssl-dev amd64 3.0.2-0ubuntu1.16 [2,375 kB]
Fetched 2,375 kB in 22s (107 kB/s)                            
Selecting previously unselected package libssl-dev:amd64.
(Reading database ... 176930 files and directories currently installed.)
Preparing to unpack .../libssl-dev_3.0.2-0ubuntu1.16_amd64.deb ...
Unpacking libssl-dev:amd64 (3.0.2-0ubuntu1.16) ...
Setting up libssl-dev:amd64 (3.0.2-0ubuntu1.16) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install unzip
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
unzip is already the newest version (6.0-26ubuntu3.2).
unzip set to manually installed.
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install zip
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
zip is already the newest version (3.0-12build2).
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install device-tree-compiler
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libfdt1
The following NEW packages will be installed:
  device-tree-compiler libfdt1
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 248 kB of archives.
After this operation, 485 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libfdt1 amd64 1.6.1-1 [20.0 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 device-tree-compiler amd64 1.6.1-1 [228 kB]
Fetched 248 kB in 21s (12.0 kB/s)             
Selecting previously unselected package libfdt1:amd64.
(Reading database ... 177078 files and directories currently installed.)
Preparing to unpack .../libfdt1_1.6.1-1_amd64.deb ...
Unpacking libfdt1:amd64 (1.6.1-1) ...
Selecting previously unselected package device-tree-compiler.
Preparing to unpack .../device-tree-compiler_1.6.1-1_amd64.deb ...
Unpacking device-tree-compiler (1.6.1-1) ...
Setting up libfdt1:amd64 (1.6.1-1) ...
Setting up device-tree-compiler (1.6.1-1) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install liblz4-tool
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  lz4
The following NEW packages will be installed:
  liblz4-tool lz4
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 92.4 kB of archives.
After this operation, 249 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 lz4 amd64 1.9.3-2build2 [90.0 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 liblz4-tool all 1.9.3-2build2 [2,342 B]
Fetched 92.4 kB in 22s (4,261 B/s)      
Selecting previously unselected package lz4.
(Reading database ... 177106 files and directories currently installed.)
Preparing to unpack .../lz4_1.9.3-2build2_amd64.deb ...
Unpacking lz4 (1.9.3-2build2) ...
Selecting previously unselected package liblz4-tool.
Preparing to unpack .../liblz4-tool_1.9.3-2build2_all.deb ...
Unpacking liblz4-tool (1.9.3-2build2) ...
Setting up lz4 (1.9.3-2build2) ...
Setting up liblz4-tool (1.9.3-2build2) ...
Processing triggers for man-db (2.10.2-1) ...
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
sudo apt-get install python-pyelftools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package python-pyelftools
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.3.191  netmask 255.255.255.0  broadcast 192.168.3.255
        inet6 fe80::6071:a7e7:2293:895b  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:bf:62:bb  txqueuelen 1000  (Ethernet)
        RX packets 106198  bytes 109841708 (109.8 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 38900  bytes 3385396 (3.3 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 435  bytes 52919 (52.9 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 435  bytes 52919 (52.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ python
Command 'python' not found, did you mean:
  command 'python3' from deb python3
  command 'python' from deb python-is-python3
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ python3
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ python2
Command 'python2' not found, but can be installed with:
sudo apt install python2
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ sudo apt install python2
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib python2-minimal python2.7 python2.7-minimal
Suggested packages:
  python2-doc python-tk python2.7-doc binfmt-support
The following NEW packages will be installed:
  libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib python2 python2-minimal python2.7 python2.7-minimal
0 upgraded, 7 newly installed, 0 to remove and 8 not upgraded.
Need to get 4,007 kB of archives.
After this operation, 16.2 MB of additional disk space will be used.
Do you want to continue? [Y/n] 2^Hy
Abort.
rootroot@rootroot-virtual-machine:~$ sudo apt install python2
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib python2-minimal python2.7 python2.7-minimal
Suggested packages:
  python2-doc python-tk python2.7-doc binfmt-support
The following NEW packages will be installed:
  libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib python2 python2-minimal python2.7 python2.7-minimal
0 upgraded, 7 newly installed, 0 to remove and 8 not upgraded.
Need to get 4,007 kB of archives.
After this operation, 16.2 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 jammy-updates/universe amd64 libpython2.7-minimal amd64 2.7.18-13ubuntu1.2 [347 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/universe amd64 python2.7-minimal amd64 2.7.18-13ubuntu1.2 [1,397 kB]
Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 python2-minimal amd64 2.7.18-3 [20.8 kB]
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/universe amd64 libpython2.7-stdlib amd64 2.7.18-13ubuntu1.2 [1,977 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/universe amd64 python2.7 amd64 2.7.18-13ubuntu1.2 [250 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 libpython2-stdlib amd64 2.7.18-3 [7,432 B]
Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/universe amd64 python2 amd64 2.7.18-3 [9,098 B]
Fetched 4,007 kB in 22s (183 kB/s) 

Selecting previously unselected package libpython2.7-minimal:amd64.
(Reading database ... 177120 files and directories currently installed.)
Preparing to unpack .../0-libpython2.7-minimal_2.7.18-13ubuntu1.2_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.18-13ubuntu1.2) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../1-python2.7-minimal_2.7.18-13ubuntu1.2_amd64.deb ...
Unpacking python2.7-minimal (2.7.18-13ubuntu1.2) ...
Selecting previously unselected package python2-minimal.
Preparing to unpack .../2-python2-minimal_2.7.18-3_amd64.deb ...
Unpacking python2-minimal (2.7.18-3) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../3-libpython2.7-stdlib_2.7.18-13ubuntu1.2_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.18-13ubuntu1.2) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../4-python2.7_2.7.18-13ubuntu1.2_amd64.deb ...
Unpacking python2.7 (2.7.18-13ubuntu1.2) ...
Selecting previously unselected package libpython2-stdlib:amd64.
Preparing to unpack .../5-libpython2-stdlib_2.7.18-3_amd64.deb ...
Unpacking libpython2-stdlib:amd64 (2.7.18-3) ...
Setting up libpython2.7-minimal:amd64 (2.7.18-13ubuntu1.2) ...
Setting up python2.7-minimal (2.7.18-13ubuntu1.2) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up python2-minimal (2.7.18-3) ...
Selecting previously unselected package python2.
(Reading database ... 177863 files and directories currently installed.)
Preparing to unpack .../python2_2.7.18-3_amd64.deb ...
Unpacking python2 (2.7.18-3) ...
Setting up libpython2.7-stdlib:amd64 (2.7.18-13ubuntu1.2) ...
Setting up python2.7 (2.7.18-13ubuntu1.2) ...
Setting up libpython2-stdlib:amd64 (2.7.18-3) ...
Setting up python2 (2.7.18-3) ...
Processing triggers for desktop-file-utils (0.26-1ubuntu3) ...
Processing triggers for gnome-menus (3.36.0-1ubuntu3) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for mailcap (3.70+nmu1ubuntu1) ...

rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ sudo apt install samba
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  attr ibverbs-providers libcephfs2 libgfapi0 libgfrpc0 libgfxdr0 libglusterfs0 libibverbs1 librados2 librdmacm1 liburing2 python3-dnspython python3-gpg python3-markdown python3-pygments
  python3-requests-toolbelt python3-samba python3-tdb samba-common samba-common-bin samba-dsdb-modules samba-vfs-modules tdb-tools
Suggested packages:
  python3-sniffio python3-trio python-markdown-doc python-pygments-doc ttf-bitstream-vera bind9 bind9utils ctdb ldb-tools ntp | chrony smbldap-tools winbind heimdal-clients
The following NEW packages will be installed:
  attr ibverbs-providers libcephfs2 libgfapi0 libgfrpc0 libgfxdr0 libglusterfs0 libibverbs1 librados2 librdmacm1 liburing2 python3-dnspython python3-gpg python3-markdown python3-pygments
  python3-requests-toolbelt python3-samba python3-tdb samba samba-common samba-common-bin samba-dsdb-modules samba-vfs-modules tdb-tools
0 upgraded, 24 newly installed, 0 to remove and 8 not upgraded.
Need to get 12.3 MB of archives.
After this operation, 72.2 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 jammy/main amd64 python3-dnspython all 2.1.0-1ubuntu1 [123 kB]
Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 python3-tdb amd64 1.4.5-2build1 [15.5 kB]
Get:3 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-samba amd64 2:4.15.13+dfsg-0ubuntu1.6 [3,115 kB]
Get:4 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 samba-common all 2:4.15.13+dfsg-0ubuntu1.6 [75.7 kB]
Get:5 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 samba-common-bin amd64 2:4.15.13+dfsg-0ubuntu1.6 [620 kB]
Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 tdb-tools amd64 1.4.5-2build1 [26.2 kB]
Get:7 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 samba amd64 2:4.15.13+dfsg-0ubuntu1.6 [1,192 kB]
Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 attr amd64 1:2.5.1-1build1 [22.6 kB]
Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 libibverbs1 amd64 39.0-1 [69.3 kB]
Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 ibverbs-providers amd64 39.0-1 [341 kB]
Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 librdmacm1 amd64 39.0-1 [71.2 kB]
Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 librados2 amd64 17.2.7-0ubuntu0.22.04.1 [3,590 kB]
Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libcephfs2 amd64 17.2.7-0ubuntu0.22.04.1 [748 kB]
Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libgfxdr0 amd64 10.1-1ubuntu0.2 [22.3 kB]
Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libglusterfs0 amd64 10.1-1ubuntu0.2 [287 kB]
Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libgfrpc0 amd64 10.1-1ubuntu0.2 [47.1 kB]
Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 libgfapi0 amd64 10.1-1ubuntu0.2 [77.3 kB]
Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 liburing2 amd64 2.1-2build1 [10.3 kB]
Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates/main amd64 python3-gpg amd64 1.16.0-1.2ubuntu4.2 [214 kB]
Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 python3-markdown all 3.3.6-1 [68.5 kB]
Get:21 http://cn.archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB]
Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy/main amd64 python3-requests-toolbelt all 0.9.1-1 [38.0 kB]
Get:23 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 samba-dsdb-modules amd64 2:4.15.13+dfsg-0ubuntu1.6 [313 kB]
Get:24 http://cn.archive.ubuntu.com/ubuntu jammy-updates/main amd64 samba-vfs-modules amd64 2:4.15.13+dfsg-0ubuntu1.6 [419 kB]
Fetched 12.3 MB in 26s (481 kB/s)            
Preconfiguring packages ...

Selecting previously unselected package python3-dnspython.
(Reading database ... 177880 files and directories currently installed.)
Preparing to unpack .../00-python3-dnspython_2.1.0-1ubuntu1_all.deb ...
Unpacking python3-dnspython (2.1.0-1ubuntu1) ...
Selecting previously unselected package python3-tdb.
Preparing to unpack .../01-python3-tdb_1.4.5-2build1_amd64.deb ...
Unpacking python3-tdb (1.4.5-2build1) ...
Selecting previously unselected package python3-samba.
Preparing to unpack .../02-python3-samba_2%3a4.15.13+dfsg-0ubuntu1.6_amd64.deb ...
Unpacking python3-samba (2:4.15.13+dfsg-0ubuntu1.6) ...
Selecting previously unselected package samba-common.
Preparing to unpack .../03-samba-common_2%3a4.15.13+dfsg-0ubuntu1.6_all.deb ...
Unpacking samba-common (2:4.15.13+dfsg-0ubuntu1.6) ...
Selecting previously unselected package samba-common-bin.
Preparing to unpack .../04-samba-common-bin_2%3a4.15.13+dfsg-0ubuntu1.6_amd64.deb ...
Unpacking samba-common-bin (2:4.15.13+dfsg-0ubuntu1.6) ...
Selecting previously unselected package tdb-tools.
Preparing to unpack .../05-tdb-tools_1.4.5-2build1_amd64.deb ...
Unpacking tdb-tools (1.4.5-2build1) ...
Selecting previously unselected package samba.
Preparing to unpack .../06-samba_2%3a4.15.13+dfsg-0ubuntu1.6_amd64.deb ...
Unpacking samba (2:4.15.13+dfsg-0ubuntu1.6) ...
Selecting previously unselected package attr.
Preparing to unpack .../07-attr_1%3a2.5.1-1build1_amd64.deb ...
Unpacking attr (1:2.5.1-1build1) ...
Selecting previously unselected package libibverbs1:amd64.
Preparing to unpack .../08-libibverbs1_39.0-1_amd64.deb ...
Unpacking libibverbs1:amd64 (39.0-1) ...
Selecting previously unselected package ibverbs-providers:amd64.
Preparing to unpack .../09-ibverbs-providers_39.0-1_amd64.deb ...
Unpacking ibverbs-providers:amd64 (39.0-1) ...
Selecting previously unselected package librdmacm1:amd64.
Preparing to unpack .../10-librdmacm1_39.0-1_amd64.deb ...
Unpacking librdmacm1:amd64 (39.0-1) ...
Selecting previously unselected package librados2.
Preparing to unpack .../11-librados2_17.2.7-0ubuntu0.22.04.1_amd64.deb ...
Unpacking librados2 (17.2.7-0ubuntu0.22.04.1) ...
Selecting previously unselected package libcephfs2.
Preparing to unpack .../12-libcephfs2_17.2.7-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libcephfs2 (17.2.7-0ubuntu0.22.04.1) ...
Selecting previously unselected package libgfxdr0:amd64.
Preparing to unpack .../13-libgfxdr0_10.1-1ubuntu0.2_amd64.deb ...
Unpacking libgfxdr0:amd64 (10.1-1ubuntu0.2) ...
Selecting previously unselected package libglusterfs0:amd64.
Preparing to unpack .../14-libglusterfs0_10.1-1ubuntu0.2_amd64.deb ...
Unpacking libglusterfs0:amd64 (10.1-1ubuntu0.2) ...
Selecting previously unselected package libgfrpc0:amd64.
Preparing to unpack .../15-libgfrpc0_10.1-1ubuntu0.2_amd64.deb ...
Unpacking libgfrpc0:amd64 (10.1-1ubuntu0.2) ...
Selecting previously unselected package libgfapi0:amd64.
Preparing to unpack .../16-libgfapi0_10.1-1ubuntu0.2_amd64.deb ...
Unpacking libgfapi0:amd64 (10.1-1ubuntu0.2) ...
Selecting previously unselected package liburing2:amd64.
Preparing to unpack .../17-liburing2_2.1-2build1_amd64.deb ...
Unpacking liburing2:amd64 (2.1-2build1) ...
Selecting previously unselected package python3-gpg.
Preparing to unpack .../18-python3-gpg_1.16.0-1.2ubuntu4.2_amd64.deb ...
Unpacking python3-gpg (1.16.0-1.2ubuntu4.2) ...
Selecting previously unselected package python3-markdown.
Preparing to unpack .../19-python3-markdown_3.3.6-1_all.deb ...
Unpacking python3-markdown (3.3.6-1) ...
Selecting previously unselected package python3-pygments.
Preparing to unpack .../20-python3-pygments_2.11.2+dfsg-2_all.deb ...
Unpacking python3-pygments (2.11.2+dfsg-2) ...
Selecting previously unselected package python3-requests-toolbelt.
Preparing to unpack .../21-python3-requests-toolbelt_0.9.1-1_all.deb ...
Unpacking python3-requests-toolbelt (0.9.1-1) ...
Selecting previously unselected package samba-dsdb-modules:amd64.
Preparing to unpack .../22-samba-dsdb-modules_2%3a4.15.13+dfsg-0ubuntu1.6_amd64.deb ...
Unpacking samba-dsdb-modules:amd64 (2:4.15.13+dfsg-0ubuntu1.6) ...
Selecting previously unselected package samba-vfs-modules:amd64.
Preparing to unpack .../23-samba-vfs-modules_2%3a4.15.13+dfsg-0ubuntu1.6_amd64.deb ...
Unpacking samba-vfs-modules:amd64 (2:4.15.13+dfsg-0ubuntu1.6) ...
Setting up libibverbs1:amd64 (39.0-1) ...
Setting up python3-requests-toolbelt (0.9.1-1) ...
Setting up ibverbs-providers:amd64 (39.0-1) ...
Setting up attr (1:2.5.1-1build1) ...
Setting up samba-common (2:4.15.13+dfsg-0ubuntu1.6) ...

Creating config file /etc/samba/smb.conf with new version
Setting up libglusterfs0:amd64 (10.1-1ubuntu0.2) ...
Setting up python3-tdb (1.4.5-2build1) ...
Setting up python3-pygments (2.11.2+dfsg-2) ...
Setting up python3-gpg (1.16.0-1.2ubuntu4.2) ...
Setting up tdb-tools (1.4.5-2build1) ...
update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode
Setting up python3-markdown (3.3.6-1) ...
Setting up python3-dnspython (2.1.0-1ubuntu1) ...
Setting up samba-dsdb-modules:amd64 (2:4.15.13+dfsg-0ubuntu1.6) ...
Setting up liburing2:amd64 (2.1-2build1) ...
Setting up python3-samba (2:4.15.13+dfsg-0ubuntu1.6) ...
Setting up libgfxdr0:amd64 (10.1-1ubuntu0.2) ...
Setting up librdmacm1:amd64 (39.0-1) ...
Setting up librados2 (17.2.7-0ubuntu0.22.04.1) ...
Setting up samba-vfs-modules:amd64 (2:4.15.13+dfsg-0ubuntu1.6) ...
Setting up libcephfs2 (17.2.7-0ubuntu0.22.04.1) ...
Setting up samba-common-bin (2:4.15.13+dfsg-0ubuntu1.6) ...
Checking smb.conf with testparm
Load smb config files from /etc/samba/smb.conf
Loaded services file OK.
Weak crypto is allowed

WARNING: The 'netbios name' is too long (max. 15 chars).

Server role: ROLE_STANDALONE

Done
Setting up libgfrpc0:amd64 (10.1-1ubuntu0.2) ...
Setting up samba (2:4.15.13+dfsg-0ubuntu1.6) ...
Samba is not being run as an AD Domain Controller: Masking samba-ad-dc.service
Please ignore the following error about deb-systemd-helper not finding those services.
(samba-ad-dc.service masked)
Created symlink /etc/systemd/system/multi-user.target.wants/nmbd.service → /lib/systemd/system/nmbd.service.
Failed to preset unit: Unit file /etc/systemd/system/samba-ad-dc.service is masked.
/usr/bin/deb-systemd-helper: error: systemctl preset failed on samba-ad-dc.service: No such file or directory
Created symlink /etc/systemd/system/multi-user.target.wants/smbd.service → /lib/systemd/system/smbd.service.
samba-ad-dc.service is a disabled or a static unit, not starting it.
Setting up libgfapi0:amd64 (10.1-1ubuntu0.2) ...
Processing triggers for ufw (0.36.1-4ubuntu0.1) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.8) ...

rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ sudo smbpasswd -a rootroot
New SMB password:
Retype new SMB password:
Added user rootroot.
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ 
rootroot@rootroot-virtual-machine:~$ cd /etc/s
samba/             security/          sensors.d/         skel/              speech-dispatcher/ ssl/               sysctl.d/          
sane.d/            selinux/           sgml/              snmp/              ssh/               sudoers.d/         systemd/           
rootroot@rootroot-virtual-machine:~$ cd /etc/samba/
rootroot@rootroot-virtual-machine:/etc/samba$ ll
total 36
drwxr-xr-x   3 root root  4096  7月  2 12:12 ./
drwxr-xr-x 133 root root 12288  7月  2 12:13 ../
-rw-r--r--   1 root root     8  1月  6 05:23 gdbcommands
-rw-r--r--   1 root root  8950  7月  2 12:12 smb.conf
drwxr-xr-x   2 root root  4096  1月  6 05:23 tls/
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ sudo cp smb.conf smb.conf.bak1
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ ll
total 48
drwxr-xr-x   3 root root  4096  7月  2 12:14 ./
drwxr-xr-x 133 root root 12288  7月  2 12:13 ../
-rw-r--r--   1 root root     8  1月  6 05:23 gdbcommands
-rw-r--r--   1 root root  8950  7月  2 12:12 smb.conf
-rw-r--r--   1 root root  8950  7月  2 12:14 smb.conf.bak1
drwxr-xr-x   2 root root  4096  1月  6 05:23 tls/
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ sudo echo "[rootroot]" >> smb.conf
sudo echo "comment=rootroot Shared Folder" >> smb.conf
sudo echo "path=/" >> smb.conf
sudo echo "#public=yes" >> smb.conf
sudo echo "writable=yes" >> smb.conf
sudo echo "#readonly=yes" >> smb.conf
sudo echo "valid users=rootroot" >> smb.conf
sudo echo "create mask=0700" >> smb.conf
sudo echo "directory mask=0700" >> smb.conf
sudo echo "available=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
rootroot@rootroot-virtual-machine:/etc/samba$ sudo echo "[rootroot]" >> smb.conf
sudo echo "comment=rootroot Shared Folder" >> smb.conf
sudo echo "path=/" >> smb.conf
sudo echo "#public=yes" >> smb.conf
sudo echo "writable=yes" >> smb.conf
sudo echo "#readonly=yes" >> smb.conf
sudo echo "valid users=rootroot" >> smb.conf
sudo echo "create mask=0700" >> smb.conf
sudo echo "directory mask=0700" >> smb.conf
sudo echo "available=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
-bash: smb.conf: Permission denied
rootroot@rootroot-virtual-machine:/etc/samba$ sudo chmod 777 smb.conf
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ sudo echo "[rootroot]" >> smb.conf
sudo echo "comment=rootroot Shared Folder" >> smb.conf
sudo echo "path=/" >> smb.conf
sudo echo "#public=yes" >> smb.conf
sudo echo "writable=yes" >> smb.conf
sudo echo "#readonly=yes" >> smb.conf
sudo echo "valid users=rootroot" >> smb.conf
sudo echo "create mask=0700" >> smb.conf
sudo echo "directory mask=0700" >> smb.conf
sudo echo "available=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
rootroot@rootroot-virtual-machine:/etc/samba$ sudo echo "[rootroot]" >> smb.conf
sudo echo "comment=rootroot Shared Folder" >> smb.conf
sudo echo "path=/" >> smb.conf
sudo echo "#public=yes" >> smb.conf
sudo echo "writable=yes" >> smb.conf
sudo echo "#readonly=yes" >> smb.conf
sudo echo "valid users=rootroot" >> smb.conf
sudo echo "create mask=0700" >> smb.conf
sudo echo "directory mask=0700" >> smb.conf
sudo echo "available=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
sudo echo "browseable=yes" >> smb.conf
rootroot@rootroot-virtual-machine:/etc/samba$ ls -l
total 32
-rw-r--r-- 1 root root    8  1月  6 05:23 gdbcommands
-rwxrwxrwx 1 root root 9125  7月  2 12:15 smb.conf
-rw-r--r-- 1 root root 8950  7月  2 12:14 smb.conf.bak1
drwxr-xr-x 2 root root 4096  1月  6 05:23 tls
rootroot@rootroot-virtual-machine:/etc/samba$ diff smb.conf smb.conf.bak1 
243,253d242
< [rootroot]
< comment=rootroot Shared Folder
< path=/
< #public=yes
< writable=yes
< #readonly=yes
< valid users=rootroot
< create mask=0700
< directory mask=0700
< available=yes
< browseable=yes
rootroot@rootroot-virtual-machine:/etc/samba$ 
rootroot@rootroot-virtual-machine:/etc/samba$ cd ~
rootroot@rootroot-virtual-machine:~$ cd /usr/bin/
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ ls -l py*~
ls: cannot access 'py*~': No such file or directory
rootroot@rootroot-virtual-machine:/usr/bin$ ls -l py*
-rwxr-xr-x 1 root root    7813  8月 18  2022 py3clean
-rwxr-xr-x 1 root root   13191  8月 18  2022 py3compile
lrwxrwxrwx 1 root root      31  7月  2  2024 py3versions -> ../share/python3/py3versions.py
-rwxr-xr-x 1 root root    4124  7月 28  2021 pyclean
-rwxr-xr-x 1 root root   11867  7月 28  2021 pycompile
lrwxrwxrwx 1 root root       8  7月 28  2021 pydoc2 -> pydoc2.7
-rwxr-xr-x 1 root root      79 10月 16  2023 pydoc2.7
lrwxrwxrwx 1 root root       9  7月  2  2024 pydoc3 -> pydoc3.10
-rwxr-xr-x 1 root root      79 11月 20  2023 pydoc3.10
lrwxrwxrwx 1 root root      12  7月 28  2021 pygettext2 -> pygettext2.7
-rwxr-xr-x 1 root root   22082 10月 16  2023 pygettext2.7
lrwxrwxrwx 1 root root      13  7月  2  2024 pygettext3 -> pygettext3.10
-rwxr-xr-x 1 root root   24235  6月  7  2023 pygettext3.10
-rwxr-xr-x 1 root root     970  2月 15  2022 pygmentize
lrwxrwxrwx 1 root root       9  7月 28  2021 python2 -> python2.7
-rwxr-xr-x 1 root root 3588440 10月 16  2023 python2.7
lrwxrwxrwx 1 root root      10  7月  2  2024 python3 -> python3.10
-rwxr-xr-x 1 root root 5904904 11月 20  2023 python3.10
-rwxr-xr-x 1 root root     960  1月 25  2023 python3-futurize
-rwxr-xr-x 1 root root     964  1月 25  2023 python3-pasteurize
lrwxrwxrwx 1 root root      29  7月 28  2021 pyversions -> ../share/python/pyversions.py
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ python
Command 'python' not found, did you mean:
  command 'python3' from deb python3
  command 'python' from deb python-is-python3
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ sudo ln -s python python2
ln: failed to create symbolic link 'python2': File exists
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ sudo ln -s python2 python
rootroot@rootroot-virtual-machine:/usr/bin$ ll py*
-rwxr-xr-x 1 root root    7813  8月 18  2022 py3clean*
-rwxr-xr-x 1 root root   13191  8月 18  2022 py3compile*
lrwxrwxrwx 1 root root      31  7月  2  2024 py3versions -> ../share/python3/py3versions.py*
-rwxr-xr-x 1 root root    4124  7月 28  2021 pyclean*
-rwxr-xr-x 1 root root   11867  7月 28  2021 pycompile*
lrwxrwxrwx 1 root root       8  7月 28  2021 pydoc2 -> pydoc2.7*
-rwxr-xr-x 1 root root      79 10月 16  2023 pydoc2.7*
lrwxrwxrwx 1 root root       9  7月  2  2024 pydoc3 -> pydoc3.10*
-rwxr-xr-x 1 root root      79 11月 20  2023 pydoc3.10*
lrwxrwxrwx 1 root root      12  7月 28  2021 pygettext2 -> pygettext2.7*
-rwxr-xr-x 1 root root   22082 10月 16  2023 pygettext2.7*
lrwxrwxrwx 1 root root      13  7月  2  2024 pygettext3 -> pygettext3.10*
-rwxr-xr-x 1 root root   24235  6月  7  2023 pygettext3.10*
-rwxr-xr-x 1 root root     970  2月 15  2022 pygmentize*
lrwxrwxrwx 1 root root       7  7月  2 12:16 python -> python2*
lrwxrwxrwx 1 root root       9  7月 28  2021 python2 -> python2.7*
-rwxr-xr-x 1 root root 3588440 10月 16  2023 python2.7*
lrwxrwxrwx 1 root root      10  7月  2  2024 python3 -> python3.10*
-rwxr-xr-x 1 root root 5904904 11月 20  2023 python3.10*
-rwxr-xr-x 1 root root     960  1月 25  2023 python3-futurize*
-rwxr-xr-x 1 root root     964  1月 25  2023 python3-pasteurize*
lrwxrwxrwx 1 root root      29  7月 28  2021 pyversions -> ../share/python/pyversions.py*
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ python
Python 2.7.18 (default, Oct 15 2023, 16:43:11) 
[GCC 11.4.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
rootroot@rootroot-virtual-machine:/usr/bin$ python3
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
rootroot@rootroot-virtual-machine:/usr/bin$ python2
Python 2.7.18 (default, Oct 15 2023, 16:43:11) 
[GCC 11.4.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ ls -l
total 219244
-rwxr-xr-x 1 root root       51648  2月  8 11:46 '['
-rwxr-xr-x 1 root root          96 10月 16  2023  2to3-2.7
-rwxr-xr-x 1 root root       35344  6月  6  2023  aa-enabled
-rwxr-xr-x 1 root root       35344  6月  6  2023  aa-exec
-rwxr-xr-x 1 root root       31248  6月  6  2023  aa-features-abi
-rwxr-xr-x 1 root root       22912  1月 12  2022  aconnect
-rwxr-xr-x 1 root root       19016  1月 25  2022  acpi_listen
-rwxr-xr-x 1 root root       14478 10月 24  2023  add-apt-repository
-rwxr-xr-x 1 root root       14720  4月  9 23:32  addpart
lrwxrwxrwx 1 root root          26  1月 23 23:08  addr2line -> x86_64-linux-gnu-addr2line
-rwxr-xr-x 1 root root      150376  3月 25  2022  airscan-discover
-rwxr-xr-x 1 root root       43456  1月 12  2022  alsabat
-rwxr-xr-x 1 root root       85328  1月 12  2022  alsaloop
-rwxr-xr-x 1 root root       86312  1月 12  2022  alsamixer
-rwxr-xr-x 1 root root       76160  1月 12  2022  alsatplg
-rwxr-xr-x 1 root root       31576  1月 12  2022  alsaucm
-rwxr-xr-x 1 root root       31112  1月 12  2022  amidi
-rwxr-xr-x 1 root root       63952  1月 12  2022  amixer
-rwxr-xr-x 1 root root         274  3月 23  2022  apg
-rwxr-xr-x 1 root root       26784  3月 23  2022  apgbfm
-rwxr-xr-x 1 root root       84400  1月 12  2022  aplay
-rwxr-xr-x 1 root root       27016  1月 12  2022  aplaymidi
-rwxr-xr-x 1 root root        2568  4月 14  2023  apport-bug
-rwxr-xr-x 1 root root       13360  4月 14  2023  apport-cli
lrwxrwxrwx 1 root root          10  7月  2  2024  apport-collect -> apport-bug
-rwxr-xr-x 1 root root        2070  4月 14  2023  apport-unpack
-rwxr-xr-x 1 root root       14648  3月 25  2022  appres
-rwxr-xr-x 1 root root      121064  2月 24  2022  appstreamcli
lrwxrwxrwx 1 root root           6  7月  2  2024  apropos -> whatis
-rwxr-xr-x 1 root root       18824  2月 13 23:39  apt
lrwxrwxrwx 1 root root          18  7月  2  2024  apt-add-repository -> add-apt-repository
-rwxr-xr-x 1 root root       84448  2月 13 23:39  apt-cache
-rwxr-xr-x 1 root root       27104  2月 13 23:39  apt-cdrom
-rwxr-xr-x 1 root root       27024  2月 13 23:39  apt-config
-rwxr-xr-x 1 root root        1039  3月 17  2022  aptdcon
-rwxr-xr-x 1 root root       23008  2月 13 23:39  apt-extracttemplates
-rwxr-xr-x 1 root root      236008  2月 13 23:39  apt-ftparchive
-rwxr-xr-x 1 root root       51680  2月 13 23:39  apt-get
-rwxr-xr-x 1 root root       28173  2月 13 23:39  apt-key
-rwxr-xr-x 1 root root       51680  2月 13 23:39  apt-mark
-rwxr-xr-x 1 root root       39320  2月 13 23:39  apt-sortpkgs
-rwxr-xr-x 1 root root         273  5月 20  2016  apturl
-rwxr-xr-x 1 root root        1544  3月 23  2022  apturl-gtk
lrwxrwxrwx 1 root root          19  1月 23 23:08  ar -> x86_64-linux-gnu-ar
-rwxr-xr-x 1 root root       31240  2月  8 11:46  arch
lrwxrwxrwx 1 root root           5  7月  2  2024  arecord -> aplay
-rwxr-xr-x 1 root root       31120  1月 12  2022  arecordmidi
-rwxr-xr-x 1 root root       14656  3月 20  2023  arm2hpdl
lrwxrwxrwx 1 root root          19  1月 23 23:08  as -> x86_64-linux-gnu-as
-rwxr-xr-x 1 root root       27008  1月 12  2022  aseqdump
-rwxr-xr-x 1 root root       22968  1月 12  2022  aseqnet
-rwxr-xr-x 1 root root      145904  3月 23  2022  aspell
-rwxr-xr-x 1 root root        2044  3月 23  2022  aspell-import
-rwxr-xr-x 1 root root       14640  3月 25  2022  atobm
-rwxr-xr-x 1 root root       14640  3月 23  2022  attr
-rwxr-xr-x 1 root root       31120 11月 17  2023  avahi-browse
lrwxrwxrwx 1 root root          12  7月  2  2024  avahi-browse-domains -> avahi-browse
-rwxr-xr-x 1 root root       27016 11月 17  2023  avahi-publish
lrwxrwxrwx 1 root root          13  7月  2  2024  avahi-publish-address -> avahi-publish
lrwxrwxrwx 1 root root          13  7月  2  2024  avahi-publish-service -> avahi-publish
-rwxr-xr-x 1 root root       22920 11月 17  2023  avahi-resolve
lrwxrwxrwx 1 root root          13  7月  2  2024  avahi-resolve-address -> avahi-resolve
lrwxrwxrwx 1 root root          13  7月  2  2024  avahi-resolve-host-name -> avahi-resolve
-rwxr-xr-x 1 root root       14728 11月 17  2023  avahi-set-host-name
-rwxr-xr-x 1 root root       22792  6月  5 18:10  avinfo
lrwxrwxrwx 1 root root          21  7月  2  2024  awk -> /etc/alternatives/awk
-rwxr-xr-x 1 root root       92544  1月 12  2022  axfer
-rwxr-xr-x 1 root root       51728  2月  8 11:46  b2sum
-rwxr-xr-x 1 root root      244304  2月 15  2022  baobab
-rwxr-xr-x 1 root root       35336  2月  8 11:46  base32
-rwxr-xr-x 1 root root       35336  2月  8 11:46  base64
-rwxr-xr-x 1 root root       35336  2月  8 11:46  basename
-rwxr-xr-x 1 root root       47624  2月  8 11:46  basenc
-rwxr-xr-x 1 root root     1396520  3月 14 19:31  bash
-rwxr-xr-x 1 root root        6818  3月 14 19:31  bashbug
-rwxr-xr-x 1 root root       93000  3月 23  2022  bc
-rwxr-xr-x 1 root root       43272  3月 25  2022  bdftopcf
-rwxr-xr-x 1 root root       14488  3月 25  2022  bdftruncate
-rwxr-xr-x 1 root root      504624  3月 23  2022  bison
-rwxr-xr-x 1 root root        4214  3月 23  2022  bison.yacc
-rwxr-xr-x 1 root root      108864  3月 25  2022  bitmap
-rwxr-xr-x 1 root root       39144  6月  5 18:10  bluemoon
-rwxr-xr-x 1 root root      281392  6月  5 18:10  bluetoothctl
-rwxr-xr-x 1 root root       35224  4月  9  2022  bluetooth-sendto
-rwxr-xr-x 1 root root       14664  3月 25  2022  bmtoa
-rwxr-xr-x 1 root root      125936  2月  7  2022  boltctl
-rwxr-xr-x 1 root root       72184 11月 22  2023  bootctl
-rwxr-xr-x 1 root root     1036328  6月 28  2022  brltty
-rwxr-xr-x 1 root root      293608  6月 28  2022  brltty-ctb
-rwxr-xr-x 1 root root      244344  6月 28  2022  brltty-trtxt
-rwxr-xr-x 1 root root      277312  6月 28  2022  brltty-ttb
-rwxr-xr-x 1 root root      121144  5月  8 05:30  broadwayd
lrwxrwxrwx 1 root root           8  7月  2  2024  browse -> xdg-open
-rwxr-xr-x 1 root root       30952  6月  5 18:10  btattach
-rwxr-xr-x 1 root root      168960  6月  5 18:10  btmgmt
-rwxr-xr-x 1 root root      870712  6月  5 18:10  btmon
-rwxr-xr-x 1 root root       39296  3月 23  2022  bunzip2
-rwxr-xr-x 1 root root       92664 11月 22  2023  busctl
-rwxr-xr-x 1 root root     2193264  2月  5  2022  busybox
-rwxr-xr-x 1 root root       72160  2月 26  2022  bwrap
-rwxr-xr-x 1 root root       39296  3月 23  2022  bzcat
lrwxrwxrwx 1 root root           6  7月  2  2024  bzcmp -> bzdiff
-rwxr-xr-x 1 root root        2225  3月 23  2022  bzdiff
lrwxrwxrwx 1 root root           6  7月  2  2024  bzegrep -> bzgrep
-rwxr-xr-x 1 root root        4893 11月 27  2021  bzexe
lrwxrwxrwx 1 root root           6  7月  2  2024  bzfgrep -> bzgrep
-rwxr-xr-x 1 root root        3775  3月 23  2022  bzgrep
-rwxr-xr-x 1 root root       39296  3月 23  2022  bzip2
-rwxr-xr-x 1 root root       14640  3月 23  2022  bzip2recover
lrwxrwxrwx 1 root root           6  7月  2  2024  bzless -> bzmore
-rwxr-xr-x 1 root root        1297  3月 23  2022  bzmore
lrwxrwxrwx 1 root root          21  7月  2 11:54  c++ -> /etc/alternatives/c++
lrwxrwxrwx 1 root root          21  7月  2 11:50  c89 -> /etc/alternatives/c89
-rwxr-xr-x 1 root root         428 11月 18  2020  c89-gcc
lrwxrwxrwx 1 root root          21  7月  2 11:50  c99 -> /etc/alternatives/c99
-rwxr-xr-x 1 root root         454 11月 18  2020  c99-gcc
-rwxr-xr-x 1 root root        1669  3月 24  2022  caca-config
-rwxr-xr-x 1 root root       27016  3月 25  2022  calibrate_ppa
-rwxr-xr-x 1 root root       18656  1月 11  2023  canberra-gtk-play
-rwxr-xr-x 1 root root       14648  6月 27 21:39  cancel
lrwxrwxrwx 1 root root           3  7月  2  2024  captoinfo -> tic
-rwxr-xr-x 1 root root       35288  2月  8 11:46  cat
-rwxr-xr-x 1 root root       35592  3月 18  2022  catman
-rwxr-xr-x 1 root root         853 12月 11  2021  cautious-launcher
lrwxrwxrwx 1 root root          20  7月  2 11:50  cc -> /etc/alternatives/cc
-rwxr-xr-x 1 root root       26920  2月 22  2022  cd-create-profile
-rwxr-xr-x 1 root root       26920  2月 22  2022  cd-fix-profile
-rwxr-xr-x 1 root root       14632  2月 22  2022  cd-iccdump
-rwxr-xr-x 1 root root       22824  2月 22  2022  cd-it8
lrwxrwxrwx 1 root root          24  1月 23 23:08  c++filt -> x86_64-linux-gnu-c++filt
-rwxr-xr-x 1 root root       22832  8月 29  2021  chacl
-rwxr-sr-x 1 root shadow     72184  2月  6 20:54  chage
lrwxrwxrwx 1 root root          10  7月  2  2024  chardet -> chardetect
-rwxr-xr-x 1 root root         965 12月 31  2020  chardetect
-rwxr-xr-x 1 root root       14656  6月  2  2022  chattr
-rwxr-xr-x 1 root root       59912  2月  8 11:46  chcon
-rwxr-xr-x 1 root root        2771 12月 29  2022  check-language-support
-rwxr-xr-x 1 root root      272784  3月 23  2022  cheese
-rwsr-xr-x 1 root root       72712  2月  6 20:54  chfn
-rwxr-xr-x 1 root root       55816  2月  8 11:46  chgrp
-rwxr-xr-x 1 root root       55816  2月  8 11:46  chmod
-rwxr-xr-x 1 root root       22912  4月  9 23:32  choom
-rwxr-xr-x 1 root root       59912  2月  8 11:46  chown
-rwxr-xr-x 1 root root       27008  4月  9 23:32  chrt
-rwsr-xr-x 1 root root       44808  2月  6 20:54  chsh
-rwxr-xr-x 1 root root       14568 12月 16  2022  chvt
-rwxr-xr-x 1 root root       35160  6月  5 18:10  ciptool
-rwxr-xr-x 1 root root      149817 11月 23  2021  ckbcomp
-rwxr-xr-x 1 root root       35240  2月  8 11:46  cksum
-rwxr-xr-x 1 root root       14656  5月 17  2023  clear
-rwxr-xr-x 1 root root       14568  3月 14 19:31  clear_console
-rwxr-xr-x 1 root root       43408  3月 23  2022  cmp
-rwxr-xr-x 1 root root       14488 12月 16  2022  codepage
-rwxr-xr-x 1 root root       22920  4月  9 23:32  col
-rwxr-xr-x 1 root root       14728  4月  9 23:32  colcrt
-rwxr-xr-x 1 root root       59688  2月 22  2022  colormgr
-rwxr-xr-x 1 root root       14728  4月  9 23:32  colrm
-rwxr-xr-x 1 root root       35208  4月  9 23:32  column
-rwxr-xr-x 1 root root       35344  2月  8 11:46  comm
lrwxrwxrwx 1 root root          11  7月  2  2024  compose -> run-mailcap
-rwxr-xr-x 1 root root       22928  1月  6  2022  convert-dtsv0
-rwxr-xr-x 1 root root       15375 11月 23  2023  corelist
-rwxr-xr-x 1 root root      141832  2月  8 11:46  cp
-rwxr-xr-x 1 root root        8360 11月 23  2023  cpan
-rwxr-xr-x 1 root root        8381 11月 23  2023  cpan5.34-x86_64-linux-gnu
-rwxr-xr-x 1 root root      145040  4月 28 20:30  cpio
lrwxrwxrwx 1 root root           6  7月  2  2024  cpp -> cpp-11
lrwxrwxrwx 1 root root          23  7月  2  2024  cpp-11 -> x86_64-linux-gnu-cpp-11
-rwxr-xr-x 1 root root        6963  6月  5 11:28  c_rehash
-rwxr-sr-x 1 root crontab    39568  3月 23  2022  crontab
-rwxr-xr-x 1 root root      109064  2月  8 11:46  csplit
lrwxrwxrwx 1 root root           6  7月  2  2024  ctstat -> lnstat
-rwxr-xr-x 1 root root       63872  6月 27 21:39  cupstestppd
-rwxr-xr-x 1 root root      260328  3月 19 20:16  curl
-rwxr-xr-x 1 root root       39432  2月  8 11:46  cut
-rwxr-xr-x 1 root root       14480  2月 18  2022  cvt
-rwxr-xr-x 1 root root      303512  4月  4  2023  cvtsudoers
-rwxr-xr-x 1 root root      125688  3月 23  2022  dash
-rwxr-xr-x 1 root root      104968  2月  8 11:46  date
-rwxr-xr-x 1 root root       14632 10月 25  2022  dbus-cleanup-sockets
-rwxr-xr-x 1 root root      232776 10月 25  2022  dbus-daemon
-rwxr-xr-x 1 root root       26920 10月 25  2022  dbus-monitor
-rwxr-xr-x 1 root root       14632 10月 25  2022  dbus-run-session
-rwxr-xr-x 1 root root       26920 10月 25  2022  dbus-send
-rwxr-xr-x 1 root root       14632 10月 25  2022  dbus-update-activation-environment
-rwxr-xr-x 1 root root       14632 10月 25  2022  dbus-uuidgen
-rwxr-xr-x 1 root root       27160  1月  6 05:23  dbwrap_tool
-rwxr-xr-x 1 root root       26928  5月 17  2023  dbxtool
-rwxr-xr-x 1 root root       47352  3月 23  2022  dc
-rwxr-xr-x 1 root root       59608  2月  3  2022  dconf
-rwxr-xr-x 1 root root       68120  2月  8 11:46  dd
-rwxr-xr-x 1 root root       18752  3月 20  2023  ddstdecode
-rwxr-xr-x 1 root root       14568 12月 16  2022  deallocvt
-rwxr-xr-x 1 root root        2859  2月 20  2022  debconf
-rwxr-xr-x 1 root root       11541  2月 20  2022  debconf-apt-progress
-rwxr-xr-x 1 root root         608  2月 20  2022  debconf-communicate
-rwxr-xr-x 1 root root        1719  2月 20  2022  debconf-copydb
-rwxr-xr-x 1 root root         647  2月 20  2022  debconf-escape
-rwxr-xr-x 1 root root        2995  2月 20  2022  debconf-set-selections
-rwxr-xr-x 1 root root        1827  2月 20  2022  debconf-show
-rwxr-xr-x 1 root root       23504 11月 28  2023  debian-distro-info
-rwxr-xr-x 1 root root       21394 12月  8  2021  deb-systemd-helper
-rwxr-xr-x 1 root root        6156  2月 16  2022  deb-systemd-invoke
-rwxr-xr-x 1 root root      330248  5月 20  2022  deja-dup
-rwxr-xr-x 1 root root       14720  4月  9 23:32  delpart
-rwxr-xr-x 1 root root       45896  4月 12 05:11  delv
lrwxrwxrwx 1 root root          20  7月  2  2024  desktop-file-edit -> desktop-file-install
-rwxr-xr-x 1 root root       98752  3月 23  2022  desktop-file-install
-rwxr-xr-x 1 root root       78528  3月 23  2022  desktop-file-validate
-rwxr-xr-x 1 root root      187672  3月 24  2022  devdump
-rwxr-xr-x 1 root root       85072  2月  8 11:46  df
-rwxr-xr-x 1 root root      112944  5月 17  2023  dfu-tool
-rwxr-xr-x 1 root root        4414 11月 11  2021  dh_bash-completion
-rwxr-xr-x 1 root root        9444  2月 27  2019  dh_installxmlcatalogs
-rwxr-xr-x 1 root root        1541  5月 16  2020  dh_perl_openssl
-rwxr-xr-x 1 root root      133680  3月 23  2022  diff
-rwxr-xr-x 1 root root       55824  3月 23  2022  diff3
-rwxr-xr-x 1 root root      150352  4月 12 05:11  dig
-rwxr-xr-x 1 root root      138216  2月  8 11:46  dir
-rwxr-xr-x 1 root root       39440  2月  8 11:46  dircolors
-rwxr-xr-x 1 root root      443408  7月  5  2022  dirmngr
-rwxr-xr-x 1 root root       56240  7月  5  2022  dirmngr-client
-rwxr-xr-x 1 root root       31112  2月  8 11:46  dirname
-rwxr-xr-x 1 root root       17143 11月 26  2006  dirsplit
lrwxrwxrwx 1 root root          18  7月  2  2024  distro-info -> ubuntu-distro-info
-rwxr-xr-x 1 root root       72304  4月  9 23:32  dmesg
lrwxrwxrwx 1 root root           8  7月  2  2024  dnsdomainname -> hostname
lrwxrwxrwx 1 root root           8  7月  2  2024  domainname -> hostname
-rwxr-xr-x 1 root root       10675  2月 13 21:47  do-release-upgrade
-rwxr-xr-x 1 root root      318144  2月 23 22:53  dpkg
-rwxr-xr-x 1 root root       13832  2月 23 22:53  dpkg-architecture
-rwxr-xr-x 1 root root        7565  2月 23 22:53  dpkg-buildflags
-rwxr-xr-x 1 root root       32425  2月 23 22:53  dpkg-buildpackage
-rwxr-xr-x 1 root root        7624  2月 23 22:53  dpkg-checkbuilddeps
-rwxr-xr-x 1 root root      137720  2月 23 22:53  dpkg-deb
-rwxr-xr-x 1 root root        2782  2月 23 22:53  dpkg-distaddfile
-rwxr-xr-x 1 root root      121336  2月 23 22:53  dpkg-divert
-rwxr-xr-x 1 root root       17106  2月 23 22:53  dpkg-genbuildinfo
-rwxr-xr-x 1 root root       17687  2月 23 22:53  dpkg-genchanges
-rwxr-xr-x 1 root root       14580  2月 23 22:53  dpkg-gencontrol
-rwxr-xr-x 1 root root       10902  2月 23 22:53  dpkg-gensymbols
-rwxr-xr-x 1 root root       21209  2月 23 22:53  dpkg-maintscript-helper
-rwxr-xr-x 1 root root        8903  2月 23 22:53  dpkg-mergechangelogs
-rwxr-xr-x 1 root root        6789  2月 23 22:53  dpkg-name
-rwxr-xr-x 1 root root        4947  2月 23 22:53  dpkg-parsechangelog
-rwxr-xr-x 1 root root      141848  2月 23 22:53  dpkg-query
-rwxr-xr-x 1 root root        4189  2月 23 22:53  dpkg-realpath
-rwxr-xr-x 1 root root        8705  2月 23 22:53  dpkg-scanpackages
-rwxr-xr-x 1 root root        9174  2月 23 22:53  dpkg-scansources
-rwxr-xr-x 1 root root       31700  2月 23 22:53  dpkg-shlibdeps
-rwxr-xr-x 1 root root       23106  2月 23 22:53  dpkg-source
-rwxr-xr-x 1 root root      100872  2月 23 22:53  dpkg-split
-rwxr-xr-x 1 root root       47368  2月 23 22:53  dpkg-statoverride
-rwxr-xr-x 1 root root       43424  2月 23 22:53  dpkg-trigger
-rwxr-xr-x 1 root root        3262  2月 23 22:53  dpkg-vendor
lrwxrwxrwx 1 root root          29  7月  2  2024  driverless -> ../lib/cups/driver/driverless
lrwxrwxrwx 1 root root          33  7月  2  2024  driverless-fax -> ../lib/cups/driver/driverless-fax
-rwxr-xr-x 1 root root      140536  1月  6  2022  dtc
-rwxr-xr-x 1 root root         680  1月  6  2022  dtdiff
-rwxr-xr-x 1 root root      150024  2月  8 11:46  du
-rwxr-xr-x 1 root root      162520 12月 16  2022  dumpkeys
-rwxr-xr-x 1 root root       14640  1月  6 05:23  dumpmscat
-rwxr-xr-x 1 root root        5338  3月 18  2022  duplicity
-rwxr-xr-x 1 root root        1007  6月  4 12:54  dvipdf
lrwxrwxrwx 1 root root          20  1月 23 23:08  dwp -> x86_64-linux-gnu-dwp
-rwxr-xr-x 1 root root       35128  2月  8 11:46  echo
-rwxr-xr-x 1 root root       55800  2月 13  2022  ed
lrwxrwxrwx 1 root root          11  7月  2  2024  edit -> run-mailcap
lrwxrwxrwx 1 root root          24  7月  2  2024  editor -> /etc/alternatives/editor
-rwxr-xr-x 1 root root       74432  3月 25  2022  editres
-rwxr-xr-x 1 root root       22680  8月  3  2021  efibootdump
-rwxr-xr-x 1 root root       44312  8月  3  2021  efibootmgr
-rwxr-xr-x 1 root root          28  3月 23  2022  egrep
-rwxr-xr-x 1 root root       43240  4月  9 23:32  eject
lrwxrwxrwx 1 root root          24  1月 23 23:08  elfedit -> x86_64-linux-gnu-elfedit
-rwxr-xr-x 1 root root       41819 11月 23  2023  enc2xs
-rwxr-xr-x 1 root root        3078 11月 23  2023  encguess
-rwxr-xr-x 1 root root       26920  2月  7  2022  enchant-2
-rwxr-xr-x 1 root root       18728  2月  7  2022  enchant-lsmod-2
-rwxr-xr-x 1 root root       43976  2月  8 11:46  env
-rwxr-xr-x 1 root root       35200  3月 25  2022  envsubst
-rwxr-xr-x 1 root root       18808  3月 21  2022  eog
-rwxr-xr-x 1 root root         639  6月  4 12:54  eps2eps
-rwxr-xr-x 1 root root      192968  3月 23  2022  eqn
-rwxr-xr-x 1 root root       14496  3月 25  2022  esc-m
-rwxr-xr-x 1 root root       26784  6月 28  2022  eutp
-rwxr-xr-x 1 root root      532200 10月 20  2023  evince
-rwxr-xr-x 1 root root       72208 10月 20  2023  evince-previewer
-rwxr-xr-x 1 root root       18824 10月 20  2023  evince-thumbnailer
lrwxrwxrwx 1 root root          20  7月  2  2024  ex -> /etc/alternatives/ex
-rwxr-xr-x 1 root root       35360  2月  8 11:46  expand
-rwxr-sr-x 1 root shadow     23136  2月  6 20:54  expiry
-rwxr-xr-x 1 root root      104872  2月  8 11:46  expr
-rwxr-xr-x 1 root root       72200  2月  8 11:46  factor
-rwxr-xr-x 1 root root       23136  2月  6 20:54  faillog
-rwxr-xr-x 1 root root       31120  3月  6  2022  faked-sysv
-rwxr-xr-x 1 root root       31112  3月  6  2022  faked-tcp
lrwxrwxrwx 1 root root          26  7月  2 11:54  fakeroot -> /etc/alternatives/fakeroot
-rwxr-xr-x 1 root root        3995  3月  6  2022  fakeroot-sysv
-rwxr-xr-x 1 root root        3990  3月  6  2022  fakeroot-tcp
-rwxr-xr-x 1 root root       22912  4月  9 23:32  fallocate
-rwxr-xr-x 1 root root       26936  2月  8 11:46  false
-rwxr-xr-x 1 root root       22760  3月 23  2022  fc-cache
-rwxr-xr-x 1 root root       18664  3月 23  2022  fc-cat
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-conflist
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-list
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-match
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-pattern
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-query
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-scan
-rwxr-xr-x 1 root root       14568  3月 23  2022  fc-validate
-rwxr-xr-x 1 root root       18824  1月  6  2022  fdtdump
-rwxr-xr-x 1 root root       18824  1月  6  2022  fdtget
-rwxr-xr-x 1 root root       14728  1月  6  2022  fdtoverlay
-rwxr-xr-x 1 root root       22920  1月  6  2022  fdtput
-rwxr-xr-x 1 root root       14568 12月 16  2022  fgconsole
-rwxr-xr-x 1 root root          28  3月 23  2022  fgrep
-rwxr-xr-x 1 root root       27200  9月 12  2023  file
-rwxr-xr-x 1 root root       26840  2月 10  2022  file2brl
-rwxr-xr-x 1 root root      541544  3月 21  2022  file-roller
-rwxr-xr-x 1 root root       22960  4月  9 23:32  fincore
-rwxr-xr-x 1 root root      282088  3月 23  2022  find
-rwxr-xr-x 1 root root       65136  4月  9 23:32  findmnt
-rwxr-xr-x 1 root root        2377  2月 22  2022  firefox
-rwxr-xr-x 1 root root      414904  3月 23  2022  flex
lrwxrwxrwx 1 root root           4  3月 23  2022  flex++ -> flex
-rwxr-xr-x 1 root root       23024  4月  9 23:32  flock
-rwxr-xr-x 1 root root       39432  2月  8 11:46  fmt
-rwxr-xr-x 1 root root       35336  2月  8 11:46  fold
-rwxr-xr-x 1 root root       39080  3月 25  2022  fonttosfnt
-rwxr-xr-x 1 root root       31704  3月 20  2023  foo2ddst
-rwxr-xr-x 1 root root       17268  3月 20  2023  foo2ddst-wrapper
-rwxr-xr-x 1 root root       31736  3月 20  2023  foo2hbpl2
-rwxr-xr-x 1 root root       18343  3月 20  2023  foo2hbpl2-wrapper
-rwxr-xr-x 1 root root       44024  3月 20  2023  foo2hiperc
-rwxr-xr-x 1 root root       18541  3月 20  2023  foo2hiperc-wrapper
-rwxr-xr-x 1 root root       39896  3月 20  2023  foo2hp
-rwxr-xr-x 1 root root       19204  3月 20  2023  foo2hp2600-wrapper
-rwxr-xr-x 1 root root       43976  3月 20  2023  foo2lava
-rwxr-xr-x 1 root root       20083  3月 20  2023  foo2lava-wrapper
-rwxr-xr-x 1 root root       39824  3月 20  2023  foo2oak
-rwxr-xr-x 1 root root       17871  3月 20  2023  foo2oak-wrapper
-rwxr-xr-x 1 root root       44064  3月 20  2023  foo2qpdl
-rwxr-xr-x 1 root root       19514  3月 20  2023  foo2qpdl-wrapper
-rwxr-xr-x 1 root root       31672  3月 20  2023  foo2slx
-rwxr-xr-x 1 root root       17603  3月 20  2023  foo2slx-wrapper
-rwxr-xr-x 1 root root       31744  3月 20  2023  foo2xqx
-rwxr-xr-x 1 root root       17572  3月 20  2023  foo2xqx-wrapper
-rwxr-xr-x 1 root root       44064  3月 20  2023  foo2zjs
lrwxrwxrwx 1 root root           5  7月  2  2024  foo2zjs-icc2ps -> psicc
-rwxr-xr-x 1 root root        2997  3月 20  2023  foo2zjs-pstops
-rwxr-xr-x 1 root root       25952  3月 20  2023  foo2zjs-wrapper
lrwxrwxrwx 1 root root          31  7月  2  2024  foomatic-rip -> ../lib/cups/filter/foomatic-rip
-rwxr-xr-x 1 root root       88448  7月 16  2022  fprintd-delete
-rwxr-xr-x 1 root root       93040  7月 16  2022  fprintd-enroll
-rwxr-xr-x 1 root root       80256  7月 16  2022  fprintd-list
-rwxr-xr-x 1 root root       88448  7月 16  2022  fprintd-verify
-rwxr-xr-x 1 root root       26864 10月 31  2023  free
lrwxrwxrwx 1 root root          21  7月  2  2024  ftp -> /etc/alternatives/ftp
-rwxr-xr-x 1 root root       22832  2月  1 23:52  funzip
-rwxr-xr-x 1 root root       40256  3月 25  2022  fuser
lrwxrwxrwx 1 root root          11  7月  2  2024  fusermount -> fusermount3
-rwsr-xr-x 1 root root       35200  3月 23  2022  fusermount3
lrwxrwxrwx 1 root root          26  7月  2  2024  futurize -> /etc/alternatives/futurize
lrwxrwxrwx 1 root root           8  7月  2  2024  fwupdagent -> fwupdmgr
-rwxr-xr-x 1 root root       84272  5月 17  2023  fwupdate
-rwxr-xr-x 1 root root      194864  5月 17  2023  fwupdmgr
-rwxr-xr-x 1 root root      404400  5月 17  2023  fwupdtool
lrwxrwxrwx 1 root root           6  8月  5  2021  g++ -> g++-11
lrwxrwxrwx 1 root root          23  5月 13  2023  g++-11 -> x86_64-linux-gnu-g++-11
-rwxr-xr-x 1 root root      158360  3月 23  2022  gamemoded
-rwxr-xr-x 1 root root       14648  3月 28  2022  gamma4scanimage
-rwxr-xr-x 1 root root       22920  5月  9 01:22  gapplication
-rwxr-xr-x 1 root root      105936  6月  5 18:10  gatttool
-rwxr-xr-x 1 root root      321936  3月 21  2022  gcalccmd
lrwxrwxrwx 1 root root           6  8月  5  2021  gcc -> gcc-11
lrwxrwxrwx 1 root root          23  5月 13  2023  gcc-11 -> x86_64-linux-gnu-gcc-11
lrwxrwxrwx 1 root root           9  8月  5  2021  gcc-ar -> gcc-ar-11
lrwxrwxrwx 1 root root          26  5月 13  2023  gcc-ar-11 -> x86_64-linux-gnu-gcc-ar-11
lrwxrwxrwx 1 root root           9  8月  5  2021  gcc-nm -> gcc-nm-11
lrwxrwxrwx 1 root root          26  5月 13  2023  gcc-nm-11 -> x86_64-linux-gnu-gcc-nm-11
lrwxrwxrwx 1 root root          13  8月  5  2021  gcc-ranlib -> gcc-ranlib-11
lrwxrwxrwx 1 root root          30  5月 13  2023  gcc-ranlib-11 -> x86_64-linux-gnu-gcc-ranlib-11
-rwxr-xr-x 1 root root        3477  6月 13 09:58  gcore
lrwxrwxrwx 1 root root           7  8月  5  2021  gcov -> gcov-11
lrwxrwxrwx 1 root root          24  5月 13  2023  gcov-11 -> x86_64-linux-gnu-gcov-11
lrwxrwxrwx 1 root root          12  8月  5  2021  gcov-dump -> gcov-dump-11
lrwxrwxrwx 1 root root          29  5月 13  2023  gcov-dump-11 -> x86_64-linux-gnu-gcov-dump-11
lrwxrwxrwx 1 root root          12  8月  5  2021  gcov-tool -> gcov-tool-11
lrwxrwxrwx 1 root root          29  5月 13  2023  gcov-tool-11 -> x86_64-linux-gnu-gcov-tool-11
-rwxr-xr-x 1 root root       14712  3月 24  2022  gcr-viewer
-rwxr-xr-x 1 root root    10280680  6月 13 09:58  gdb
-rwxr-xr-x 1 root root        4627  6月 13 09:58  gdb-add-index
-rwxr-xr-x 1 root root         126  6月 13 09:58  gdbtui
-rwxr-xr-x 1 root root       51592  5月  9 01:22  gdbus
-rwxr-xr-x 1 root root        2039  5月  9 01:22  gdbus-codegen
-rwxr-xr-x 1 root root        9228  5月  2  2022  gdialog
-rwxr-xr-x 1 root root       14672  6月  4 00:40  gdk-pixbuf-csource
-rwxr-xr-x 1 root root       14656  6月  4 00:40  gdk-pixbuf-pixdata
-rwxr-xr-x 1 root root       18832  6月  4 00:40  gdk-pixbuf-thumbnailer
-rwxr-xr-x 1 root root       23328  1月 31 01:28  gdmflexiserver
-rwxr-xr-x 1 root root       18848  1月 31 01:28  gdm-screenshot
-rwxr-xr-x 1 root root       14640  3月  2  2022  gedit
-rwxr-xr-x 1 root root       27000  5月  7 04:34  gencat
-rwxr-xr-x 1 root root      661400  3月 24  2022  genisoimage
lrwxrwxrwx 1 root root           3  7月  2  2024  geqn -> eqn
lrwxrwxrwx 1 root root          11  7月  2  2024  GET -> lwp-request
-rwxr-xr-x 1 root root       35112  5月  7 04:34  getconf
-rwxr-xr-x 1 root root        6210  3月 24  2022  geteltorito
-rwxr-xr-x 1 root root       39576  5月  7 04:34  getent
-rwxr-xr-x 1 root root       31552  8月 29  2021  getfacl
-rwxr-xr-x 1 root root       23304  3月 23  2022  getfattr
-rwxr-xr-x 1 root root       14568 12月 16  2022  getkeycodes
-rwxr-xr-x 1 root root       22912  4月  9 23:32  getopt
-rwxr-xr-x 1 root root       35200  3月 25  2022  gettext
-rwxr-xr-x 1 root root        5188  3月 25  2022  gettext.sh
lrwxrwxrwx 1 root root           2  6月  4 12:54  ghostscript -> gs
lrwxrwxrwx 1 root root          12  7月  2  2024  ginstall-info -> install-info
-rwxr-xr-x 1 root root       92568  5月  9 01:22  gio
lrwxrwxrwx 1 root root          49  5月  9 01:22  gio-querymodules -> ../lib/x86_64-linux-gnu/glib-2.0/gio-querymodules
-rwxr-xr-x 1 root root       18752  3月 20  2023  gipddecode
-rwxr-xr-x 1 root root     3710360  5月 20 20:14  git
lrwxrwxrwx 1 root root           3  5月 20 20:14  git-receive-pack -> git
-rwxr-xr-x 1 root root      565840  5月 20 20:14  git-shell
lrwxrwxrwx 1 root root           3  5月 20 20:14  git-upload-archive -> git
lrwxrwxrwx 1 root root           3  5月 20 20:14  git-upload-pack -> git
lrwxrwxrwx 1 root root          11  5月 22 06:39  gjs -> gjs-console
-rwxr-xr-x 1 root root       23264  5月 22 06:39  gjs-console
-rwxr-xr-x 1 root root       14648  1月  9  2022  gkbd-keyboard-display
-rwxr-xr-x 1 root root       47424  5月  9 01:22  glib-compile-resources
lrwxrwxrwx 1 root root          53  5月  9 01:22  glib-compile-schemas -> ../lib/x86_64-linux-gnu/glib-2.0/glib-compile-schemas
-rwxr-xr-x 1 root root       41106  5月  9 01:22  glib-genmarshal
-rwxr-xr-x 1 root root        5387  5月  9 01:22  glib-gettextize
-rwxr-xr-x 1 root root       30798  5月  9 01:22  glib-mkenums
lrwxrwxrwx 1 root root           4  2月 15  2022  gmake -> make
-rwxr-xr-x 1 root root      936792  3月 21  2022  gnome-calculator
-rwxr-xr-x 1 root root      660040  2月 15  2022  gnome-calendar
lrwxrwxrwx 1 root root          50  7月  2  2024  gnome-characters -> ../share/org.gnome.Characters/org.gnome.Characters
-rwxr-xr-x 1 root root     4685352 12月 11  2023  gnome-control-center
-rwxr-xr-x 1 root root       22920  3月 19  2022  gnome-disk-image-mounter
-rwxr-xr-x 1 root root      744952  3月 19  2022  gnome-disks
-rwxr-xr-x 1 root root       63952  5月  8 05:06  gnome-extensions
-rwxr-xr-x 1 root root       97128  2月 15  2022  gnome-font-viewer
lrwxrwxrwx 1 root root           4  7月  2  2024  gnome-help -> yelp
lrwxrwxrwx 1 root root          15  7月  2  2024  gnome-keyring -> gnome-keyring-3
-rwxr-xr-x 1 root root       23080  6月 21  2022  gnome-keyring-3
-rwxr-xr-x 1 root root     1017128  6月 21  2022  gnome-keyring-daemon
-rwxr-xr-x 1 root root        1444 12月 29  2022  gnome-language-selector
-rwxr-xr-x 1 root root      195456  3月 29  2022  gnome-logs
-rwxr-xr-x 1 root root       67872  3月 23  2022  gnome-power-statistics
-rwxr-xr-x 1 root root         803  4月  8  2022  gnome-session
-rwxr-xr-x 1 root root          54  3月 22  2022  gnome-session-custom-session
-rwxr-xr-x 1 root root       22848  4月  8  2022  gnome-session-inhibit
-rwxr-xr-x 1 root root       67848  4月  8  2022  gnome-session-properties
-rwxr-xr-x 1 root root       14960  4月  8  2022  gnome-session-quit
-rwxr-xr-x 1 root root       27264  5月  8 05:06  gnome-shell
-rwxr-xr-x 1 root root        1706  5月  8 05:06  gnome-shell-extension-tool
-rwxr-xr-x 1 root root       10609  5月  8 05:06  gnome-shell-perf-tool
-rwxr-xr-x 1 root root      358768  3月 21  2022  gnome-system-monitor
-rwxr-xr-x 1 root root        3400  3月 28  2022  gnome-terminal
-rwxr-xr-x 1 root root       77328  3月 28  2022  gnome-terminal.real
-rwxr-xr-x 1 root root        2718  3月 28  2022  gnome-terminal.wrapper
lrwxrwxrwx 1 root root          35  7月  2  2024  gnome-text-editor -> /etc/alternatives/gnome-text-editor
-rwxr-xr-x 1 root root       26936  2月 15  2022  gnome-thumbnail-font
-rwxr-xr-x 1 root root      416632  3月 24  2022  gnome-todo
lrwxrwxrwx 1 root root          35  7月  2  2024  gnome-www-browser -> /etc/alternatives/gnome-www-browser
-rwxr-xr-x 1 root root       14664  5月  9 01:22  gobject-query
lrwxrwxrwx 1 root root          21  1月 23 23:08  gold -> x86_64-linux-gnu-gold
-rwsr-xr-x 1 root root       72072  2月  6 20:54  gpasswd
-rwxr-xr-x 1 root root      100680  3月 22  2020  gperf
-rwxr-xr-x 1 root root     1050624  7月  5  2022  gpg
-rwxr-xr-x 1 root root      320472  7月  5  2022  gpg-agent
-rwxr-xr-x 1 root root      508400  7月  5  2022  gpgcompose
-rwxr-xr-x 1 root root      129776  7月  5  2022  gpgconf
-rwxr-xr-x 1 root root       84984  7月  5  2022  gpg-connect-agent
-rwxr-xr-x 1 root root       35200  7月  5  2022  gpgparsemail
-rwxr-xr-x 1 root root      428952  7月  5  2022  gpgsm
-rwxr-xr-x 1 root root       27184  7月  5  2022  gpgsplit
-rwxr-xr-x 1 root root       64912  7月  5  2022  gpgtar
-rwxr-xr-x 1 root root      277544  7月  5  2022  gpgv
-rwxr-xr-x 1 root root      117816  7月  5  2022  gpg-wks-server
-rwxr-xr-x 1 root root        3516  7月  5  2022  gpg-zip
lrwxrwxrwx 1 root root           3  7月  2  2024  gpic -> pic
lrwxrwxrwx 1 root root          22  1月 23 23:08  gprof -> x86_64-linux-gnu-gprof
-rwxr-xr-x 1 root root       80712  9月 15  2023  gpu-manager
-rwxr-xr-x 1 root root       27016  8月 29  2023  grdctl
-rwxr-xr-x 1 root root      182728  3月 23  2022  grep
-rwxr-xr-x 1 root root       22840  5月  9 01:22  gresource
-rwxr-xr-x 1 root root       96768  3月 23  2022  groff
-rwxr-xr-x 1 root root        2776  3月 23  2022  grog
-rwxr-xr-x 1 root root      166456  3月 23  2022  grops
-rwxr-xr-x 1 root root      121368  3月 23  2022  grotty
-rwxr-xr-x 1 root root       35336  2月  8 11:46  groups
-rwxr-xr-x 1 root root      386000 12月 19  2022  grub-editenv
-rwxr-xr-x 1 root root      836048 12月 19  2022  grub-file
-rwxr-xr-x 1 root root      960432 12月 19  2022  grub-fstest
-rwxr-xr-x 1 root root      253808 12月 19  2022  grub-glue-efi
-rwxr-xr-x 1 root root        1681 12月 19  2022  grub-kbdcomp
-rwxr-xr-x 1 root root      233600 12月 19  2022  grub-menulst2cfg
-rwxr-xr-x 1 root root      278960 12月 19  2022  grub-mkfont
-rwxr-xr-x 1 root root      369712 12月 19  2022  grub-mkimage
-rwxr-xr-x 1 root root      258224 12月 19  2022  grub-mklayout
-rwxr-xr-x 1 root root      427680 12月 19  2022  grub-mknetdir
-rwxr-xr-x 1 root root      262352 12月 19  2022  grub-mkpasswd-pbkdf2
-rwxr-xr-x 1 root root      253520 12月 19  2022  grub-mkrelpath
-rwxr-xr-x 1 root root     1022432 12月 19  2022  grub-mkrescue
-rwxr-xr-x 1 root root      505808 12月 19  2022  grub-mkstandalone
-rwxr-xr-x 1 root root      779104 12月 19  2022  grub-mount
lrwxrwxrwx 1 root root          34  7月  2  2024  grub-ntldr-img -> ../lib/grub/i386-pc/grub-ntldr-img
-rwxr-xr-x 1 root root      848720 12月 19  2022  grub-render-label
-rwxr-xr-x 1 root root      282320 12月 19  2022  grub-script-check
-rwxr-xr-x 1 root root      800096 12月 19  2022  grub-syslinux2cfg
-rwxr-xr-x 1 root root       14488  6月  4 12:54  gs
-rwxr-xr-x 1 root root         350  6月  4 12:54  gsbj
-rwxr-xr-x 1 root root         352  6月  4 12:54  gsdj
-rwxr-xr-x 1 root root         352  6月  4 12:54  gsdj500
-rwxr-xr-x 1 root root       31032  5月  9 01:22  gsettings
-rwxr-xr-x 1 root root         353  6月  4 12:54  gslj
-rwxr-xr-x 1 root root         350  6月  4 12:54  gslp
-rwxr-xr-x 1 root root         277  6月  4 12:54  gsnd
-rwxr-xr-x 1 root root       22936  5月 27 22:31  gst-device-monitor-1.0
-rwxr-xr-x 1 root root       35144  5月 27 22:31  gst-discoverer-1.0
-rwxr-xr-x 1 root root       63896  6月 30  2022  gst-inspect-1.0
-rwxr-xr-x 1 root root       39248  6月 30  2022  gst-launch-1.0
-rwxr-xr-x 1 root root       51608  5月 27 22:31  gst-play-1.0
lrwxrwxrwx 1 root root          41  7月  2  2024  gstreamer-codec-install -> /etc/alternatives/gstreamer-codec-install
-rwxr-xr-x 1 root root       35208  6月 30  2022  gst-stats-1.0
-rwxr-xr-x 1 root root       14656  6月 30  2022  gst-tester-1.0
-rwxr-xr-x 1 root root       18752  6月 30  2022  gst-typefind-1.0
lrwxrwxrwx 1 root root           3  7月  2  2024  gtbl -> tbl
-rwxr-xr-x 1 root root       31056  5月  9 01:22  gtester
-rwxr-xr-x 1 root root       19091  5月  9 01:22  gtester-report
-rwxr-xr-x 1 root root       18752  4月  9 11:18  gtf
-rwxr-xr-x 1 root root       55736  5月  8 05:32  gtk4-builder-tool
-rwxr-xr-x 1 root root     8379976  5月  8 05:32  gtk4-encode-symbolic-svg
-rwxr-xr-x 1 root root       18904  5月  8 05:32  gtk4-launch
-rwxr-xr-x 1 root root       14648  5月  8 05:32  gtk4-query-settings
-rwxr-xr-x 1 root root       39656  5月  8 05:32  gtk4-update-icon-cache
-rwxr-xr-x 1 root root       35568  5月  8 05:30  gtk-builder-tool
-rwxr-xr-x 1 root root       18856  5月  8 05:30  gtk-encode-symbolic-svg
-rwxr-xr-x 1 root root       18904  5月  8 05:30  gtk-launch
-rwxr-xr-x 1 root root       14648  5月  8 05:30  gtk-query-settings
-rwxr-xr-x 1 root root       39496  5月  8 05:30  gtk-update-icon-cache
-rwxr-xr-x 1 root root        2346  9月  5  2022  gunzip
-rwxr-xr-x 1 root root        6447  9月  5  2022  gzexe
-rwxr-xr-x 1 root root       93424  9月  5  2022  gzip
-rwxr-xr-x 1 root root       29227 11月 23  2023  h2ph
-rwxr-xr-x 1 root root       60934 11月 23  2023  h2xs
-rwxr-xr-x 1 root root       35256  4月  9 23:32  hardlink
-rwxr-xr-x 1 root root       26944  3月 20  2023  hbpldecode
-rwxr-xr-x 1 root root       57656  6月  5 18:10  hciattach
-rwxr-xr-x 1 root root      167960  6月  5 18:10  hciconfig
-rwxr-xr-x 1 root root      163592  6月  5 18:10  hcitool
lrwxrwxrwx 1 root root           7  4月  9 23:32  hd -> hexdump
-rwxr-xr-x 1 root root       43528  2月  8 11:46  head
lrwxrwxrwx 1 root root          11  7月  2  2024  HEAD -> lwp-request
-rwxr-xr-x 1 root root        2514  1月  4  2022  helpztags
-rwxr-xr-x 1 root root       18664  6月  5 18:10  hex2hcd
-rwxr-xr-x 1 root root       51600  4月  9 23:32  hexdump
-rwxr-xr-x 1 root root       18752  3月 20  2023  hipercdecode
-rwxr-xr-x 1 root root      121672  4月 12 05:11  host
-rwxr-xr-x 1 root root       31240  2月  8 11:46  hostid
-rwxr-xr-x 1 root root       22760  3月 23  2022  hostname
-rwxr-xr-x 1 root root       31104 11月 22  2023  hostnamectl
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-align -> ../share/hplip/align.py
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-check -> ../share/hplip/check.py
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-clean -> ../share/hplip/clean.py
lrwxrwxrwx 1 root root          26  7月  2  2024  hp-colorcal -> ../share/hplip/colorcal.py
lrwxrwxrwx 1 root root          36  7月  2  2024  hp-config_usb_printer -> ../share/hplip/config_usb_printer.py
lrwxrwxrwx 1 root root          24  7月  2  2024  hp-doctor -> ../share/hplip/doctor.py
lrwxrwxrwx 1 root root          26  7月  2  2024  hp-firmware -> ../share/hplip/firmware.py
lrwxrwxrwx 1 root root          22  7月  2  2024  hp-info -> ../share/hplip/info.py
lrwxrwxrwx 1 root root          24  7月  2  2024  hp-levels -> ../share/hplip/levels.py
lrwxrwxrwx 1 root root          28  7月  2  2024  hp-logcapture -> ../share/hplip/logcapture.py
lrwxrwxrwx 1 root root          25  7月  2  2024  hp-makeuri -> ../share/hplip/makeuri.py
lrwxrwxrwx 1 root root          27  7月  2  2024  hp-pkservice -> ../share/hplip/pkservice.py
lrwxrwxrwx 1 root root          24  7月  2  2024  hp-plugin -> ../share/hplip/plugin.py
-rwxr-xr-x 1 root root         719  1月 22  2022  hp-plugin-ubuntu
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-probe -> ../share/hplip/probe.py
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-query -> ../share/hplip/query.py
lrwxrwxrwx 1 root root          22  7月  2  2024  hp-scan -> ../share/hplip/scan.py
lrwxrwxrwx 1 root root          23  7月  2  2024  hp-setup -> ../share/hplip/setup.py
lrwxrwxrwx 1 root root          26  7月  2  2024  hp-testpage -> ../share/hplip/testpage.py
lrwxrwxrwx 1 root root          26  7月  2  2024  hp-timedate -> ../share/hplip/timedate.py
-rwxr-xr-x 1 root root       10830 12月  8  2023  hwe-support-status
lrwxrwxrwx 1 root root           7  4月  9 23:32  i386 -> setarch
lrwxrwxrwx 1 root root          34  7月  2 11:52  i686-linux-gnu-pkg-config -> /usr/share/pkg-config-crosswrapper
-rwxr-xr-x 1 root root       39288  4月 10  2022  ibus
-rwxr-xr-x 1 root root      199088  4月 10  2022  ibus-daemon
-rwxr-xr-x 1 root root        1182  4月 10  2022  ibus-setup
-rwxr-xr-x 1 root root        1141  2月  2  2022  ibus-table-createdb
-rwxr-xr-x 1 root root       43440  3月 25  2022  iceauth
-rwxr-xr-x 1 root root       51648  3月 25  2022  ico
-rwxr-xr-x 1 root root       68000  5月  7 04:34  iconv
-rwxr-xr-x 1 root root       39432  2月  8 11:46  id
-rwxr-xr-x 1 root root       27008  1月 12  2022  iecset
-rwxr-xr-x 1 root root       35360  3月 25  2022  ijs_pxljr
-rwxr-xr-x 1 root root       11297  1月 17  2022  im-config
-rwxr-xr-x 1 root root        1798 12月 18  2020  im-launch
-rwxr-xr-x 1 root root      308984  2月  6  2022  info
lrwxrwxrwx 1 root root          29  7月  2  2024  infobrowser -> /etc/alternatives/infobrowser
-rwxr-xr-x 1 root root       63872  5月 17  2023  infocmp
lrwxrwxrwx 1 root root           3  7月  2  2024  infotocap -> tic
-rwxr-xr-x 1 root root       34560  3月 24  2022  inputattach
-rwxr-xr-x 1 root root      145944  2月  8 11:46  install
-rwxr-xr-x 1 root root      105704  2月  6  2022  install-info
-rwxr-xr-x 1 root root          95  2月 21  2022  install-printerdriver
-rwxr-xr-x 1 root root        4373 11月 23  2023  instmodsh
-rwxr-xr-x 1 root root       72000  2月  9  2022  intel-virtual-output
-rwxr-xr-x 1 root root       18816  4月  9 23:32  ionice
-rwxr-xr-x 1 root root      718896  3月 24  2022  ip
-rwxr-xr-x 1 root root       22984  4月  9 23:32  ipcmk
-rwxr-xr-x 1 root root       18816  4月  9 23:32  ipcrm
-rwxr-xr-x 1 root root       39296  4月  9 23:32  ipcs
-rwxr-xr-x 1 root root       22840  3月 24  2022  ipod-read-sysinfo-extended
-rwxr-xr-x 1 root root       14648  3月 24  2022  ipod-time-sync
-rwxr-xr-x 1 root root       43416  6月 27 21:39  ippfind
-rwxr-xr-x 1 root root       96568  6月 27 21:39  ipptool
lrwxrwxrwx 1 root root          28  7月  2  2024  iptables-xml -> ../sbin/xtables-legacy-multi
-rwxr-xr-x 1 root root       14536  3月 23  2022  ischroot
-rwxr-xr-x 1 root root       18752  4月  6  2022  isdv4-serial-debugger
-rwxr-xr-x 1 root root       18752  4月  6  2022  isdv4-serial-inputattach
-rwxr-xr-x 1 root root      187672  3月 24  2022  isodump
-rwxr-xr-x 1 root root      354840  3月 24  2022  isoinfo
-rwxr-xr-x 1 root root      191768  3月 24  2022  isovfy
-rwxr-xr-x 1 root root        7222 12月  3  2021  ispell-wrapper
-rwxr-xr-x 1 root root       47664  2月  8 11:46  join
-rwxr-xr-x 1 root root       80272 11月 22  2023  journalctl
-rwxr-xr-x 1 root root       35152  3月 24  2022  jpgicc
-rwxr-xr-x 1 root root        4992 11月 23  2023  json_pp
-rwxr-xr-x 1 root root       18664 12月 16  2022  kbdinfo
-rwxr-xr-x 1 root root       14872 12月 16  2022  kbd_mode
-rwxr-xr-x 1 root root       64336  7月  5  2022  kbxutil
-rwxr-xr-x 1 root root        4902  3月 11  2022  kernel-install
-rwxr-xr-x 1 root root       14488  3月 24  2022  kerneloops-submit
-rwxr-xr-x 1 root root         961  1月  2  2022  keyring
-rwxr-xr-x 1 root root       30952 10月 31  2023  kill
-rwxr-xr-x 1 root root       32096  3月 25  2022  killall
-rwxr-xr-x 1 root root      170352  8月 17  2021  kmod
-rwxr-xr-x 1 root root       18888 11月  6  2021  kmodsign
-rwxr-xr-x 1 root root       14504  6月  5 18:10  l2ping
-rwxr-xr-x 1 root root       35320  6月  5 18:10  l2test
-rwxr-xr-x 1 root root        3820  8月 12  2017  laptop-detect
-rwxr-xr-x 1 root root       35200  4月  9 23:32  last
lrwxrwxrwx 1 root root           4  4月  9 23:32  lastb -> last
-rwxr-xr-x 1 root root       28288  2月  6 20:54  lastlog
-rwxr-xr-x 1 root root       22848  3月 20  2023  lavadecode
-rwxr-xr-x 1 root root        7784  6月 16  2020  lcf
lrwxrwxrwx 1 root root          19  1月 23 23:08  ld -> x86_64-linux-gnu-ld
lrwxrwxrwx 1 root root          23  1月 23 23:08  ld.bfd -> x86_64-linux-gnu-ld.bfd
-rwxr-xr-x 1 root root        5443  5月  7 04:34  ldd
lrwxrwxrwx 1 root root          24  1月 23 23:08  ld.gold -> x86_64-linux-gnu-ld.gold
-rwxr-xr-x 1 root root      199048  4月 28 04:32  less
-rwxr-xr-x 1 root root       14656  4月 28 04:32  lessecho
lrwxrwxrwx 1 root root           8  4月 28 04:32  lessfile -> lesspipe
-rwxr-xr-x 1 root root       24272  4月 28 04:32  lesskey
-rwxr-xr-x 1 root root        9047 12月 29  2021  lesspipe
lrwxrwxrwx 1 root root           4  3月 23  2022  lex -> flex
-rwxr-xr-x 1 root root      102144  3月 18  2022  lexgrog
-rwxr-xr-x 1 root root       15778 11月 23  2023  libnetcfg
-rwxr-xr-x 1 root root        2471  3月 24  2022  libpng16-config
lrwxrwxrwx 1 root root          15  3月 24  2022  libpng-config -> libpng16-config
lrwxrwxrwx 1 root root          34  5月 15 15:06  libreoffice -> ../lib/libreoffice/program/soffice
-rwxr-xr-x 1 root root       14760  4月  1  2022  libwacom-list-devices
-rwxr-xr-x 1 root root       18904  4月  1  2022  libwacom-list-local-devices
-rwxr-xr-x 1 root root        6130  4月  1  2022  libwacom-show-stylus
-rwxr-xr-x 1 root root        9109  3月 25  2022  libwacom-update-db
-rwxr-xr-x 1 root root       31240  2月  8 11:46  link
-rwxr-xr-x 1 root root       27000  3月 24  2022  linkicc
lrwxrwxrwx 1 root root           7  4月  9 23:32  linux32 -> setarch
lrwxrwxrwx 1 root root           7  4月  9 23:32  linux64 -> setarch
-rwxr-xr-x 1 root root        1577  7月 11  2021  linux-boot-prober
-rwxr-xr-x 1 root root        4090  6月 26  2020  linux-check-removal
-rwxr-xr-x 1 root root        6320  6月 26  2020  linux-update-symlinks
-rwxr-xr-x 1 root root        2698  5月  4  2021  linux-version
-rwxr-xr-x 1 root root       15080  3月 25  2022  listres
-rwxr-xr-x 1 root root       59912  2月  8 11:46  ln
-rwxr-xr-x 1 root root       23200  3月 24  2022  lnstat
-rwxr-xr-x 1 root root      203528 12月 16  2022  loadkeys
-rwxr-xr-x 1 root root       31048 12月 16  2022  loadunimap
-rwxr-xr-x 1 root root          59  5月 15 15:06  localc
-rwxr-xr-x 1 root root       58944  5月  7 04:34  locale
-rwxr-xr-x 1 root root       14488  2月 14 22:47  locale-check
-rwxr-xr-x 1 root root       27000 11月 22  2023  localectl
-rwxr-xr-x 1 root root      334808  5月  7 04:34  localedef
-rwxr-xr-x 1 root root          59  5月 15 15:06  lodraw
-rwxr-xr-x 1 root root          53  5月 15 15:06  loffice
-rwxr-xr-x 1 root root          64  5月 15 15:06  lofromtemplate
-rwxr-xr-x 1 root root       35808  4月  9 23:32  logger
-rwxr-xr-x 1 root root       52976  2月  6 20:54  login
-rwxr-xr-x 1 root root       59888 11月 22  2023  loginctl
-rwxr-xr-x 1 root root       31240  2月  8 11:46  logname
-rwxr-xr-x 1 root root          62  5月 15 15:06  loimpress
-rwxr-xr-x 1 root root          59  5月 15 15:06  lomath
-rwxr-xr-x 1 root root       18824  4月  9 23:32  look
-rwxr-xr-x 1 root root          58  5月 15 15:06  loweb
-rwxr-xr-x 1 root root      117736 11月  1  2022  lowntfs-3g
-rwxr-xr-x 1 root root          61  5月 15 15:06  lowriter
-rwxr-xr-x 1 root root       26936  6月 27 21:39  lp
-rwxr-xr-x 1 root root       22912  6月 27 21:39  lpoptions
-rwxr-xr-x 1 root root       22912  6月 27 21:39  lpq
-rwxr-xr-x 1 root root       18736  6月 27 21:39  lpr
-rwxr-xr-x 1 root root       14640  6月 27 21:39  lprm
-rwxr-xr-x 1 root root       59544  3月 25  2022  lp_solve
-rwxr-xr-x 1 root root       39560  6月 27 21:39  lpstat
-rwxr-xr-x 1 root root      138216  2月  8 11:46  ls
-rwxr-xr-x 1 root root       14656  6月  2  2022  lsattr
-rwxr-xr-x 1 root root      125320  4月  9 23:32  lsblk
-rwxr-xr-x 1 root root        3638  8月 26  2019  lsb_release
-rwxr-xr-x 1 root root      100736  4月  9 23:32  lscpu
-rwxr-xr-x 1 root root      922824  3月 25  2022  lshw
-rwxr-xr-x 1 root root         706  7月 25  2023  lsinitramfs
-rwxr-xr-x 1 root root       51584  4月  9 23:32  lsipc
-rwxr-xr-x 1 root root       31440  4月  9 23:32  lslocks
-rwxr-xr-x 1 root root       51584  4月  9 23:32  lslogins
-rwxr-xr-x 1 root root       35200  4月  9 23:32  lsmem
lrwxrwxrwx 1 root root           4  7月  2  2024  lsmod -> kmod
-rwxr-xr-x 1 root root       39304  4月  9 23:32  lsns
-rwxr-xr-x 1 root root      167544  3月 25  2022  lsof
-rwxr-xr-x 1 root root       94288  8月 30  2021  lspci
-rwxr-xr-x 1 root root        1081  8月 28  2017  lspgpot
-rwxr-xr-x 1 root root      252432  3月 25  2022  lsusb
lrwxrwxrwx 1 root root          28  5月 13  2023  lto-dump-11 -> x86_64-linux-gnu-lto-dump-11
-rwxr-xr-x 1 root root       49600  3月 25  2022  luit
-rwxr-xr-x 1 root root       10292  1月 29  2022  lwp-download
-rwxr-xr-x 1 root root        2711  1月 29  2022  lwp-dump
-rwxr-xr-x 1 root root        2413  1月 29  2022  lwp-mirror
-rwxr-xr-x 1 root root       16202  1月 29  2022  lwp-request
-rwxr-xr-x 1 root root      198896  3月 25  2022  lz4
lrwxrwxrwx 1 root root           3  3月 25  2022  lz4c -> lz4
lrwxrwxrwx 1 root root           3  3月 25  2022  lz4cat -> lz4
lrwxrwxrwx 1 root root          23  7月  2  2024  lzcat -> /etc/alternatives/lzcat
lrwxrwxrwx 1 root root          23  7月  2  2024  lzcmp -> /etc/alternatives/lzcmp
lrwxrwxrwx 1 root root          24  7月  2  2024  lzdiff -> /etc/alternatives/lzdiff
lrwxrwxrwx 1 root root          25  7月  2  2024  lzegrep -> /etc/alternatives/lzegrep
lrwxrwxrwx 1 root root          25  7月  2  2024  lzfgrep -> /etc/alternatives/lzfgrep
lrwxrwxrwx 1 root root          24  7月  2  2024  lzgrep -> /etc/alternatives/lzgrep
lrwxrwxrwx 1 root root          24  7月  2  2024  lzless -> /etc/alternatives/lzless
lrwxrwxrwx 1 root root          22  7月  2  2024  lzma -> /etc/alternatives/lzma
-rwxr-xr-x 1 root root       14568  4月  8  2022  lzmainfo
lrwxrwxrwx 1 root root          24  7月  2  2024  lzmore -> /etc/alternatives/lzmore
-rwxr-xr-x 1 root root       76256  3月 25  2022  lzop
-rwxr-xr-x 1 root root       29520  3月 25  2022  m2300w
-rwxr-xr-x 1 root root       14578  3月 25  2022  m2300w-wrapper
-rwxr-xr-x 1 root root       29520  3月 25  2022  m2400w
-rwxr-xr-x 1 root root      158072  3月 25  2022  m4
-rwxr-xr-x 1 root root      255696  2月 15  2022  make
-rwxr-xr-x 1 root root        4905  2月 15  2022  make-first-existing-target
-rwxr-xr-x 1 root root         958  9月 19  2022  mako-render
-rwxr-xr-x 1 root root      120504  3月 18  2022  man
-rwxr-xr-x 1 root root      143296  3月 18  2022  mandb
-rwxr-xr-x 1 root root       31520  3月 18  2022  manpath
-rwxr-xr-x 1 root root       36536  3月 18  2022  man-recode
-rwxr-xr-x 1 root root       31048 12月 16  2022  mapscrn
-rwxr-xr-x 1 root root         969 11月 18  2021  markdown_py
-rwxr-xr-x 1 root root      158504  1月 24  2022  mawk
-rwxr-xr-x 1 root root       27080  4月  9 23:32  mcookie
-rwxr-xr-x 1 root root       43432  2月  8 11:46  md5sum
lrwxrwxrwx 1 root root           6  2月  8 11:46  md5sum.textutils -> md5sum
-rwxr-xr-x 1 root root       51608  4月 12 05:11  mdig
-rwxr-xr-x 1 root root        7495  5月  7 04:34  memusage
-rwxr-xr-x 1 root root       22904  5月  7 04:34  memusagestat
-rwxr-xr-x 1 root root        5807  9月 29  2023  mesa-overlay-control.py
-rwxr-xr-x 1 root root       14720  4月  9 23:32  mesg
-rwxr-xr-x 1 root root        3060 12月 19  2021  migrate-pubring-from-classic-gpg
-rwxr-xr-x 1 root root        9564  1月 11  2022  mimeopen
-rwxr-xr-x 1 root root       13068  1月 11  2022  mimetype
-rwxr-xr-x 1 root root       28112  3月 25  2022  min12xxw
-rwxr-xr-x 1 root root       68104  2月  8 11:46  mkdir
-rwxr-xr-x 1 root root       39432  2月  8 11:46  mkfifo
-rwxr-xr-x 1 root root          65  3月 25  2022  mkfontdir
-rwxr-xr-x 1 root root       43696  3月 25  2022  mkfontscale
lrwxrwxrwx 1 root root          11  7月  2  2024  mkisofs -> genisoimage
-rwxr-xr-x 1 root root       16163 12月 16  2022  mk_modmap
-rwxr-xr-x 1 root root       43528  2月  8 11:46  mknod
-rwxr-xr-x 1 root root      260792  3月 25  2022  mksquashfs
-rwxr-xr-x 1 root root       39432  2月  8 11:46  mktemp
-rwxr-xr-x 1 root root       31016  3月 24  2022  mkzftree
-rwxr-xr-x 1 root root      280416 12月 20  2023  mmcli
-rwxr-xr-x 1 root root       60904  8月 25  2023  mokutil
-rwxr-xr-x 1 root root       18744  3月 18  2022  monitor-sensor
-rwxr-xr-x 1 root root       43400  4月  9 23:32  more
-rwsr-xr-x 1 root root       47488  4月  9 23:32  mount
-rwxr-xr-x 1 root root       18816  4月  9 23:32  mountpoint
-rwxr-xr-x 1 root root       71912  3月 25  2022  mousetweaks
-rwxr-xr-x 1 root root       14648  3月 25  2022  mscompress
-rwxr-xr-x 1 root root       14648  3月 25  2022  msexpand
lrwxrwxrwx 1 root root          20  7月  2  2024  mt -> /etc/alternatives/mt
-rwxr-xr-x 1 root root       68336  4月 28 20:30  mt-gnu
-rwxr-xr-x 1 root root       73984  1月 11  2022  mtr
-rwxr-xr-x 1 root root        6583  5月  7 04:34  mtrace
-rwxr-xr-x 1 root root       39216  1月 11  2022  mtr-packet
-rwxr-xr-x 1 root root      137752  2月  8 11:46  mv
-rwxr-xr-x 1 root root       14640  1月  6 05:23  mvxattr
-rwxr-xr-x 1 root root       22912  4月  9 23:32  namei
-rwxr-xr-x 1 root root      283144  2月 19  2022  nano
-rwxr-xr-x 1 root root     1709488  3月 30  2023  nautilus
-rwxr-xr-x 1 root root       18736  3月 30  2023  nautilus-autorun-software
-rwxr-xr-x 1 root root       22760  3月 24  2022  nautilus-sendto
lrwxrwxrwx 1 root root          22  7月  2  2024  nawk -> /etc/alternatives/nawk
lrwxrwxrwx 1 root root          20  7月  2  2024  nc -> /etc/alternatives/nc
-rwxr-xr-x 1 root root       39560  2月 23  2022  nc.openbsd
lrwxrwxrwx 1 root root          15  5月 17  2023  ncurses5-config -> ncurses6-config
-rwxr-xr-x 1 root root        8402  5月 17  2023  ncurses6-config
lrwxrwxrwx 1 root root          16  5月 17  2023  ncursesw5-config -> ncursesw6-config
-rwxr-xr-x 1 root root        8405  5月 17  2023  ncursesw6-config
-rwxr-xr-x 1 root root         913  3月 23  2022  neqn
-rwxr-xr-x 1 root root     1002744  1月  6 05:23  net
lrwxrwxrwx 1 root root          24  7月  2  2024  netcat -> /etc/alternatives/netcat
-rwxr-xr-x 1 root root      158304  3月 25  2022  netstat
-rwxr-xr-x 1 root root      104832 11月 22  2023  networkctl
-rwxr-xr-x 1 root root       20185  5月  4  2022  networkd-dispatcher
-rwsr-xr-x 1 root root       40496  2月  6 20:54  newgrp
-rwxr-xr-x 1 root root       35200  3月 25  2022  ngettext
-rwxr-xr-x 1 root root       35336  2月  8 11:46  nice
lrwxrwxrwx 1 root root           8  7月  2  2024  nisdomainname -> hostname
-rwxr-xr-x 1 root root      100936  2月  8 11:46  nl
lrwxrwxrwx 1 root root          19  1月 23 23:08  nm -> x86_64-linux-gnu-nm
-rwxr-xr-x 1 root root      274432  3月  7  2022  nm-applet
-rwxr-xr-x 1 root root      154088  1月  6 05:23  nmblookup
-rwxr-xr-x 1 root root      949008  6月  9  2022  nmcli
-rwxr-xr-x 1 root root      986128  3月  7  2022  nm-connection-editor
-rwxr-xr-x 1 root root       22912  6月  9  2022  nm-online
-rwxr-xr-x 1 root root      751976  6月  9  2022  nmtui
lrwxrwxrwx 1 root root           5  7月  2  2024  nmtui-connect -> nmtui
lrwxrwxrwx 1 root root           5  7月  2  2024  nmtui-edit -> nmtui
lrwxrwxrwx 1 root root           5  7月  2  2024  nmtui-hostname -> nmtui
-rwxr-xr-x 1 root root       35240  2月  8 11:46  nohup
-rwxr-xr-x 1 root root       18672  4月 28  2022  notify-send
-rwxr-xr-x 1 root root       35336  2月  8 11:46  nproc
-rwxr-xr-x 1 root root        3293  3月 23  2022  nroff
-rwxr-xr-x 1 root root       27240  4月  9 23:32  nsenter
-rwxr-xr-x 1 root root      121672  4月 12 05:11  nslookup
-rwxr-xr-x 1 root root       31104  3月 24  2022  nstat
-rwxr-xr-x 1 root root       76344  4月 12 05:11  nsupdate
-rwxr-xr-x 1 root root      162824 11月  1  2022  ntfs-3g
-rwxr-xr-x 1 root root       14720 11月  1  2022  ntfs-3g.probe
-rwxr-xr-x 1 root root       27008 11月  1  2022  ntfscat
-rwxr-xr-x 1 root root       39304 11月  1  2022  ntfscluster
-rwxr-xr-x 1 root root       31104 11月  1  2022  ntfscmp
-rwxr-xr-x 1 root root       43400 11月  1  2022  ntfsdecrypt
-rwxr-xr-x 1 root root       27016 11月  1  2022  ntfsfallocate
-rwxr-xr-x 1 root root       35208 11月  1  2022  ntfsfix
-rwxr-xr-x 1 root root       55688 11月  1  2022  ntfsinfo
-rwxr-xr-x 1 root root       28112 11月  1  2022  ntfsls
-rwxr-xr-x 1 root root       31112 11月  1  2022  ntfsmove
-rwxr-xr-x 1 root root      108928 11月  1  2022  ntfsrecover
-rwxr-xr-x 1 root root       80752 11月  1  2022  ntfssecaudit
-rwxr-xr-x 1 root root       26936 11月  1  2022  ntfstruncate
-rwxr-xr-x 1 root root       18736 11月  1  2022  ntfsusermap
-rwxr-xr-x 1 root root       43936 11月  1  2022  ntfswipe
-rwxr-xr-x 1 root root       55848  2月  8 11:46  numfmt
-rwxr-xr-x 1 root root         270  9月 15  2023  nvidia-detector
-rwxr-xr-x 1 root root       18768  3月 20  2023  oakdecode
-rwxr-xr-x 1 root root      104696  6月  5 18:10  obexctl
lrwxrwxrwx 1 root root          24  1月 23 23:08  objcopy -> x86_64-linux-gnu-objcopy
lrwxrwxrwx 1 root root          24  1月 23 23:08  objdump -> x86_64-linux-gnu-objdump
-rwxr-xr-x 1 root root       24224  3月 25  2022  oclock
-rwxr-xr-x 1 root root       68104  2月  8 11:46  od
-rwxr-xr-x 1 root root        8792  4月 14  2023  oem-getlogs
-rwxr-xr-x 1 root root       26928  1月  6 05:23  oLschema2ldif
lrwxrwxrwx 1 root root          17  7月  2  2024  on_ac_power -> /sbin/on_ac_power
-rwxr-xr-x 1 root root       18808 11月 22  2023  oomctl
lrwxrwxrwx 1 root root          22  7月  2  2024  open -> /etc/alternatives/open
-rwxr-xr-x 1 root root     1001272  6月  5 11:28  openssl
-rwxr-xr-x 1 root root       23128 12月 16  2022  openvt
-rwxr-xr-x 1 root root       18752  3月 20  2023  opldecode
-rwxr-xr-x 1 root root        9272  5月 19  2022  orca
-rwxr-xr-x 1 root root          70  3月 25  2022  orca-dm-wrapper
-rwxr-xr-x 1 root root        4551  7月 11  2021  os-prober
-rwxr-xr-x 1 root root       31104  3月 25  2022  p11-kit
-rwxr-xr-x 1 root root       51624  2月 19 11:08  pacat
-rwxr-xr-x 1 root root       18824  2月 19 11:08  pacmd
-rwxr-xr-x 1 root root       96664  2月 19 11:08  pactl
-rwxr-xr-x 1 root root        2233  2月 19 11:08  padsp
lrwxrwxrwx 1 root root          23  7月  2  2024  pager -> /etc/alternatives/pager
-rwxr-xr-x 1 root root        2093  2月 22  2022  pa-info
lrwxrwxrwx 1 root root           5  2月 19 11:08  pamon -> pacat
-rwxr-xr-x 1 root root       14488  3月 24  2022  paperconf
lrwxrwxrwx 1 root root           5  2月 19 11:08  paplay -> pacat
lrwxrwxrwx 1 root root           5  2月 19 11:08  parec -> pacat
lrwxrwxrwx 1 root root           5  2月 19 11:08  parecord -> pacat
-rwxr-xr-x 1 root root       59784  4月  9 23:32  partx
-rwsr-xr-x 1 root root       59976  2月  6 20:54  passwd
-rwxr-xr-x 1 root root       35240  2月  8 11:46  paste
lrwxrwxrwx 1 root root          28  7月  2  2024  pasteurize -> /etc/alternatives/pasteurize
-rwxr-xr-x 1 root root       22928  2月 19 11:08  pasuspender
-rwxr-xr-x 1 root root      190992  3月 25  2022  patch
-rwxr-xr-x 1 root root       35336  2月  8 11:46  pathchk
-rwxr-xr-x 1 root root       14648  2月 19 11:08  pax11publish
-rwxr-xr-x 1 root root        1976  9月 20  2022  pcre2-config
-rwxr-xr-x 1 root root        2341  5月 17  2022  pcre-config
lrwxrwxrwx 1 root root           6  7月 28  2021  pdb2 -> pdb2.7
lrwxrwxrwx 1 root root          23 10月 16  2023  pdb2.7 -> ../lib/python2.7/pdb.py
lrwxrwxrwx 1 root root           7  7月  2  2024  pdb3 -> pdb3.10
lrwxrwxrwx 1 root root          24  7月  2  2024  pdb3.10 -> ../lib/python3.10/pdb.py
-rwxr-xr-x 1 root root       51504  1月  6 05:23  pdbedit
-rwxr-xr-x 1 root root         698  6月  4 12:54  pdf2dsc
-rwxr-xr-x 1 root root         909  6月  4 12:54  pdf2ps
-rwxr-xr-x 1 root root       18824  4月 17 19:49  pdfattach
-rwxr-xr-x 1 root root       23032  4月 17 19:49  pdfdetach
-rwxr-xr-x 1 root root       23064  4月 17 19:49  pdffonts
-rwxr-xr-x 1 root root       39448  4月 17 19:49  pdfimages
-rwxr-xr-x 1 root root       59928  4月 17 19:49  pdfinfo
-rwxr-xr-x 1 root root       22920  4月 17 19:49  pdfseparate
-rwxr-xr-x 1 root root       35608  4月 17 19:49  pdfsig
-rwxr-xr-x 1 root root      137712  4月 17 19:49  pdftocairo
-rwxr-xr-x 1 root root      108968  4月 17 19:49  pdftohtml
-rwxr-xr-x 1 root root       35240  4月 17 19:49  pdftoppm
-rwxr-xr-x 1 root root       35360  4月 17 19:49  pdftops
-rwxr-xr-x 1 root root       43544  4月 17 19:49  pdftotext
-rwxr-xr-x 1 root root       31112  4月 17 19:49  pdfunite
-rwxr-xr-x 1 root root       14640  3月 25  2022  peekfd
-rwxr-xr-x 1 root root     3802104 11月 23  2023  perl
-rwxr-xr-x 1 root root     3802104 11月 23  2023  perl5.34.0
-rwxr-xr-x 1 root root       14648 11月 23  2023  perl5.34-x86_64-linux-gnu
-rwxr-xr-x 1 root root       45183 11月 23  2023  perlbug
-rwxr-xr-x 1 root root         125  8月 26  2021  perldoc
-rwxr-xr-x 1 root root       57920  2月  6  2022  perli11ndoc
-rwxr-xr-x 1 root root       10867 11月 23  2023  perlivp
-rwxr-xr-x 1 root root       45183 11月 23  2023  perlthanks
-rwxr-xr-x 1 root root         498  6月  4 12:54  pf2afm
-rwxr-xr-x 1 root root         516  6月  4 12:54  pfbtopfa
-rwxr-xr-x 1 root root       30968 10月 31  2023  pgrep
-rwxr-xr-x 1 root root      204840  3月 23  2022  pic
lrwxrwxrwx 1 root root          22  7月  2  2024  pico -> /etc/alternatives/pico
-rwxr-xr-x 1 root root        8360 11月 23  2023  piconv
lrwxrwxrwx 1 root root          14  7月  2  2024  pidof -> /sbin/killall5
-rwxr-xr-x 1 root root       30968 10月 31  2023  pidwait
lrwxrwxrwx 1 root root          26  7月  2  2024  pinentry -> /etc/alternatives/pinentry
-rwxr-xr-x 1 root root       60056  3月 25  2022  pinentry-curses
-rwxr-xr-x 1 root root       76448  3月 25  2022  pinentry-gnome3
lrwxrwxrwx 1 root root          30  7月  2  2024  pinentry-x11 -> /etc/alternatives/pinentry-x11
-rwxr-xr-x 1 root root       76672  2月  5  2022  ping
lrwxrwxrwx 1 root root           4  7月  2  2024  ping4 -> ping
lrwxrwxrwx 1 root root           4  7月  2  2024  ping6 -> ping
-rwxr-xr-x 1 root root       35240  2月  8 11:46  pinky
-rwxr-xr-x 1 root root       14720 11月  9  2022  pipewire
-rwxr-xr-x 1 root root      408320  3月  5  2022  pipewire-media-session
-rwxr-xr-x 1 root root       18736  2月 26  2022  pkaction
-rwxr-xr-x 1 root root       22832  2月 26  2022  pkcheck
-rwxr-xr-x 1 root root       59704  3月 15  2022  pkcon
-rwsr-xr-x 1 root root       30872  2月 26  2022  pkexec
-rwxr-xr-x 2 root root       51488  3月 25  2022  pkg-config
lrwxrwxrwx 1 root root           5  7月  2  2024  pkill -> pgrep
-rwxr-xr-x 1 root root       22840  3月 15  2022  pkmon
-rwxr-xr-x 1 root root       18736  2月 26  2022  pkttyagent
-rwxr-xr-x 1 root root        4536 11月 23  2023  pl2pm
-rwxr-xr-x 1 root root       22904  5月  7 04:34  pldd
-rwxr-xr-x 1 root root         146  2月 23  2022  plog
-rwxr-xr-x 1 root root       47408  3月 18  2022  plymouth
-rwxr-xr-x 1 root root       35064 10月 31  2023  pmap
-rwxr-xr-x 1 root root      118160  2月 22  2019  pngcrush
-rwxr-xr-x 1 root root       59784  3月 24  2022  pngfix
-rwxr-xr-x 1 root root       14648  3月 24  2022  png-fix-itxt
-rwxr-xr-x 1 root root     1645608  3月 25  2022  pnm2ppa
-rwxr-xr-x 1 root root        4137 11月 23  2023  pod2html
-rwxr-xr-x 1 root root       15034 11月 23  2023  pod2man
-rwxr-xr-x 1 root root       10803 11月 23  2023  pod2text
-rwxr-xr-x 1 root root        4107 11月 23  2023  pod2usage
-rwxr-xr-x 1 root root        3658 11月 23  2023  podchecker
-rwxr-xr-x 1 root root        2837  2月 23  2022  poff
-rwxr-xr-x 1 root root        1362  2月 23  2022  pon
lrwxrwxrwx 1 root root          11  7月  2  2024  POST -> lwp-request
-rwxr-xr-x 1 root root        8089  3月  6  2022  powerprofilesctl
-rwxr-xr-x 1 root root      100840  6月 27 21:39  ppdc
-rwxr-xr-x 1 root root       76264  6月 27 21:39  ppdhtml
-rwxr-xr-x 1 root root       92648  6月 27 21:39  ppdi
-rwxr-xr-x 1 root root       18816  6月 27 21:39  ppdmerge
-rwxr-xr-x 1 root root       80360  6月 27 21:39  ppdpo
-rwxr-xr-x 1 root root         404  6月  4 12:54  pphs
-rwxr-xr-x 1 root root       68176  2月  8 11:46  pr
-rwxr-xr-x 1 root root        5656  3月 23  2022  precat
-rwxr-xr-x 1 root root       55784  3月 23  2022  preconv
-rwxr-xr-x 1 root root        5656  3月 23  2022  preunzip
-rwxr-xr-x 1 root root        5656  3月 23  2022  prezip
-rwxr-xr-x 1 root root       14640  3月 23  2022  prezip-bin
lrwxrwxrwx 1 root root          11  7月  2  2024  print -> run-mailcap
-rwxr-xr-x 1 root root         395  6月  4 12:54  printafm
-rwxr-xr-x 1 root root       31112  2月  8 11:46  printenv
-rwxr-xr-x 1 root root        5640  3月 20  2023  printer-profile
-rwxr-xr-x 1 root root       51648  2月  8 11:46  printf
-rwxr-xr-x 1 root root       27536  4月  9 23:32  prlimit
lrwxrwxrwx 1 root root          16  7月  2  2024  pro -> ubuntu-advantage
-rwxr-xr-x 1 root root       55600  1月  6 05:23  profiles
-rwxr-xr-x 1 root root       13658 11月 23  2023  prove
-rwxr-xr-x 1 root root       22912  3月 25  2022  prtstat
-rwxr-xr-x 1 root root      141776 10月 31  2023  ps
-rwxr-xr-x 1 root root         631  6月  4 12:54  ps2ascii
-rwxr-xr-x 1 root root        1264  6月  4 12:54  ps2epsi
-rwxr-xr-x 1 root root         272  6月  4 12:54  ps2pdf
-rwxr-xr-x 1 root root         215  6月  4 12:54  ps2pdf12
-rwxr-xr-x 1 root root         215  6月  4 12:54  ps2pdf13
-rwxr-xr-x 1 root root         215  6月  4 12:54  ps2pdf14
-rwxr-xr-x 1 root root        1078  6月  4 12:54  ps2pdfwr
-rwxr-xr-x 1 root root         647  6月  4 12:54  ps2ps
-rwxr-xr-x 1 root root         669  6月  4 12:54  ps2ps2
lrwxrwxrwx 1 root root           8  6月  4 12:54  ps2txt -> ps2ascii
lrwxrwxrwx 1 root root           9  7月  2  2024  psfaddtable -> psfxtable
lrwxrwxrwx 1 root root           9  7月  2  2024  psfgettable -> psfxtable
lrwxrwxrwx 1 root root           9  7月  2  2024  psfstriptable -> psfxtable
-rwxr-xr-x 1 root root       26856 12月 16  2022  psfxtable
-rwxr-xr-x 1 root root       14656  3月 24  2022  psicc
-rwxr-xr-x 1 root root       14640  3月 25  2022  pslog
-rwxr-xr-x 1 root root       36168  3月 25  2022  pstree
lrwxrwxrwx 1 root root           6  7月  2  2024  pstree.x11 -> pstree
-rwxr-xr-x 1 root root        3566 11月 23  2023  ptar
-rwxr-xr-x 1 root root        2645 11月 23  2023  ptardiff
-rwxr-xr-x 1 root root        4395 11月 23  2023  ptargrep
-rwxr-xr-x 1 root root      129592  2月  8 11:46  ptx
-rwxr-xr-x 1 root root       96704  2月 19 11:08  pulseaudio
-rwxr-xr-x 1 root root      141696 11月  9  2022  pw-cat
-rwxr-xr-x 1 root root      137600 11月  9  2022  pw-cli
-rwxr-xr-x 1 root root       35336  2月  8 11:46  pwd
-rwxr-xr-x 1 root root       35200 11月  9  2022  pw-dot
lrwxrwxrwx 1 root root           6  7月  2  2024  pw-dsdplay -> pw-cat
-rwxr-xr-x 1 root root       96640 11月  9  2022  pw-dump
-rwxr-xr-x 1 root root       14568 10月 31  2023  pwdx
-rwxr-xr-x 1 root root       31104 11月  9  2022  pw-link
-rwxr-xr-x 1 root root       18816 11月  9  2022  pw-loopback
-rwxr-xr-x 1 root root       14720 11月  9  2022  pw-metadata
-rwxr-xr-x 1 root root       35200 11月  9  2022  pw-mididump
lrwxrwxrwx 1 root root           6  7月  2  2024  pw-midiplay -> pw-cat
lrwxrwxrwx 1 root root           6  7月  2  2024  pw-midirecord -> pw-cat
-rwxr-xr-x 1 root root       92592 11月  9  2022  pw-mon
lrwxrwxrwx 1 root root           6  7月  2  2024  pw-play -> pw-cat
-rwxr-xr-x 1 root root       27008 11月  9  2022  pw-profiler
lrwxrwxrwx 1 root root           6  7月  2  2024  pw-record -> pw-cat
-rwxr-xr-x 1 root root       27008 11月  9  2022  pw-reserve
-rwxr-xr-x 1 root root       31104 11月  9  2022  pw-top
-rwxr-xr-x 1 root root        1992 11月  9  2022  pw-v4l2
-rwxr-xr-x 1 root root        7813  8月 18  2022  py3clean
-rwxr-xr-x 1 root root       13191  8月 18  2022  py3compile
lrwxrwxrwx 1 root root          31  7月  2  2024  py3versions -> ../share/python3/py3versions.py
-rwxr-xr-x 1 root root        4124  7月 28  2021  pyclean
-rwxr-xr-x 1 root root       11867  7月 28  2021  pycompile
lrwxrwxrwx 1 root root           8  7月 28  2021  pydoc2 -> pydoc2.7
-rwxr-xr-x 1 root root          79 10月 16  2023  pydoc2.7
lrwxrwxrwx 1 root root           9  7月  2  2024  pydoc3 -> pydoc3.10
-rwxr-xr-x 1 root root          79 11月 20  2023  pydoc3.10
lrwxrwxrwx 1 root root          12  7月 28  2021  pygettext2 -> pygettext2.7
-rwxr-xr-x 1 root root       22082 10月 16  2023  pygettext2.7
lrwxrwxrwx 1 root root          13  7月  2  2024  pygettext3 -> pygettext3.10
-rwxr-xr-x 1 root root       24235  6月  7  2023  pygettext3.10
-rwxr-xr-x 1 root root         970  2月 15  2022  pygmentize
lrwxrwxrwx 1 root root           7  7月  2 12:16  python -> python2
lrwxrwxrwx 1 root root           9  7月 28  2021  python2 -> python2.7
-rwxr-xr-x 1 root root     3588440 10月 16  2023  python2.7
lrwxrwxrwx 1 root root          10  7月  2  2024  python3 -> python3.10
-rwxr-xr-x 1 root root     5904904 11月 20  2023  python3.10
-rwxr-xr-x 1 root root         960  1月 25  2023  python3-futurize
-rwxr-xr-x 1 root root         964  1月 25  2023  python3-pasteurize
lrwxrwxrwx 1 root root          29  7月 28  2021  pyversions -> ../share/python/pyversions.py
-rwxr-xr-x 1 root root      719328  3月 25  2022  pzstd
-rwxr-xr-x 1 root root       23144  3月 20  2023  qpdldecode
-rwxr-xr-x 1 root root        2453  9月 15  2023  quirks-handler
lrwxrwxrwx 1 root root          23  1月 23 23:08  ranlib -> x86_64-linux-gnu-ranlib
lrwxrwxrwx 1 root root           4  3月 14 19:31  rbash -> bash
lrwxrwxrwx 1 root root          21  7月  2  2024  rcp -> /etc/alternatives/rcp
-rwxr-xr-x 1 root root       39104  6月  5 18:10  rctest
-rwxr-xr-x 1 root root        9125  3月 18  2022  rdiffdir
-rwxr-xr-x 1 root root      100880  3月 24  2022  rdma
lrwxrwxrwx 1 root root          24  1月 23 23:08  readelf -> x86_64-linux-gnu-readelf
-rwxr-xr-x 1 root root       39336  2月  8 11:46  readlink
-rwxr-xr-x 1 root root       39336  2月  8 11:46  realpath
-rwxr-xr-x 1 root root          89  2月 13  2022  red
-rwxr-xr-x 1 root root      896616  7月  7  2023  remmina
-rwxr-xr-x 1 root root        1321  7月  7  2023  remmina-file-wrapper
-rwxr-xr-x 1 root root         530  3月 10  2022  remmina-gnome
-rwxr-xr-x 1 root root       61216  3月 25  2022  rendercheck
-rwxr-xr-x 1 root root       14720  4月  9 23:32  renice
lrwxrwxrwx 1 root root           4  7月  2  2024  reset -> tset
-rwxr-xr-x 1 root root       26952 12月 16  2022  resizecons
-rwxr-xr-x 1 root root       22912  4月  9 23:32  resizepart
-rwxr-xr-x 1 root root      133656 11月 22  2023  resolvectl
-rwxr-xr-x 1 root root       14720  4月  9 23:32  rev
-rwxr-xr-x 1 root root       31320  6月  5 18:10  rfcomm
-rwxr-xr-x 1 root root          30  1月 29  2020  rgrep
-rwxr-xr-x 1 root root       14632  2月 18  2022  rhythmbox
-rwxr-xr-x 1 root root       49080  2月 18  2022  rhythmbox-client
lrwxrwxrwx 1 root root          24  7月  2  2024  rlogin -> /etc/alternatives/rlogin
-rwxr-xr-x 1 root root       59912  2月  8 11:46  rm
-rwxr-xr-x 1 root root       43432  2月  8 11:46  rmdir
lrwxrwxrwx 1 root root           4  7月  2  2024  rnano -> nano
-rwxr-xr-x 1 root root         208  3月 24  2022  routef
-rwxr-xr-x 1 root root        1656  3月 24  2022  routel
-rwxr-xr-x 1 root root       96864  3月 25  2022  rpcgen
-rwxr-xr-x 1 root root       12639  2月 28  2023  rrsync
lrwxrwxrwx 1 root root          21  7月  2  2024  rsh -> /etc/alternatives/rsh
-rwxr-xr-x 1 root root        2610  3月 25  2022  rstart
-rwxr-xr-x 1 root root        1469  3月 25  2022  rstartd
-rwxr-xr-x 1 root root      518272  2月 28  2023  rsync
-rwxr-xr-x 1 root root        5136  2月 28  2023  rsync-ssl
lrwxrwxrwx 1 root root           6  7月  2  2024  rtstat -> lnstat
-rwxr-xr-x 1 root root       35336  2月  8 11:46  runcon
-rwxr-xr-x 1 root root       18491 12月 11  2021  run-mailcap
-rwxr-xr-x 1 root root       27176  3月 23  2022  run-parts
-rwxr-xr-x 1 root root          57  3月 23  2022  run-with-aspell
lrwxrwxrwx 1 root root          23  7月  2  2024  rview -> /etc/alternatives/rview
-rwxr-xr-x 1 root root       51576  2月  1  2022  rygel
-rwxr-xr-x 1 root root      117984  1月  6 05:23  samba-regedit
-rwxr-xr-x 1 root root        1555  1月  6 05:23  samba-tool
-rwxr-xr-x 1 root root       93184  3月 28  2022  sane-find-scanner
-rwxr-xr-x 1 root root       10487  3月 23  2022  savelog
-rwxr-xr-x 1 root root       27176 11月  6  2021  sbattach
-rwxr-xr-x 1 root root       35576 11月  6  2021  sbkeysync
-rwxr-xr-x 1 root root       14952 11月  6  2021  sbsiglist
-rwxr-xr-x 1 root root       35536 11月  6  2021  sbsign
-rwxr-xr-x 1 root root       23280 11月  6  2021  sbvarsign
-rwxr-xr-x 1 root root       35440 11月  6  2021  sbverify
-rwxr-xr-x 1 root root       64624  3月 28  2022  scanimage
-rwxr-xr-x 1 root root       22752  1月  6  2021  schedtool
-rwxr-xr-x 1 root root      133720  6月 26 21:11  scp
-rwxr-xr-x 1 root root          90  2月 21  2022  scp-dbus-service
-rwxr-xr-x 1 root root       14488 12月 16  2022  screendump
-rwxr-xr-x 1 root root       51584  4月  9 23:32  script
-rwxr-xr-x 1 root root       43392  4月  9 23:32  scriptlive
-rwxr-xr-x 1 root root       35200  4月  9 23:32  scriptreplay
-rwxr-xr-x 1 root root       47504  3月 23  2022  sdiff
-rwxr-xr-x 1 root root        1349  2月 18  2021  sdl-config
-rwxr-xr-x 1 root root      132824  6月  5 18:10  sdptool
-rwxr-xr-x 1 root root     1178864  2月 17  2022  seahorse
-rwxr-xr-x 1 root root      113224  3月 25  2022  sed
lrwxrwxrwx 1 root root          11  7月  2  2024  see -> run-mailcap
-rwxr-xr-x 1 root root         474 12月  3  2021  select-default-iwrap
-rwxr-xr-x 1 root root        2450  8月 30  2021  select-editor
-rwxr-xr-x 1 root root        1290  8月 30  2021  sensible-browser
-rwxr-xr-x 1 root root        1269  8月 30  2021  sensible-editor
-rwxr-xr-x 1 root root         565  8月 30  2021  sensible-pager
-rwxr-xr-x 1 root root       47624  2月  8 11:46  seq
-rwxr-xr-x 1 root root       22680  3月 17  2022  session-migration
-rwxr-xr-x 1 root root       14656  3月 25  2022  sessreg
-rwxr-xr-x 1 root root       27288  4月  9 23:32  setarch
-rwxr-xr-x 1 root root       43936  8月 29  2021  setfacl
-rwxr-xr-x 1 root root       19040  3月 23  2022  setfattr
-rwxr-xr-x 1 root root       51528 12月 16  2022  setfont
-rwxr-xr-x 1 root root       14568 12月 16  2022  setkeycodes
-rwxr-xr-x 1 root root       18648 12月 16  2022  setleds
-rwxr-xr-x 1 root root       14568 12月 16  2022  setlogcons
-rwxr-xr-x 1 root root       14600 12月 16  2022  setmetamode
-rwxr-xr-x 1 root root       31112  8月 30  2021  setpci
-rwxr-xr-x 1 root root       39304  4月  9 23:32  setpriv
-rwxr-xr-x 1 root root       14720  4月  9 23:32  setsid
-rwxr-xr-x 1 root root       35200  4月  9 23:32  setterm
-rwxr-xr-x 1 root root       39233 11月 23  2021  setupcon
-rwxr-xr-x 1 root root       27344  3月 25  2022  setxkbmap
-rwxr-xr-x 1 root root      146088  6月 26 21:11  sftp
lrwxrwxrwx 1 root root           6  7月  2  2024  sg -> newgrp
lrwxrwxrwx 1 root root           4  7月  2  2024  sh -> dash
-rwxr-xr-x 1 root root       43432  2月  8 11:46  sha1sum
-rwxr-xr-x 1 root root       51624  2月  8 11:46  sha224sum
-rwxr-xr-x 1 root root       51624  2月  8 11:46  sha256sum
-rwxr-xr-x 1 root root       59816  2月  8 11:46  sha384sum
-rwxr-xr-x 1 root root       59816  2月  8 11:46  sha512sum
-rwxr-xr-x 1 root root       39296  1月  6 05:23  sharesec
-rwxr-xr-x 1 root root        9979 11月 23  2023  shasum
-rwxr-xr-x 1 root root     5070240  4月 20  2022  shotwell
-rwxr-xr-x 1 root root       18664 12月 16  2022  showconsolefont
-rwxr-xr-x 1 root root       18664 12月 16  2022  showkey
-rwxr-xr-x 1 root root       14656  3月 25  2022  showrgb
-rwxr-xr-x 1 root root       51720  2月  8 11:46  shred
-rwxr-xr-x 1 root root       47624  2月  8 11:46  shuf
-rwxr-xr-x 1 root root      399728  3月 20  2022  simple-scan
lrwxrwxrwx 1 root root          21  1月 23 23:08  size -> x86_64-linux-gnu-size
-rwxr-xr-x 1 root root       30952 10月 31  2023  skill
-rwxr-xr-x 1 root root       22768 10月 31  2023  slabtop
-rwxr-xr-x 1 root root       35336  2月  8 11:46  sleep
lrwxrwxrwx 1 root root           3  6月 26 21:11  slogin -> ssh
-rwxr-xr-x 1 root root       18752  3月 20  2023  slxdecode
-rwxr-xr-x 1 root root       68176  1月  6 05:23  smbcontrol
-rwxr-xr-x 1 root root       39224  1月  6 05:23  smbpasswd
-rwxr-xr-x 1 root root       43312  1月  6 05:23  smbstatus
-rwxr-xr-x 1 root root       26944  3月 25  2022  smproxy
-rwxr-xr-x 1 root root    17083672  4月 24 08:00  snap
lrwxrwxrwx 1 root root          20  4月 24 08:00  snapctl -> ../lib/snapd/snapctl
-rwxr-xr-x 1 root root       39144  4月 24 08:00  snapfuse
lrwxrwxrwx 1 root root           5  7月  2  2024  snice -> skill
-rwxr-xr-x 1 root root       31208  3月 23  2022  soelim
lrwxrwxrwx 1 root root          34  5月 15 15:06  soffice -> ../lib/libreoffice/program/soffice
-rwxr-xr-x 1 root root        4176 10月 24  2023  software-properties-gtk
-rwxr-xr-x 1 root root      101176  2月  8 11:46  sort
-rwxr-xr-x 1 root root        4308  5月  7 04:34  sotruss
-rwxr-xr-x 1 root root      274552 11月  9  2022  spa-acp-tool
-rwxr-xr-x 1 root root       80360 11月  9  2022  spa-inspect
-rwxr-xr-x 1 root root       14648 11月  9  2022  spa-json-dump
-rwxr-xr-x 1 root root       14824 11月  9  2022  spa-monitor
-rwxr-xr-x 1 root root       31336 11月  9  2022  spa-resample
-rwxr-xr-x 1 root root        1003  5月 23  2023  spd-conf
-rwxr-xr-x 1 root root       31888  5月 23  2023  spd-say
-rwxr-xr-x 1 root root       14656  5月 23  2023  spdsend
-rwxr-xr-x 1 root root       31168  1月 12  2022  speaker-test
-rwxr-xr-x 1 root root      211360  5月 23  2023  speech-dispatcher
-rwxr-xr-x 1 root root       88856  2月 24  2022  spice-vdagent
-rwxr-xr-x 1 root root       19414 11月 23  2023  splain
-rwxr-xr-x 1 root root       52192  2月  8 11:46  split
-rwxr-xr-x 1 root root       14488 12月 16  2022  splitfont
-rwxr-xr-x 1 root root       35192  5月  7 04:34  sprof
lrwxrwxrwx 1 root root          10  7月  2  2024  sqfscat -> unsquashfs
lrwxrwxrwx 1 root root          10  7月  2  2024  sqfstar -> mksquashfs
-rwxr-xr-x 1 root root      128072  3月 24  2022  ss
-rwxr-xr-x 1 root root      846888  6月 26 21:11  ssh
-rwxr-xr-x 1 root root      170416  6月 26 21:11  ssh-add
-rwxr-sr-x 1 root _ssh      293304  6月 26 21:11  ssh-agent
-rwxr-xr-x 1 root root        1455  3月 14 04:24  ssh-argv0
-rwxr-xr-x 1 root root       12676  2月 23  2022  ssh-copy-id
-rwxr-xr-x 1 root root         985  2月 11  2021  ssh-import-id
-rwxr-xr-x 1 root root         785 12月  8  2020  ssh-import-id-gh
-rwxr-xr-x 1 root root         785 12月  8  2020  ssh-import-id-lp
-rwxr-xr-x 1 root root      457152  6月 26 21:11  ssh-keygen
-rwxr-xr-x 1 root root      195008  6月 26 21:11  ssh-keyscan
-rwxr-xr-x 1 root root        2159  2月 19 11:08  start-pulseaudio-x11
-rwxr-xr-x 1 root root        5519  3月 25  2022  startx
-rwxr-xr-x 1 root root       80400  2月  8 11:46  stat
lrwxrwxrwx 1 root root           7  7月  2  2024  static-sh -> busybox
-rwxr-xr-x 1 root root       43528  2月  8 11:46  stdbuf
-rwxr-xr-x 1 root root     1972848  2月 16  2022  strace
-rwxr-xr-x 1 root root        1821  2月 16  2021  strace-log-merge
-rwxr-xr-x 1 root root        7941 11月 23  2023  streamzip
lrwxrwxrwx 1 root root          24  1月 23 23:08  strings -> x86_64-linux-gnu-strings
lrwxrwxrwx 1 root root          22  1月 23 23:08  strip -> x86_64-linux-gnu-strip
-rwxr-xr-x 1 root root       76296  2月  8 11:46  stty
-rwsr-xr-x 1 root root       55680  4月  9 23:32  su
-rwsr-xr-x 1 root root      232416  4月  4  2023  sudo
lrwxrwxrwx 1 root root           4  7月  2  2024  sudoedit -> sudo
-rwxr-xr-x 1 root root       89744  4月  4  2023  sudoreplay
-rwxr-xr-x 1 root root       35240  2月  8 11:46  sum
-rwxr-xr-x 1 root root        4649  3月 25  2022  switcherooctl
-rwxr-xr-x 1 root root       35240  2月  8 11:46  sync
-rwxr-xr-x 1 root root          95  2月 21  2022  system-config-printer
-rwxr-xr-x 1 root root          80  2月 21  2022  system-config-printer-applet
-rwxr-xr-x 1 root root     1115760 11月 22  2023  systemctl
lrwxrwxrwx 1 root root          20  7月  2  2024  systemd -> /lib/systemd/systemd
-rwxr-xr-x 1 root root     1809160 11月 22  2023  systemd-analyze
-rwxr-xr-x 1 root root       18928 11月 22  2023  systemd-ask-password
-rwxr-xr-x 1 root root       18816 11月 22  2023  systemd-cat
-rwxr-xr-x 1 root root       23016 11月 22  2023  systemd-cgls
-rwxr-xr-x 1 root root       39312 11月 22  2023  systemd-cgtop
-rwxr-xr-x 1 root root       51744 11月 22  2023  systemd-cryptenroll
-rwxr-xr-x 1 root root       27000 11月 22  2023  systemd-delta
-rwxr-xr-x 1 root root       18808 11月 22  2023  systemd-detect-virt
-rwxr-xr-x 1 root root       22904 11月 22  2023  systemd-escape
-rwxr-xr-x 1 root root      121504 11月 22  2023  systemd-hwdb
-rwxr-xr-x 1 root root       27000 11月 22  2023  systemd-id128
-rwxr-xr-x 1 root root       22928 11月 22  2023  systemd-inhibit
-rwxr-xr-x 1 root root       18928 11月 22  2023  systemd-machine-id-setup
-rwxr-xr-x 1 root root       51808 11月 22  2023  systemd-mount
-rwxr-xr-x 1 root root       22912 11月 22  2023  systemd-notify
-rwxr-xr-x 1 root root       18808 11月 22  2023  systemd-path
-rwxr-xr-x 1 root root       64072 11月 22  2023  systemd-run
-rwxr-xr-x 1 root root       27000 11月 22  2023  systemd-socket-activate
-rwxr-xr-x 1 root root       22912 11月 22  2023  systemd-stdio-bridge
-rwxr-xr-x 1 root root       47608 11月 22  2023  systemd-sysext
-rwxr-xr-x 1 root root       64184 11月 22  2023  systemd-sysusers
-rwxr-xr-x 1 root root      100936 11月 22  2023  systemd-tmpfiles
-rwxr-xr-x 1 root root       35192 11月 22  2023  systemd-tty-ask-password-agent
lrwxrwxrwx 1 root root          13  7月  2  2024  systemd-umount -> systemd-mount
-rwxr-xr-x 1 root root       18744  5月 17  2023  tabs
-rwxr-xr-x 1 root root      100776  2月  8 11:46  tac
-rwxr-xr-x 1 root root       68112  2月  8 11:46  tail
-rwxr-xr-x 1 root root      517952 12月  5  2023  tar
-rwxr-xr-x 1 root root       22912  4月  9 23:32  taskset
-rwxr-xr-x 1 root root      129512  3月 23  2022  tbl
lrwxrwxrwx 1 root root           8  7月  2  2024  tclsh -> tclsh8.6
-rwxr-xr-x 1 root root       14488  3月 25  2022  tclsh8.6
-rwxr-xr-x 1 root root     1331320  2月  8 21:21  tcpdump
lrwxrwxrwx 1 root root          27  7月  2 12:12  tdbbackup -> /etc/alternatives/tdbbackup
-rwxr-xr-x 1 root root       14648  1月 14  2022  tdbbackup.tdbtools
-rwxr-xr-x 1 root root       14648  1月 14  2022  tdbdump
-rwxr-xr-x 1 root root       14648  1月 14  2022  tdbrestore
-rwxr-xr-x 1 root root       27448  1月 14  2022  tdbtool
-rwxr-xr-x 1 root root       35336  2月  8 11:46  tee
lrwxrwxrwx 1 root root          24  7月  2  2024  telnet -> /etc/alternatives/telnet
-rwxr-xr-x 1 root root      110144  3月 25  2022  telnet.netkit
-rwxr-xr-x 1 root root       14360  3月 23  2022  tempfile
-rwxr-xr-x 1 root root       43456  2月  8 11:46  test
-rwxr-xr-x 1 root root       43320  1月  6 05:23  testparm
lrwxrwxrwx 1 root root          33  6月 17 22:53  thunderbird -> ../lib/thunderbird/thunderbird.sh
-rwxr-xr-x 1 root root       88488  5月 17  2023  tic
-rwxr-xr-x 1 root root       35208  3月 24  2022  tificc
-rwxr-xr-x 1 root root       27160  3月 25  2022  time
-rwxr-xr-x 1 root root       47480 11月 22  2023  timedatectl
-rwxr-xr-x 1 root root       39880  2月  8 11:46  timeout
-rwxr-xr-x 1 root root       18680 10月 31  2023  tload
-rwxr-xr-x 1 root root      183192  3月 25  2022  tnftp
-rwxr-xr-x 1 root root       22840  5月 17  2023  toe
-rwxr-xr-x 1 root root      133184 10月 31  2023  top
-rwxr-xr-x 1 root root       22912  3月 21  2022  totem
-rwxr-xr-x 1 root root       39320  3月 21  2022  totem-video-thumbnailer
-rwxr-xr-x 1 root root       92680  2月  8 11:46  touch
-rwxr-xr-x 1 root root       26968  5月 17  2023  tput
-rwxr-xr-x 1 root root       47624  2月  8 11:46  tr
-rwxr-xr-x 1 root root       22672  2月  5  2022  tracepath
-rwxr-xr-x 1 root root      628464  3月 22  2022  tracker3
-rwxr-xr-x 1 root root       35144  3月 24  2022  transicc
-rwxr-xr-x 1 root root     1005768 10月 24  2023  transmission-gtk
-rwxr-xr-x 1 root root       23328  3月 25  2022  transset
-rwxr-xr-x 1 root root      735856  3月 23  2022  troff
-rwxr-xr-x 1 root root       26936  2月  8 11:46  true
-rwxr-xr-x 1 root root       35336  2月  8 11:46  truncate
-rwxr-xr-x 1 root root      211328  3月 25  2022  trust
-rwxr-xr-x 1 root root       26944  5月 17  2023  tset
-rwxr-xr-x 1 root root       47624  2月  8 11:46  tsort
-rwxr-xr-x 1 root root       31240  2月  8 11:46  tty
-rwxr-xr-x 1 root root       15378  5月  7 04:34  tzselect
lrwxrwxrwx 1 root root          16  7月  2  2024  ua -> ubuntu-advantage
-rwxr-xr-x 1 root root        1018 11月  7  2023  ubuntu-advantage
lrwxrwxrwx 1 root root          10  7月  2  2024  ubuntu-bug -> apport-bug
lrwxrwxrwx 1 root root          25  4月 24 08:00  ubuntu-core-launcher -> ../lib/snapd/snap-confine
-rwxr-xr-x 1 root root       23440 11月 28  2023  ubuntu-distro-info
-rwxr-xr-x 1 root root       16749  9月 15  2023  ubuntu-drivers
-rwxr-xr-x 1 root root     6443872  3月 15  2022  ubuntu-report
-rwxr-xr-x 1 root root       22783 12月  8  2023  ubuntu-security-status
-rwxr-xr-x 1 root root       41883  6月 16  2020  ucf
-rwxr-xr-x 1 root root       19367  6月 16  2020  ucfq
-rwxr-xr-x 1 root root       10719  6月 16  2020  ucfr
-rwxr-xr-x 1 root root       27008  4月  9 23:32  uclampset
-rwxr-xr-x 1 root root       26776  3月 25  2022  ucs2any
-rwxr-xr-x 1 root root     1131856 11月 22  2023  udevadm
-rwxr-xr-x 1 root root       59776  4月  8  2022  udisksctl
-rwxr-xr-x 1 root root       22920  4月  9 23:32  ul
-rwxr-xr-x 1 root root      183688  3月 28  2022  umax_pp
-rwsr-xr-x 1 root root       35200  4月  9 23:32  umount
-rwxr-xr-x 1 root root       35336  2月  8 11:46  uname
-rwxr-xr-x 1 root root       99547  1月 15  2022  unattended-upgrade
lrwxrwxrwx 1 root root          18  7月  2  2024  unattended-upgrades -> unattended-upgrade
-rwxr-xr-x 1 root root        2346  9月  5  2022  uncompress
-rwxr-xr-x 1 root root       35360  2月  8 11:46  unexpand
-rwxr-xr-x 1 root root        2762 12月 16  2022  unicode_start
-rwxr-xr-x 1 root root         530 12月 16  2022  unicode_stop
-rwxr-xr-x 1 root root       43528  2月  8 11:46  uniq
-rwxr-xr-x 1 root root       14720  3月 25  2022  unity-scope-loader
-rwxr-xr-x 1 root root       31240  2月  8 11:46  unlink
lrwxrwxrwx 1 root root           3  3月 25  2022  unlz4 -> lz4
lrwxrwxrwx 1 root root          24  7月  2  2024  unlzma -> /etc/alternatives/unlzma
-rwxr-xr-x 1 root root        3774  7月 25  2023  unmkinitramfs
-rwxr-xr-x 1 root root          52  5月 15 15:06  unopkg
-rwxr-xr-x 1 root root       31336  4月  9 23:32  unshare
-rwxr-xr-x 1 root root      135064  3月 25  2022  unsquashfs
lrwxrwxrwx 1 root root           2  7月  2  2024  unxz -> xz
-rwxr-xr-x 1 root root      174512  2月  1 23:52  unzip
-rwxr-xr-x 1 root root       80304  2月  1 23:52  unzipsfx
lrwxrwxrwx 1 root root           4  7月  2  2024  unzstd -> zstd
-rwxr-xr-x 1 root root       59640  2月 23 22:53  update-alternatives
-rwxr-xr-x 1 root root       22920  3月 23  2022  update-desktop-database
-rwxr-xr-x 1 root root        4771 12月  8  2023  update-manager
-rwxr-xr-x 1 root root       59624  1月 14  2022  update-mime-database
-rwxr-xr-x 1 root root       84968  3月  4 18:49  update-notifier
-rwxr-xr-x 1 root root       22832  3月 10  2022  upower
-rwxr-xr-x 1 root root       14568 10月 31  2023  uptime
-rwxr-xr-x 1 root root        2936  3月  4  2022  usb-creator-gtk
-rwxr-xr-x 1 root root        4429  3月 25  2022  usb-devices
-rwxr-xr-x 1 root root       31112  3月 25  2022  usbhid-dump
-rwxr-xr-x 1 root root       14656  3月 20  2023  usb_printerid
-rwxr-xr-x 1 root root       14640  3月 25  2022  usbreset
-rwxr-xr-x 1 root root       35336  2月  8 11:46  users
-rwxr-xr-x 1 root root       22912  4月  9 23:32  utmpdump
-rwxr-xr-x 1 root root       18816  4月  9 23:32  uuidgen
-rwxr-xr-x 1 root root       22912  4月  9 23:32  uuidparse
-rwxr-xr-x 1 root root      138216  2月  8 11:46  vdir
-rwxr-xr-x 1 root root      129576 12月  6  2023  VGAuthService
lrwxrwxrwx 1 root root          20  7月  2  2024  vi -> /etc/alternatives/vi
lrwxrwxrwx 1 root root          22  7月  2  2024  view -> /etc/alternatives/view
-rwxr-xr-x 1 root root       31976  3月 25  2022  viewres
-rwxr-xr-x 1 root root     1520320  5月  3 10:37  vim.tiny
-rwxr-xr-x 1 root root       47848 12月  6  2023  vmhgfs-fuse
-rwxr-xr-x 1 root root       39160 10月 31  2023  vmstat
-rwxr-xr-x 1 root root       10066 12月  6  2023  vm-support
-rwxr-xr-x 1 root root       76352 12月  6  2023  vmtoolsd
-rwxr-xr-x 1 root root       43544 12月  6  2023  vmware-alias-import
-rwxr-xr-x 1 root root       14720 12月  6  2023  vmware-checkvm
-rwxr-xr-x 1 root root       14600  3月  2  2022  vmwarectrl
-rwxr-xr-x 1 root root       14720 12月  6  2023  vmware-hgfsclient
-rwxr-xr-x 1 root root       22840 12月  6  2023  vmware-namespace-cmd
-rwxr-xr-x 1 root root       18744 12月  6  2023  vmware-rpctool
-rwxr-xr-x 1 root root       60000 12月  6  2023  vmware-toolbox-cmd
-rwxr-xr-x 1 root root       18744 12月  6  2023  vmware-vgauth-cmd
-rwxr-xr-x 1 root root       19232 12月  6  2023  vmware-vmblock-fuse
-rwxr-xr-x 1 root root       33104 12月  6  2023  vmware-xferlogs
-rwxr-xr-x 1 root root       26792  6月 28  2022  vstp
-rwxr-xr-x 1 root root       22760 10月 31  2023  w
-rwxr-xr-x 1 root root       22912  4月  9 23:32  wall
-rwxr-xr-x 1 root root       27240 10月 31  2023  watch
-rwxr-xr-x 1 root root       18744  7月  5  2022  watchgnupg
-rwxr-xr-x 1 root root       43440  2月  8 11:46  wc
-rwxr-xr-x 1 root root       31128  4月  9 23:32  wdctl
-rwxr-xr-x 1 root root      470032  6月 19 20:15  wget
-rwxr-xr-x 1 root root       48416  3月 18  2022  whatis
-rwxr-xr-x 1 root root       31576  4月  9 23:32  whereis
lrwxrwxrwx 1 root root          23  7月  2  2024  which -> /etc/alternatives/which
-rwxr-xr-x 1 root root         946  3月 23  2022  which.debianutils
-rwxr-xr-x 1 root root       30888  3月 18  2022  whiptail
-rwxr-xr-x 1 root root       51736  2月  8 11:46  who
-rwxr-xr-x 1 root root       31240  2月  8 11:46  whoami
-rwxr-xr-x 1 root root       48024  2月 23  2022  whoopsie
-rwxr-xr-x 1 root root       22672  2月 23  2022  whoopsie-preferences
-rwxr-xr-x 1 root root       14640  3月 23  2022  word-list-compress
-rwxr-xr-x 1 root root       14656  6月  4  2022  wpa_passphrase
lrwxrwxrwx 1 root root          23  7月  2  2024  write -> /etc/alternatives/write
-rwxr-xr-x 1 root root       22920  4月  9 23:32  write.ul
lrwxrwxrwx 1 root root           4  4月  9 11:18  X -> Xorg
lrwxrwxrwx 1 root root           1  7月  2  2024  X11 -> .
-rwxr-xr-x 1 root root      202200  3月 25  2022  x11perf
-rwxr-xr-x 1 root root        2807  3月 25  2022  x11perfcomp
lrwxrwxrwx 1 root root           7  4月  9 23:32  x86_64 -> setarch
-rwxr-xr-x 1 root root       27344  1月 23 23:08  x86_64-linux-gnu-addr2line
-rwxr-xr-x 1 root root       55792  1月 23 23:08  x86_64-linux-gnu-ar
-rwxr-xr-x 1 root root      467352  1月 23 23:08  x86_64-linux-gnu-as
-rwxr-xr-x 1 root root       22800  1月 23 23:08  x86_64-linux-gnu-c++filt
lrwxrwxrwx 1 root root           6  7月  2  2024  x86_64-linux-gnu-cpp -> cpp-11
-rwxr-xr-x 1 root root      928584  5月 13  2023  x86_64-linux-gnu-cpp-11
-rwxr-xr-x 1 root root     1904000  1月 23 23:08  x86_64-linux-gnu-dwp
-rwxr-xr-x 1 root root       35552  1月 23 23:08  x86_64-linux-gnu-elfedit
lrwxrwxrwx 1 root root           6  8月  5  2021  x86_64-linux-gnu-g++ -> g++-11
-rwxr-xr-x 1 root root      932680  5月 13  2023  x86_64-linux-gnu-g++-11
lrwxrwxrwx 1 root root           6  8月  5  2021  x86_64-linux-gnu-gcc -> gcc-11
-rwxr-xr-x 1 root root      928584  5月 13  2023  x86_64-linux-gnu-gcc-11
lrwxrwxrwx 1 root root           9  8月  5  2021  x86_64-linux-gnu-gcc-ar -> gcc-ar-11
-rwxr-xr-x 1 root root       27176  5月 13  2023  x86_64-linux-gnu-gcc-ar-11
lrwxrwxrwx 1 root root           9  8月  5  2021  x86_64-linux-gnu-gcc-nm -> gcc-nm-11
-rwxr-xr-x 1 root root       27176  5月 13  2023  x86_64-linux-gnu-gcc-nm-11
lrwxrwxrwx 1 root root          13  8月  5  2021  x86_64-linux-gnu-gcc-ranlib -> gcc-ranlib-11
-rwxr-xr-x 1 root root       27176  5月 13  2023  x86_64-linux-gnu-gcc-ranlib-11
lrwxrwxrwx 1 root root           7  8月  5  2021  x86_64-linux-gnu-gcov -> gcov-11
-rwxr-xr-x 1 root root      409608  5月 13  2023  x86_64-linux-gnu-gcov-11
lrwxrwxrwx 1 root root          12  8月  5  2021  x86_64-linux-gnu-gcov-dump -> gcov-dump-11
-rwxr-xr-x 1 root root      257880  5月 13  2023  x86_64-linux-gnu-gcov-dump-11
lrwxrwxrwx 1 root root          12  8月  5  2021  x86_64-linux-gnu-gcov-tool -> gcov-tool-11
-rwxr-xr-x 1 root root      282552  5月 13  2023  x86_64-linux-gnu-gcov-tool-11
lrwxrwxrwx 1 root root          24  1月 23 23:08  x86_64-linux-gnu-gold -> x86_64-linux-gnu-ld.gold
-rwxr-xr-x 1 root root      114472  1月 23 23:08  x86_64-linux-gnu-gprof
lrwxrwxrwx 1 root root          23  1月 23 23:08  x86_64-linux-gnu-ld -> x86_64-linux-gnu-ld.bfd
-rwxr-xr-x 1 root root     1744376  1月 23 23:08  x86_64-linux-gnu-ld.bfd
-rwxr-xr-x 1 root root     3189920  1月 23 23:08  x86_64-linux-gnu-ld.gold
-rwxr-xr-x 1 root root    24887296  5月 13  2023  x86_64-linux-gnu-lto-dump-11
-rwxr-xr-x 1 root root       44672  1月 23 23:08  x86_64-linux-gnu-nm
-rwxr-xr-x 1 root root      166440  1月 23 23:08  x86_64-linux-gnu-objcopy
-rwxr-xr-x 1 root root      373888  1月 23 23:08  x86_64-linux-gnu-objdump
lrwxrwxrwx 1 root root          34  7月  2 11:52  x86_64-linux-gnu-pkg-config -> /usr/share/pkg-config-crosswrapper
-rwxr-xr-x 1 root root       55792  1月 23 23:08  x86_64-linux-gnu-ranlib
-rwxr-xr-x 1 root root      776640  1月 23 23:08  x86_64-linux-gnu-readelf
-rwxr-xr-x 1 root root       31184  1月 23 23:08  x86_64-linux-gnu-size
-rwxr-xr-x 1 root root       31344  1月 23 23:08  x86_64-linux-gnu-strings
-rwxr-xr-x 1 root root      166472  1月 23 23:08  x86_64-linux-gnu-strip
-rwxr-xr-x 2 root root       51488  3月 25  2022  x86_64-pc-linux-gnu-pkg-config
-rwxr-xr-x 1 root root       63912  3月 23  2022  xargs
-rwxr-xr-x 1 root root       56280  3月 25  2022  xauth
-rwxr-xr-x 1 root root       24736  3月 25  2022  xbiff
-rwxr-xr-x 1 root root      203264  6月 28  2022  xbrlapi
-rwxr-xr-x 1 root root       48624  3月 25  2022  xcalc
-rwxr-xr-x 1 root root       23120  3月 25  2022  xclipboard
-rwxr-xr-x 1 root root       62528  3月 25  2022  xclock
-rwxr-xr-x 1 root root       35896  3月 25  2022  xcmsdb
-rwxr-xr-x 1 root root       23760  3月 25  2022  xconsole
-rwxr-xr-x 1 root root       22832  3月 25  2022  xcursorgen
-rwxr-xr-x 1 root root       19008  3月 25  2022  xcutsel
-rwxr-xr-x 1 root root       51344  2月 11  2022  xdg-dbus-proxy
-rwxr-xr-x 1 root root       20642  8月 22  2022  xdg-desktop-icon
-rwxr-xr-x 1 root root       43280  8月 22  2022  xdg-desktop-menu
-rwxr-xr-x 1 root root       26934  8月 22  2022  xdg-email
-rwxr-xr-x 1 root root       30032  8月 22  2022  xdg-icon-resource
-rwxr-xr-x 1 root root       42126  8月 22  2022  xdg-mime
-rwxr-xr-x 1 root root       26075  8月 22  2022  xdg-open
-rwxr-xr-x 1 root root       38003  8月 22  2022  xdg-screensaver
-rwxr-xr-x 1 root root       38417  8月 22  2022  xdg-settings
-rwxr-xr-x 1 root root         234  3月 25  2022  xdg-user-dir
-rwxr-xr-x 1 root root       22680  3月 25  2022  xdg-user-dirs-gtk-update
-rwxr-xr-x 1 root root       26856  3月 25  2022  xdg-user-dirs-update
-rwxr-xr-x 1 root root      110720  3月 25  2022  xditview
-rwxr-xr-x 1 root root       39992  3月 25  2022  xdpyinfo
-rwxr-xr-x 1 root root       14648  3月 25  2022  xdriinfo
-rwxr-xr-x 1 root root      726368  3月 25  2022  xedit
-rwxr-xr-x 1 root root     2463360  4月  9 11:18  Xephyr
-rwxr-xr-x 1 root root       35456  3月 25  2022  xev
-rwxr-xr-x 1 root root       24256  3月 25  2022  xeyes
-rwxr-xr-x 1 root root       40968  3月 25  2022  xfd
-rwxr-xr-x 1 root root       44904  3月 25  2022  xfontsel
-rwxr-xr-x 1 root root       14656  3月 25  2022  xgamma
-rwxr-xr-x 1 root root       72064  3月 25  2022  xgc
-rwxr-xr-x 1 root root       18752  3月 25  2022  xhost
-rwxr-xr-x 1 root root       22840  3月 25  2022  xinit
-rwxr-xr-x 1 root root       64336  3月 25  2022  xinput
-rwxr-xr-x 1 root root       14664  3月 25  2022  xkbbell
-rwxr-xr-x 1 root root      217192  3月 25  2022  xkbcomp
-rwxr-xr-x 1 root root       43400  3月 25  2022  xkbevd
-rwxr-xr-x 1 root root       92512  3月 25  2022  xkbprint
-rwxr-xr-x 1 root root       23656  3月 25  2022  xkbvleds
-rwxr-xr-x 1 root root       23720  3月 25  2022  xkbwatch
-rwxr-xr-x 1 root root       16982  3月 25  2022  xkeystone
-rwxr-xr-x 1 root root       14648  3月 25  2022  xkill
-rwxr-xr-x 1 root root       23472  3月 25  2022  xload
-rwxr-xr-x 1 root root       23744  3月 25  2022  xlogo
-rwxr-xr-x 1 root root       14648  3月 25  2022  xlsatoms
-rwxr-xr-x 1 root root       18752  3月 25  2022  xlsclients
-rwxr-xr-x 1 root root       27032  3月 25  2022  xlsfonts
-rwxr-xr-x 1 root root       49472  3月 25  2022  xmag
-rwxr-xr-x 1 root root       79056  3月 25  2022  xman
-rwxr-xr-x 1 root root       23672  3月 25  2022  xmessage
-rwxr-xr-x 1 root root       22840  2月 17 02:14  xmlcatalog
-rwxr-xr-x 1 root root       80840  2月 17 02:14  xmllint
-rwxr-xr-x 1 root root       43704  3月 25  2022  xmodmap
-rwxr-xr-x 1 root root       14880  3月 25  2022  xmore
-rwxr-xr-x 1 root root         274  4月  9 11:18  Xorg
-rwxr-xr-x 1 root root       49776  3月 25  2022  xprop
-rwxr-xr-x 1 root root       18752  3月 20  2023  xqxdecode
-rwxr-xr-x 1 root root       63904  3月 25  2022  xrandr
-rwxr-xr-x 1 root root       35224  3月 25  2022  xrdb
-rwxr-xr-x 1 root root       14728  3月 25  2022  xrefresh
lrwxrwxrwx 1 root root          35  7月  2  2024  x-session-manager -> /etc/alternatives/x-session-manager
-rwxr-xr-x 1 root root       35136  3月 25  2022  xset
-rwxr-xr-x 1 root root       14656  3月 25  2022  xsetmode
-rwxr-xr-x 1 root root       14656  3月 25  2022  xsetpointer
-rwxr-xr-x 1 root root       18752  3月 25  2022  xsetroot
-rwxr-xr-x 1 root root       65376  4月  6  2022  xsetwacom
-rwxr-xr-x 1 root root       30872  8月 18  2022  xsltproc
-rwxr-xr-x 1 root root      101080  3月 25  2022  xsm
-rwxr-xr-x 1 root root       15248  3月 25  2022  xstdcmap
-rwxr-xr-x 1 root root        5167 11月 23  2023  xsubpp
lrwxrwxrwx 1 root root          37  7月  2  2024  x-terminal-emulator -> /etc/alternatives/x-terminal-emulator
-rwxr-xr-x 1 root root       44808  3月 25  2022  xvidtune
-rwxr-xr-x 1 root root       18744  3月 25  2022  xvinfo
-rwxr-xr-x 1 root root     2221016  4月  9 09:13  Xwayland
-rwxr-xr-x 1 root root       31040  3月 25  2022  xwd
-rwxr-xr-x 1 root root       51592  3月 25  2022  xwininfo
-rwxr-xr-x 1 root root       35120  3月 25  2022  xwud
lrwxrwxrwx 1 root root          31  7月  2  2024  x-www-browser -> /etc/alternatives/x-www-browser
-rwxr-xr-x 1 root root       18720  5月  3 10:37  xxd
-rwxr-xr-x 1 root root       84504  4月  8  2022  xz
lrwxrwxrwx 1 root root           2  7月  2  2024  xzcat -> xz
lrwxrwxrwx 1 root root           6  7月  2  2024  xzcmp -> xzdiff
-rwxr-xr-x 1 root root        7023  4月  8  2022  xzdiff
lrwxrwxrwx 1 root root           6  7月  2  2024  xzegrep -> xzgrep
lrwxrwxrwx 1 root root           6  7月  2  2024  xzfgrep -> xzgrep
-rwxr-xr-x 1 root root        6015  4月  8  2022  xzgrep
-rwxr-xr-x 1 root root        1799  4月  8  2022  xzless
-rwxr-xr-x 1 root root        2162  4月  8  2022  xzmore
lrwxrwxrwx 1 root root          22  7月  2 11:50  yacc -> /etc/alternatives/yacc
-rwxr-xr-x 1 root root       67816  3月 28  2022  yelp
-rwxr-xr-x 1 root root       31112  2月  8 11:46  yes
lrwxrwxrwx 1 root root           8  7月  2  2024  ypdomainname -> hostname
-rwxr-xr-x 1 root root        1984  9月  5  2022  zcat
-rwxr-xr-x 1 root root        1678  9月  5  2022  zcmp
-rwxr-xr-x 1 root root        5898  9月  5  2022  zdiff
-rwxr-xr-x 1 root root       26840  5月  7 04:34  zdump
-rwxr-xr-x 1 root root          29  9月  5  2022  zegrep
-rwxr-xr-x 1 root root      131840  5月  2  2022  zenity
-rwxr-xr-x 1 root root          29  9月  5  2022  zfgrep
-rwxr-xr-x 1 root root        2081  9月  5  2022  zforce
-rwxr-xr-x 1 root root        8103  9月  5  2022  zgrep
-rwxr-xr-x 1 root root      203768  3月 25  2022  zip
-rwxr-xr-x 1 root root       72088  3月 25  2022  zipcloak
-rwxr-xr-x 1 root root       60065 11月 23  2023  zipdetails
-rwxr-xr-x 1 root root        2959  2月  1 23:52  zipgrep
-rwxr-xr-x 1 root root      174512  2月  1 23:52  zipinfo
-rwxr-xr-x 1 root root       63896  3月 25  2022  zipnote
-rwxr-xr-x 1 root root       59800  3月 25  2022  zipsplit
-rwxr-xr-x 1 root root       26952  3月 20  2023  zjsdecode
-rwxr-xr-x 1 root root        2206  9月  5  2022  zless
-rwxr-xr-x 1 root root        1842  9月  5  2022  zmore
-rwxr-xr-x 1 root root        4577  9月  5  2022  znew
-rwxr-xr-x 1 root root      875096  3月 25  2022  zstd
lrwxrwxrwx 1 root root           4  7月  2  2024  zstdcat -> zstd
-rwxr-xr-x 1 root root        3869  3月 25  2022  zstdgrep
-rwxr-xr-x 1 root root          30  3月 25  2022  zstdless
lrwxrwxrwx 1 root root           4  7月  2  2024  zstdmt -> zstd
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ 
rootroot@rootroot-virtual-machine:/usr/bin$ sudo shutdown -h now
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(192.168.3.191) at 12:16:58.

Type `help' to learn how to use Xshell prompt.
[C:\~]$ 

[END] 2024/7/2 12:18:42
 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值