国庆过后甚久,近期终于恢复
0x00.前言 点击此处 ← 查看折叠 隔一阵子就炸一次的面板
一直以为被墙了,今晚才反应过来很奇怪啊,能ping
,但是nginx
外网页面看不了(还不是80
端口),ssh
连不上……直到我打开了Graphs
,wocCPU爆了
重启之后终于登录进去了,提示距离上次成功登录有十万次错误,绝了,htop
也没看出来是哪个进程,并不是弱密码,奇怪的是那上面自带的fail2ban
进程在但是貌似没生效 也没去看相关日志,只是把/var/log/nginx
和/var/log/v2ray
这俩文件夹下下来了,等后期再分析…… 然后就直接重装新系统并传了密钥
0x01.ssh
关闭密码登录 新系统刚进去就看到了两次失败登录尝试,于是直接关了密码登录/etc/ssh/sshd_config
:PasswordAuthentication no
,systemctl restart sshd.service
注销之后果然密码登录不行,密钥ok
修改配置文件不会显示在这里
或在重装系统时选好
0x02.v2ray
合集 作者博客:v2-ui,一个全新的多协议多用户 v2ray 面板 又搜罗到好的面板了,用了数月看起来还不错
登录
主界面
使用官方原版安装,其实只需要配置文件提前写好就ok
看了下手册,其实只需要bash <(curl -L -s https://install.direct/go.sh)
,之后记好PORT
&UUID
即可
点击此处 ← 查看折叠 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 [root@CentOS ~] Installing V2Ray v4.19.1 on x86_64 Downloading V2Ray: https://github.com/v2ray/v2ray-core/releases/download/v4.19.1/v2ray-linux-64.zip % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 608 0 608 0 0 1720 0 --:--:-- --:--:-- --:--:-- 1722 100 11.2M 100 11.2M 0 0 2729k 0 0:00:04 0:00:04 --:--:-- 3141k Updating software repo Installing unzip Extracting V2Ray package to /tmp/v2ray. Archive: /tmp/v2ray/v2ray.zip inflating: /tmp/v2ray/config.json creating: /tmp/v2ray/doc/ inflating: /tmp/v2ray/doc/readme.md inflating: /tmp/v2ray/geoip.dat inflating: /tmp/v2ray/geosite.dat creating: /tmp/v2ray/systemd/ inflating: /tmp/v2ray/systemd/v2ray.service creating: /tmp/v2ray/systemv/ inflating: /tmp/v2ray/systemv/v2ray inflating: /tmp/v2ray/v2ctl extracting: /tmp/v2ray/v2ctl.sig inflating: /tmp/v2ray/v2ray extracting: /tmp/v2ray/v2ray.sig inflating: /tmp/v2ray/vpoint_socks_vmess.json inflating: /tmp/v2ray/vpoint_vmess_freedom.json PORT:<rm > UUID:<rm > Created symlink from /etc/systemd/system/multi-user.target.wants/v2ray.service to /etc/systemd/system/v2ray.service. V2Ray v4.19.1 is installed. [root@CentOS ~] ● v2ray.service - V2Ray Service Loaded: loaded (/etc/systemd/system/v2ray.service; enabled; vendor preset: disabled) Active: inactive (dead) [root@CentOS ~] [root@CentOS ~] Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service. Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service. [root@CentOS ~] [root@CentOS ~] ● v2ray.service - V2Ray Service Loaded: loaded (/etc/systemd/system/v2ray.service; enabled; vendor preset: disabled) Active: active (running) since Tue 2019-06-25 22:18:58 CST; 3s ago Main PID: 2107 (v2ray) CGroup: /system.slice/v2ray.service └─2107 /usr/bin/v2ray/v2ray -config /etc/v2ray/config.json Jun 25 22:18:58 CentOS systemd[1]: Started V2Ray Service. Jun 25 22:18:58 CentOS v2ray[2107]: V2Ray 4.19.1 (Let\'s Fly) Custom Jun 25 22:18:58 CentOS v2ray[2107]: A unified platform for anti-censorship. Jun 25 22:18:58 CentOS v2ray[2107]: 2019/06/25 22:18:58 [Warning] v2ray.com/core: V2Ray...ted Hint: Some lines were ellipsized, use -l to show in full. [root@CentOS ~]# cat /etc/v2ray/config.json { "inbounds": [{ "port": <rm>, "protocol": "vmess", "settings": { "clients": [ { "id": "<rm>", "level": 1, "alterId": 64 } ] } }], "outbounds": [{ "protocol": "freedom", "settings": {} },{ "protocol": "blackhole", "settings": {}, "tag": "blocked" }], "routing": { "rules": [ { "type": "field", "ip": ["geoip:private"], "outboundTag": "blocked" } ] } }
一键安装脚本有的是,特意看了内容有的真的会保存你的信息……安装原版的又不顺手,最终选了这个,带图形化管理界面不错hhh
,是用Flask
写的wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/V2ray.Fun/master/install.sh && bash install.sh
修改连接
还能直接看运行日志,也是十分爽到了运行日志
然后第二天就又炸了,正好遇到我们仍未知道那天就炸了的原因.jpG
0x03.服务器版本 1 2 [root@CentOS ~] centos-release-7-9.2009.1.el7.centos.x86_64
0x04.修改时区 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [root@CentOS ~] Local time: Sun 2019-05-12 13:51:57 UTC Universal time: Sun 2019-05-12 13:51:57 UTC RTC time: n/a Time zone: UTC (UTC, +0000) NTP enabled: n/a NTP synchronized: yes RTC in local TZ: no DST active: n/a [root@CentOS ~] [root@CentOS ~] Local time: Sun 2019-05-12 21:52:18 CST Universal time: Sun 2019-05-12 13:52:18 UTC RTC time: n/a Time zone: Asia/Shanghai (CST, +0800) NTP enabled: n/a NTP synchronized: yes RTC in local TZ: no DST active: n/a
0x05.常用工具 1 2 yum update -y yum install vim htop axel ffmpeg -y
0x06.挂载第三方存储 COSFS
挂载不能1 fuse: device not found, try 'modprobe fuse' first
gdrive 完美过草.jpG
去看Issues
果然,Application is not verified ,然而还是可以使用的1 2 3 4 5 6 7 8 9 10 11 [root@CentOS ~]# gdrive about Authentication needed Go to the following url in your browser: https://accounts.google.com/o/oauth2/auth?access_type=offline&client_id=<rm>.apps.googleusercontent.com&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive&state=state Enter verification code: <rm> User: 远哥制造, yuangezhizao@gmail.com Used: 1.8 GB Free: 14.3 GB Total: 16.1 GB Max upload size: 5.2 TB
使用rclone
挂载Google Drive
不能 点击此处 ← 查看折叠 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 [root@CentOS ~] [root@CentOS ~] [root@CentOS ~] [root@CentOS ~] 2022/01/17 18:01:50 NOTICE: Config file "/root/.config/rclone/rclone.conf" not found - using defaults No remotes found - make a new one n) New remote s) Set configuration password q) Quit config n/s/q> n name> google_drive Option Storage. Type of storage to configure. Enter a string value. Press Enter for the default ("" ). Choose a number from below, or type in your own value. …… 16 / Google Drive \ "drive" …… Storage> 16 Storage> 16 Option client_id. Google Application Client Id Setting your own is recommended. See https://rclone.org/drive/ If you leave this blank, it will use an internal key which is low performance. Enter a string value. Press Enter for the default ("" ). client_id> <rm > Option client_secret. OAuth Client Secret. Leave blank normally. Enter a string value. Press Enter for the default ("" ). client_secret> <rm > Option scope. Scope that rclone should use when requesting access from drive. Enter a string value. Press Enter for the default ("" ). Choose a number from below, or type in your own value. 1 / Full access all files, excluding Application Data Folder. \ "drive" 2 / Read-only access to file metadata and file contents. \ "drive.readonly" / Access to files created by rclone only. 3 | These are visible in the drive website. | File authorization is revoked when the user deauthorizes the app. \ "drive.file" / Allows read and write access to the Application Data folder. 4 | This is not visible in the drive website. \ "drive.appfolder" / Allows read-only access to file metadata but 5 | does not allow any access to read or download file content. \ "drive.metadata.readonly" scope> 1 Option root_folder_id. ID of the root folder. Leave blank normally. Fill in to access "Computers" folders (see docs), or for rclone to use a non root folder as its starting point. Enter a string value. Press Enter for the default ("" ). root_folder_id> Option service_account_file. Service Account Credentials JSON file path. Leave blank normally. Needed only if you want use SA instead of interactive login. Leading `~` will be expanded in the file name as will environment variables such as `${RCLONE_CONFIG_DIR} `. Enter a string value. Press Enter for the default ("" ). service_account_file> Edit advanced config? y) Yes n) No (default) y/n> Use auto config? * Say Y if not sure * Say N if you are working on a remote or headless machine y) Yes (default) n) No y/n> N Option config_verification_code. Verification code Go to this URL, authenticate then paste the code here. https://accounts.google.com/o/oauth2/auth?access_type=offline&client_id=<rm > Enter a string value. Press Enter for the default ("" ). config_verification_code> <rm > 2022/01/17 18:14:28 NOTICE: Make sure your Redirect URL is set to "urn:ietf:wg:oauth:2.0:oob" in your custom config. Configure this as a Shared Drive (Team Drive)? y) Yes n) No (default) y/n> -------------------- [google_drive] type = driveclient_id = <rm > client_secret = <rm > scope = drive token = {"access_token" :"<rm>" ,"token_type" :"Bearer" ,"refresh_token" :"<rm>" ,"expiry" :"2022-01-17T19:14:27.423017422+08:00" } team_drive = -------------------- y) Yes this is OK (default) e) Edit this remote d) Delete this remote y/e/d> y Current remotes: Name Type ==== ==== google_drive drive e) Edit existing remote n) New remote d) Delete remote r) Rename remote c) Copy remote s) Set configuration password q) Quit config e/n/d/r/c/s/q> q [root@CentOS ~]
然后新建systemd
单元文件
1 2 3 4 5 6 7 8 9 10 11 12 [root@CentOS ~] [Unit] Description=Google Drive mounter After=network.target network-online.target nss-lookup.target [Service] Restart=on-failure Type=simple ExecStart=/usr/bin/rclone mount google_drive:/ /mnt/google_drive/ --allow-non-empty --vfs-cache-mode writes --allow-other [Install] WantedBy=multi-user.target
最后尝试启动
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [root@CentOS ~] Created symlink from /etc/systemd/system/multi-user.target.wants/gdrive.service to /usr/lib/systemd/system/gdrive.service. [root@CentOS ~] ● gdrive.service - Google Drive mounter Loaded: loaded (/usr/lib/systemd/system/gdrive.service; enabled; vendor preset: disabled) Active: failed (Result: start-limit) since Mon 2022-01-17 18:19:02 CST; 383ms ago Process: 15406 ExecStart=/usr/bin/rclone mount google_drive:/ /mnt/google_drive/ --allow-non-empty --vfs-cache-mode writes --allow-other (code=exited, status=1/FAILURE) Main PID: 15406 (code=exited, status=1/FAILURE) Jan 17 18:19:02 CentOS systemd[1]: gdrive.service: main process exited, code...RE Jan 17 18:19:02 CentOS systemd[1]: Unit gdrive.service entered failed state. Jan 17 18:19:02 CentOS systemd[1]: gdrive.service failed. Jan 17 18:19:02 CentOS systemd[1]: gdrive.service holdoff time over, schedul...t. Jan 17 18:19:02 CentOS systemd[1]: Stopped Google Drive mounter. Jan 17 18:19:02 CentOS systemd[1]: start request repeated too quickly for gd...ce Jan 17 18:19:02 CentOS systemd[1]: Failed to start Google Drive mounter. Jan 17 18:19:02 CentOS systemd[1]: Unit gdrive.service entered failed state. Jan 17 18:19:02 CentOS systemd[1]: gdrive.service failed. Hint: Some lines were ellipsized, use -l to show in full.
寄了,果然单独执行就报错草
1 2 3 4 [root@CentOS ~] [root@CentOS ~] 2022/01/17 18:19:44 mount helper error: fusermount: fuse device not found, try 'modprobe fuse' first 2022/01/17 18:19:44 Fatal error: failed to mount FUSE fs: fusermount: exit status 1
0x07.关闭防火墙 2021-06-05 19:27:01
:恢复开启防火墙,并配合fail2ban
使用 启动:systemctl start firewalld
开启自启:systemctl enable firewalld
这台白嫖一年的国外机子上完全没有 必要开这玩楞,每次端口开放不能真是太烦了(flag
草关闭:systemctl stop firewalld
开机禁用:systemctl disable firewalld
状态:systemctl status firewalld
于是依赖于firewalld
的fail2ban
就变成摆设了……
换新系统之腾讯云学生机 CentOS 8.0 64 位#0x04-编译安装python3104环境 注:SystemError: <built-in function compile> returned NULL without setting an error generate-posix-vars failed
报错的解决方法:使用高版本gcc
安装SCL
(Software Collections
):yum install centos-release-scl-rh -y
搜索:yum search "devtoolset"
安装:yum install devtoolset-9-gcc-c++ devtoolset-9-gcc -y
使用:scl enable devtoolset-9 bash
查看版本:gcc -v
若需长期使用:echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [root@CentOS dl] Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) [root@CentOS dl] [WARN] The Fuck will drop Python 2 support soon, more details https://github.com/nvbn/thefuck/issues/685 [root@CentOS dl] Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-9/root/usr --mandir=/opt/rh/devtoolset-9/root/usr/share/man --infodir=/opt/rh/devtoolset-9/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-9.3.1-20200408/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 9.3.1 20200408 (Red Hat 9.3.1-2) (GCC)
然后竟然出了官方版
1 2 3 [root@CentOS ~] [root@CentOS ~] [root@CentOS ~]
测速结果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [root@CentOS ~]# speedtest ============================================================================== You may only use this Speedtest software and information generated from it for personal, non-commercial use, through a command line interface on a personal computer. Your use of this software is subject to the End User License Agreement, Terms of Use and Privacy Policy at these URLs: https://www.speedtest.net/about/eula https://www.speedtest.net/about/terms https://www.speedtest.net/about/privacy ============================================================================== Do you accept the license? [type YES to accept]: YES License acceptance recorded. Continuing. Speedtest by Ookla Server: Race Communications - Los Angeles, CA (id = 17527) ISP: QuadraNet Latency: 0.38 ms (0.03 ms jitter) Download: 99.59 Mbps (data used: 47.3 MB ) Upload: 96.88 Mbps (data used: 128.1 MB ) Packet Loss: 0.0% Result URL: https://www.speedtest.net/result/c/<rm>
基于py
的上古speedtest-cli
已成为历史pip3 install speedtest-cli
1 2 3 4 5 6 7 8 9 10 [root@CentOS ~] Retrieving speedtest.net configuration... Testing from QuadraNet (<rm >)... Retrieving speedtest.net server list... Selecting best server based on ping... Hosted by Kansas Research and Education Network (Wichita, KS) [43.14 km]: 46.056 ms Testing download speed................................................................................ Download: 96.85 Mbit/s Testing upload speed...................................................................................................... Upload: 95.07 Mbit/s
经过多次试验,不管是选择源码编译安装
还是二进制极速安装
都会失败,想了下原因应该是机子配置太低…… 即使安装完成,但是会自动启动应用程序,而且默认配置已经吃满了性能,所以内存直接就爆掉了,过草 因此,想安装软件只能自己手动安装,再修改配置文件,最后启动(生草,比如 ng
就是这么搞的 比较搞笑的一点是,即使Web Server
使用的是ng
而不是Apache24
,仍然会遇到进程莫名没了的情况 最近数次梯子炸了的时候都是发现反代v2
的ng
进程没了,只能使用备用的tcp
版v2
替代使用 猜测是内存不足,毕竟只有512 MB
,白嫖的月一刀套餐能用就不错了hhh
,Docker
可是想都不用想的了 之后准备试试基于Go
的Caddy
,配置文件的编写看起来很精简……
每次进来都会弹出安装提示
主界面
比较实用的是Web Shell
和文件管理
,这样在使用Co.
网络这种含有特殊防火墙无法连接22
端口的环境下也可以顺利操作了hhh
顺便一提,十月份特殊时期靠着Co.
代理能连上proxy.yuangezhizao.cn
,然后bt
面板主界面一直开着没关,导致访问量爆炸到了191114
突然被SC
课电话查水表了,“这个域名是你自己的吧……你这个是干什么的?”上午巨困……内部电话也听不太清……后来想想解释的也不对(Doge网 络 审 计 大 草
它是本人所见过的最高大上的监控?系统了,于是立即把手头上的全部Linux
服务器都安装上这玩楞 界面吊炸天,比如梯子服务器监控地址:https://proxy-cf.yuangezhizao.cn/netdata
1 wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh && sh /tmp/netdata-kickstart.sh --stable-channel --disable-telemetry
最后再参照As a subfolder to an existing virtual host 用nginx
套一层反向代理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 upstream netdata { server 127.0.0.1:19999; keepalive 64; } server { listen 80; # uncomment the line if you want nginx to listen on IPv6 address #listen [::]:80; # the virtual host name of this subfolder should be exposed #server_name netdata.example.com; location = /netdata { return 301 /netdata/; } location ~ /netdata/(?<ndpath>.*) { proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; proxy_pass_request_headers on; proxy_set_header Connection "keep-alive"; proxy_store off; proxy_pass http://netdata/$ndpath$is_args$args; gzip on; gzip_proxied any; gzip_types *; } }
0x12.备份 目前备份了/var/log
和/www/wwwlogs
两处文件夹至谷歌的云端硬盘中
1 2 3 4 5 6 7 8 9 10 [root@proxy ~] Transferred: 221.895 MiB / 221.895 MiB, 100%, 4.710 MiB/s, ETA 0s Errors: 1 (retrying may help ) Checks: 57 / 57, 100% Transferred: 33 / 33, 100% Elapsed time: 48.0s [root@proxy ~] Transferred: 2.872 GiB / 2.872 GiB, 100%, 6.142 MiB/s, ETA 0s Transferred: 9 / 9, 100% Elapsed time: 6m8.7s
0x13.后记 本来还想着放到路由器上,后来想想还是算了吧,毕竟性能(其实K2
还可以的)2019.10
翻车了。。。后借用大佬的Cisco AnyConnect
才够到了失恋的国外机子(骚操作 连上之后CloudFlare
反代ws
协议的v2ray
才能勉强持续使用…… 然而都10.11
也不见恢复的样子,过草过草…… 所以就干脆一步到位直接重装系统了……
0x14.附注:已安装包(同步更新) 应该是最小化版本(因为vim
都没有……)
htop 看了眼进程列表
其实也就是多安了个bt
面板而已,顺便把v2ray
和v2-ui
都拿ng
反代上(正是因为梯子炸了ng
进程没了才发现4
天前机子竟然被重启过……= =
点击此处 ← 查看折叠 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 [root@CentOS ~] Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. Repodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast Determining fastest mirrors * base: mirrors.ocf.berkeley.edu * centos-sclo-rh: mirrors.sonic.net * epel: d2lzkl7pfhq30w.cloudfront.net * extras: la.mirrors.clouvider.net * updates: centos-distro.1gservers.com Installed Packages GeoIP.x86_64 1.5.0-14.el7 @base Judy.x86_64 1.0.5-8.el7 @epel Judy-devel.x86_64 1.0.5-8.el7 @epel PyYAML.x86_64 3.10-11.el7 @base SDL.x86_64 1.2.15-17.el7 @base acl.x86_64 2.2.51-15.el7 @base alsa-lib.x86_64 1.1.8-1.el7 @base apr.x86_64 1.4.8-7.el7 @base apr-util.x86_64 1.5.2-6.el7_9.1 @updates aria2.x86_64 1.34.0-5.el7 @epel at.x86_64 3.1.13-25.el7_9 @updates atomic-registries.x86_64 1:1.22.1-33.gitb507039.el7_8 @extras audit-libs.x86_64 2.8.5-4.el7 @base audit-libs-python.x86_64 2.8.5-4.el7 @base autoconf.noarch 2.69-11.el7 @base autoconf-archive.noarch 2017.03.21-1.el7 @base autogen.x86_64 5.18-5.el7 @base autogen-libopts.x86_64 5.18-5.el7 @base automake.noarch 1.13.4-3.el7 @base avahi-libs.x86_64 0.6.31-20.el7 @base axel.x86_64 2.4-9.el7 @epel basesystem.noarch 10.0-7.el7.centos @base bash.x86_64 4.2.46-35.el7_9 @updates bc.x86_64 1.06.95-13.el7 @base bind-export-libs.x86_64 32:9.11.4-26.P2.el7_9.16 @updates bind-libs.x86_64 32:9.11.4-26.P2.el7_9.16 @updates bind-libs-lite.x86_64 32:9.11.4-26.P2.el7_9.16 @updates bind-license.noarch 32:9.11.4-26.P2.el7_9.16 @updates bind-utils.x86_64 32:9.11.4-26.P2.el7_9.16 @updates binutils.x86_64 2.27-44.base.el7_9.1 @updates bison.x86_64 3.0.4-2.el7 installed bison-devel.x86_64 3.0.4-2.el7 @base boost-iostreams.x86_64 1.53.0-28.el7 @base boost-program-options.x86_64 1.53.0-28.el7 @base boost-random.x86_64 1.53.0-28.el7 @base boost-regex.x86_64 1.53.0-28.el7 @base boost-system.x86_64 1.53.0-28.el7 @base boost-thread.x86_64 1.53.0-28.el7 @base bridge-utils.x86_64 1.5-9.el7 @base bzip2.x86_64 1.0.6-13.el7 @base bzip2-devel.x86_64 1.0.6-13.el7 @base bzip2-libs.x86_64 1.0.6-13.el7 @base c-ares.x86_64 1.10.0-3.el7_9.1 @updates c-ares-devel.x86_64 1.10.0-3.el7_9.1 @updates ca-certificates.noarch 2023.2.60_v7.0.306-72.el7_9 @updates cairo.x86_64 1.15.12-4.el7 @base cairo-devel.x86_64 1.15.12-4.el7 @base centos-release.x86_64 7-9.2009.2.el7.centos @updates centos-release-scl-rh.noarch 2-3.el7.centos @extras ceph-common.x86_64 1:10.2.5-4.el7 @base checkpolicy.x86_64 2.5-8.el7 @base chkconfig.x86_64 1.7.6-1.el7 @base cloudflared.x86_64 2022.5.1-1 @/cloudflared cmake.x86_64 2.8.12.2-2.el7 @base container-selinux.noarch 2:2.119.2-1.911c772.el7_8 @extras container-storage-setup.noarch 0.11.0-2.git5eaf76c.el7 @extras containers-common.x86_64 1:0.1.40-11.el7_8 @extras coreutils.x86_64 8.22-24.el7_9.2 @updates cpio.x86_64 2.11-28.el7 @base cpp.x86_64 4.8.5-44.el7 @base cracklib.x86_64 2.9.0-11.el7 @base cracklib-dicts.x86_64 2.9.0-11.el7 @base cronie.x86_64 1.4.11-25.el7_9 @updates cronie-anacron.x86_64 1.4.11-25.el7_9 @updates crontabs.noarch 1.11-6.20121102git.el7 @base cryptsetup.x86_64 2.0.3-6.el7 @base cryptsetup-libs.x86_64 2.0.3-6.el7 @base cups-client.x86_64 1:1.6.3-52.el7_9 @updates cups-libs.x86_64 1:1.6.3-52.el7_9 @updates curl.x86_64 7.47.1-1.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 cyrus-sasl-lib.x86_64 2.1.26-24.el7_9 @updates cyrus-sasl-plain.x86_64 2.1.26-24.el7_9 @updates dbus.x86_64 1:1.10.24-15.el7 @base dbus-glib.x86_64 0.100-7.el7 @base dbus-libs.x86_64 1:1.10.24-15.el7 @base dbus-python.x86_64 1.1.1-9.el7 @base dejavu-fonts-common.noarch 2.33-6.el7 @base dejavu-sans-fonts.noarch 2.33-6.el7 @base device-mapper.x86_64 7:1.02.170-6.el7_9.5 @updates device-mapper-event.x86_64 7:1.02.170-6.el7_9.5 @updates device-mapper-event-libs.x86_64 7:1.02.170-6.el7_9.5 @updates device-mapper-libs.x86_64 7:1.02.170-6.el7_9.5 @updates device-mapper-persistent-data.x86_64 0.8.5-3.el7_9.2 @updates devtoolset-9-binutils.x86_64 2.32-16.el7 @centos-sclo-rh devtoolset-9-gcc.x86_64 9.3.1-2.2.el7 @centos-sclo-rh devtoolset-9-gcc-c++.x86_64 9.3.1-2.2.el7 @centos-sclo-rh devtoolset-9-libstdc++-devel.x86_64 9.3.1-2.2.el7 @centos-sclo-rh devtoolset-9-runtime.x86_64 9.1-0.el7 @centos-sclo-rh dhclient.x86_64 12:4.2.5-83.el7.centos.2 @updates dhcp-common.x86_64 12:4.2.5-83.el7.centos.2 @updates dhcp-libs.x86_64 12:4.2.5-83.el7.centos.2 @updates diffutils.x86_64 3.3-6.el7_9 @updates dmidecode.x86_64 1:3.2-5.el7_9.1 @updates dos2unix.x86_64 6.0.3-7.el7 @base dracut.x86_64 033-572.el7 @base e2fsprogs.x86_64 1.42.9-19.el7 @base e2fsprogs-devel.x86_64 1.42.9-19.el7 @base e2fsprogs-libs.x86_64 1.42.9-19.el7 @base ebtables.x86_64 2.0.10-16.el7 @base ed.x86_64 1.9-4.el7 @base elevate-release.noarch 1.0-2.el7 @/elevate-release-latest-el7.noarch elfutils-default-yama-scope.noarch 0.176-5.el7 @base elfutils-libelf.x86_64 0.176-5.el7 @base elfutils-libs.x86_64 0.176-5.el7 @base epel-release.noarch 7-14 installed expat.x86_64 2.1.0-15.el7_9 @updates expat-devel.x86_64 2.1.0-15.el7_9 @updates fail2ban.noarch 0.11.2-3.el7 @epel fail2ban-firewalld.noarch 0.11.2-3.el7 @epel fail2ban-sendmail.noarch 0.11.2-3.el7 @epel fail2ban-server.noarch 0.11.2-3.el7 @epel fdk-aac.x86_64 0.1.4-1 @nux-dextop ffmpeg.x86_64 2.8.15-2.el7.nux @nux-dextop ffmpeg-devel.x86_64 2.8.15-2.el7.nux @nux-dextop ffmpeg-libs.x86_64 2.8.15-2.el7.nux @nux-dextop file.x86_64 5.11-37.el7 @base file-libs.x86_64 5.11-37.el7 @base filesystem.x86_64 3.2-25.el7 @base findutils.x86_64 1:4.5.11-6.el7 @base fipscheck.x86_64 1.4.1-6.el7 @base fipscheck-devel.x86_64 1.4.1-6.el7 @base fipscheck-lib.x86_64 1.4.1-6.el7 @base firewalld.noarch 0.6.3-13.el7_9 @updates firewalld-filesystem.noarch 0.6.3-13.el7_9 @updates flac-libs.x86_64 1.3.0-5.el7_1 @base flex.x86_64 2.5.37-6.el7 installed fontconfig.x86_64 2.13.0-4.3.el7 @base fontconfig-devel.x86_64 2.13.0-4.3.el7 @base fontpackages-filesystem.noarch 1.44-8.el7 @base freetype.x86_64 2.8-14.el7_9.1 @updates freetype-devel.x86_64 2.8-14.el7_9.1 @updates fribidi.x86_64 1.0.2-1.el7_7.1 @updates fuse.x86_64 2.9.2-11.el7 @base fuse-devel.x86_64 2.9.2-11.el7 @base fuse-libs.x86_64 2.9.2-11.el7 @base fuse-overlayfs.x86_64 0.7.2-6.el7_8 @extras fuse3-libs.x86_64 3.6.1-4.el7 @extras gawk.x86_64 4.0.2-4.el7_3.1 @updates gc.x86_64 7.2d-7.el7 @base gcc.x86_64 4.8.5-44.el7 @base gcc-c++.x86_64 4.8.5-44.el7 @base gd.x86_64 2.0.35-27.el7_9 @updates gd-devel.x86_64 2.0.35-27.el7_9 @updates gdbm.x86_64 1.10-8.el7 @base gdbm-devel.x86_64 1.10-8.el7 @base gdisk.x86_64 0.8.10-3.el7 @base geoipupdate.x86_64 2.5.0-2.el7 @updates gettext.x86_64 0.19.8.1-3.el7 @base gettext-common-devel.noarch 0.19.8.1-3.el7 @base gettext-devel.x86_64 0.19.8.1-3.el7 @base gettext-libs.x86_64 0.19.8.1-3.el7 @base git.x86_64 1.8.3.1-25.el7_9 @updates gl-manpages.noarch 1.1-7.20130122.el7 @base glib2.x86_64 2.56.1-9.el7_9 @updates glib2-devel.x86_64 2.56.1-9.el7_9 @updates glibc.i686 2.17-326.el7_9.3 @updates glibc.x86_64 2.17-326.el7_9.3 @updates glibc-common.x86_64 2.17-326.el7_9.3 @updates glibc-devel.x86_64 2.17-326.el7_9.3 @updates glibc-headers.x86_64 2.17-326.el7_9.3 @updates gmp.x86_64 1:6.0.0-15.el7 @base gmp-devel.x86_64 1:6.0.0-15.el7 @base gnupg2.x86_64 2.0.22-5.el7_5 @base gnutls.x86_64 3.3.29-9.el7_6 @base goaccess.x86_64 1.3-1.el7 @epel gobject-introspection.x86_64 1.56.1-1.el7 @base golang.x86_64 1.20.12-1.el7 @epel golang-bin.x86_64 1.20.12-1.el7 @epel golang-src.noarch 1.20.12-1.el7 @epel gpgme.x86_64 1.3.2-5.el7 @base gpm-libs.x86_64 1.20.7-6.el7 @base graphite2.x86_64 1.3.10-1.el7_3 @base grep.x86_64 2.20-3.el7 @base groff-base.x86_64 1.22.2-8.el7 @base gsm.x86_64 1.0.13-11.el7 @base guile.x86_64 5:2.0.9-5.el7 @base gzip.x86_64 1.5-11.el7_9 @updates hardlink.x86_64 1:1.0-19.el7 @base harfbuzz.x86_64 1.7.5-2.el7 @base hdparm.x86_64 9.43-5.el7 @base hostname.x86_64 3.13-3.el7_7.1 @updates htop.x86_64 2.2.0-3.el7 @epel hwdata.x86_64 0.252-9.7.el7 @base icu.x86_64 50.2-4.el7_7 @updates iftop.x86_64 1.0-0.21.pre4.el7 @epel info.x86_64 5.1-5.el7 @base initscripts.x86_64 9.49.53-1.el7_9.1 @updates iproute.x86_64 4.11.0-30.el7 @base ipset.x86_64 7.1-1.el7 @base ipset-libs.x86_64 7.1-1.el7 @base iptables.x86_64 1.4.21-35.el7 @base iptables-services.x86_64 1.4.21-35.el7 @base iputils.x86_64 20160308-10.el7 @base jbigkit-libs.x86_64 2.0-11.el7 @base json-c.x86_64 0.11-4.el7_0 @base kernel-devel.x86_64 3.10.0-1160.105.1.el7 @updates kernel-devel.x86_64 3.10.0-1160.108.1.el7 @updates kernel-devel.x86_64 3.10.0-1160.114.2.el7 @updates kernel-devel.x86_64 3.10.0-1160.118.1.el7 @updates kernel-devel.x86_64 3.10.0-1160.119.1.el7 @updates kernel-headers.x86_64 3.10.0-1160.119.1.el7 @updates keyutils-libs.x86_64 1.5.8-3.el7 @base keyutils-libs-devel.x86_64 1.5.8-3.el7 @base kmod.x86_64 20-28.el7 @base kmod-libs.x86_64 20-28.el7 @base kpartx.x86_64 0.4.9-136.el7_9 @updates krb5-devel.x86_64 1.15.1-55.el7_9 @updates krb5-libs.x86_64 1.15.1-55.el7_9 @updates lame-libs.x86_64 3.100-1.el7 @epel less.x86_64 458-10.el7_9 @updates libICE.x86_64 1.0.9-9.el7 @base libSM.x86_64 1.2.2-2.el7 @base libX11.x86_64 1.6.7-5.el7_9 @updates libX11-common.noarch 1.6.7-5.el7_9 @updates libX11-devel.x86_64 1.6.7-5.el7_9 @updates libXau.x86_64 1.0.8-2.1.el7 @base libXau-devel.x86_64 1.0.8-2.1.el7 @base libXdamage.x86_64 1.1.4-4.1.el7 @base libXdamage-devel.x86_64 1.1.4-4.1.el7 @base libXext.x86_64 1.3.3-3.el7 @base libXext-devel.x86_64 1.3.3-3.el7 @base libXfixes.x86_64 5.0.3-1.el7 @base libXfixes-devel.x86_64 5.0.3-1.el7 @base libXft.x86_64 2.3.2-2.el7 @base libXft-devel.x86_64 2.3.2-2.el7 @base libXi.x86_64 1.7.9-1.el7 @base libXpm.x86_64 3.5.12-2.el7_9 @updates libXpm-devel.x86_64 3.5.12-2.el7_9 @updates libXrender.x86_64 0.9.10-1.el7 @base libXrender-devel.x86_64 0.9.10-1.el7 @base libXt.x86_64 1.1.5-3.el7 @base libXtst.x86_64 1.2.3-1.el7 @base libXv.x86_64 1.0.11-1.el7 @base libXxf86vm.x86_64 1.1.4-1.el7 @base libXxf86vm-devel.x86_64 1.1.4-1.el7 @base libacl.x86_64 2.2.51-15.el7 @base libaio.x86_64 0.3.109-13.el7 @base libaio-devel.x86_64 0.3.109-13.el7 @base libarchive.x86_64 3.1.2-14.el7_7 @updates libass.x86_64 0.13.4-6.el7 @epel libassuan.x86_64 2.1.0-3.el7 @base libasyncns.x86_64 0.8-7.el7 @base libattr.x86_64 2.4.46-13.el7 @base libavdevice.x86_64 2.8.15-2.el7.nux @nux-dextop libblkid.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libbson.x86_64 1.3.5-7.el7 @epel libcap.x86_64 2.22-11.el7 @base libcap-ng.x86_64 0.7.5-4.el7 @base libcap-ng-devel.x86_64 0.7.5-4.el7 installed libcdio.x86_64 0.92-3.el7 @base libcdio-paranoia.x86_64 10.2+0.90-11.el7 @base libcgroup.x86_64 0.41-21.el7 @base libcom_err.x86_64 1.42.9-19.el7 @base libcom_err-devel.x86_64 1.42.9-19.el7 @base libcroco.x86_64 0.6.12-6.el7_9 @updates libcurl.x86_64 7.47.1-1.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libcurl-devel.x86_64 7.47.1-1.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libdb.x86_64 5.3.21-25.el7 @base libdb-devel.x86_64 5.3.21-25.el7 @base libdb-utils.x86_64 5.3.21-25.el7 @base libdb4.x86_64 4.8.30-13.el7 @epel libdb4-devel.x86_64 4.8.30-13.el7 @epel libdc1394.x86_64 2.2.2-3.el7 @epel libdrm.x86_64 2.4.97-2.el7 @base libdrm-devel.x86_64 2.4.97-2.el7 @base libedit.x86_64 3.0-12.20121213cvs.el7 @base libestr.x86_64 0.1.9-2.el7 @base libev.x86_64 4.15-7.el7 @extras libevent.x86_64 2.0.21-4.el7 @base libevent-devel.x86_64 2.0.21-4.el7 @base libfastjson.x86_64 0.99.4-3.el7 @base libfdisk.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libffi.x86_64 3.0.13-19.el7 @base libffi-devel.x86_64 3.0.13-19.el7 @base libgcc.i686 4.8.5-44.el7 @base libgcc.x86_64 4.8.5-44.el7 @base libgcrypt.x86_64 1.5.3-14.el7 @base libgcrypt-devel.x86_64 1.5.3-14.el7 @base libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-core-devel.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-devel.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-gles.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libglvnd-opengl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 @base libgomp.x86_64 4.8.5-44.el7 @base libgpg-error.x86_64 1.12-3.el7 @base libgpg-error-devel.x86_64 1.12-3.el7 @base libgudev.x86_64 230-3.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libicu.x86_64 50.2-4.el7_7 @updates libicu-devel.x86_64 50.2-4.el7_7 @updates libidn.x86_64 1.28-4.el7 @base libidn-devel.x86_64 1.28-4.el7 @base libjpeg-turbo.x86_64 1.2.90-8.el7 @base libjpeg-turbo-devel.x86_64 1.2.90-8.el7 @base libkadm5.x86_64 1.15.1-55.el7_9 @updates libmnl.x86_64 1.0.3-7.el7 @base libmnl-devel.x86_64 1.0.3-7.el7 @base libmodman.x86_64 2.0.1-8.el7 @base libmount.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libmpc.x86_64 1.0.1-3.el7 @base libnetfilter_conntrack.x86_64 1.0.6-1.el7_3 @updates libnfnetlink.x86_64 1.0.1-4.el7 @base libnl.x86_64 1.1.4-3.el7 @base libogg.x86_64 2:1.3.0-7.el7 @base libpcap.x86_64 14:1.5.3-13.el7_9 @updates libpcap-devel.x86_64 14:1.5.3-13.el7_9 @updates libpciaccess.x86_64 0.14-1.el7 @base libpng.x86_64 2:1.5.13-8.el7 @base libpng-devel.x86_64 2:1.5.13-8.el7 @base libproxy.x86_64 0.4.11-11.el7 @base libpwquality.x86_64 1.2.3-5.el7 @base librados2.x86_64 1:10.2.5-4.el7 @base libraw1394.x86_64 2.1.0-2.el7 @base librbd1.x86_64 1:10.2.5-4.el7 @base libseccomp.x86_64 2.3.1-4.el7 @base libselinux.x86_64 2.5-15.el7 @base libselinux-devel.x86_64 2.5-15.el7 @base libselinux-python.x86_64 2.5-15.el7 @base libselinux-utils.x86_64 2.5-15.el7 @base libsemanage.x86_64 2.5-14.el7 @base libsemanage-python.x86_64 2.5-14.el7 @base libsepol.x86_64 2.5-10.el7 @base libsepol-devel.x86_64 2.5-10.el7 @base libsmartcols.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libsndfile.x86_64 1.0.25-12.el7_9.1 @updates libss.x86_64 1.42.9-19.el7 @base libssh2.x86_64 1.8.0-4.el7_9.1 @updates libstdc++.i686 4.8.5-44.el7 @base libstdc++.x86_64 4.8.5-44.el7 @base libstdc++-devel.x86_64 4.8.5-44.el7 @base libtasn1.x86_64 4.10-1.el7 @base libtheora.x86_64 1:1.1.1-8.el7 @base libtiff.x86_64 4.0.3-35.el7 @base libtirpc.x86_64 0.2.4-0.16.el7 @base libtool.x86_64 2.4.2-22.el7_3 @base libtool-ltdl.x86_64 2.4.2-22.el7_3 @base libunistring.x86_64 0.9.3-9.el7 @base libusbx.x86_64 1.0.21-1.el7 @base libuser.x86_64 0.60-9.el7 @base libutempter.x86_64 1.1.6-4.el7 @base libuuid.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libuuid-devel.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 libuv.x86_64 1:1.44.2-1.el7 @epel libuv-devel.x86_64 1:1.44.2-1.el7 @epel libv4l.x86_64 0.9.5-4.el7 @base libva.x86_64 1.8.3-1.el7 @base libvdpau.x86_64 1.1.1-3.el7 @base libverto.x86_64 0.2.5-4.el7 @base libverto-devel.x86_64 0.2.5-4.el7 @base libvorbis.x86_64 1:1.3.3-8.el7.1 @base libwayland-client.x86_64 1.15.0-1.el7 @base libwayland-server.x86_64 1.15.0-1.el7 @base libwebp.x86_64 0.3.0-11.el7 @updates libwebp-devel.x86_64 0.3.0-11.el7 @updates libxcb.x86_64 1.13-1.el7 @base libxcb-devel.x86_64 1.13-1.el7 @base libxml2.x86_64 2.9.1-6.el7_9.6 @updates libxml2-devel.x86_64 2.9.1-6.el7_9.6 @updates libxml2-python.x86_64 2.9.1-6.el7_9.6 @updates libxshmfence.x86_64 1.2-1.el7 @base libxslt.x86_64 1.1.28-6.el7 @base libxslt-devel.x86_64 1.1.28-6.el7 @base libxslt-python.x86_64 1.1.28-6.el7 @base libyaml.x86_64 0.1.4-11.el7_0 @base logrotate.x86_64 3.8.6-19.el7 @base lsof.x86_64 4.87-6.el7 @base lua.x86_64 5.1.4-15.el7 @base lvm2.x86_64 7:2.02.187-6.el7_9.5 @updates lvm2-libs.x86_64 7:2.02.187-6.el7_9.5 @updates lz4.x86_64 1.8.3-1.el7 @base lz4-devel.x86_64 1.8.3-1.el7 @base lzo.x86_64 2.06-8.el7 @base m4.x86_64 1.4.16-10.el7 installed mailx.x86_64 12.5-19.el7 @base make.x86_64 1:3.82-24.el7 @base mandoc.x86_64 1.14.5-14.el7 @epel mariadb.x86_64 1:5.5.68-1.el7 @base mariadb-libs.x86_64 1:5.5.68-1.el7 @base mercurial.x86_64 2.6.2-11.el7 @base mesa-khr-devel.x86_64 18.3.4-12.el7_9 @updates mesa-libEGL.x86_64 18.3.4-12.el7_9 @updates mesa-libEGL-devel.x86_64 18.3.4-12.el7_9 @updates mesa-libGL.x86_64 18.3.4-12.el7_9 @updates mesa-libGL-devel.x86_64 18.3.4-12.el7_9 @updates mesa-libgbm.x86_64 18.3.4-12.el7_9 @updates mesa-libglapi.x86_64 18.3.4-12.el7_9 @updates mongo-c-driver.x86_64 1.3.6-1.el7 @epel mongo-c-driver-libs.x86_64 1.3.6-1.el7 @epel mpfr.x86_64 3.1.1-4.el7 @base nano.x86_64 2.3.1-10.el7 @base ncdu.x86_64 1.20-1.el7 @epel ncurses.x86_64 5.9-14.20130511.el7_4 @base ncurses-base.noarch 5.9-14.20130511.el7_4 @base ncurses-devel.x86_64 5.9-14.20130511.el7_4 @base ncurses-libs.x86_64 5.9-14.20130511.el7_4 @base neon.x86_64 0.30.0-4.el7 @base net-tools.x86_64 2.0-0.25.20131004git.el7 @base nethogs.x86_64 0.8.5-1.el7 @epel nettle.x86_64 2.7.1-9.el7_9 @updates nmap-ncat.x86_64 2:6.40-19.el7 @base nspr.x86_64 4.35.0-1.el7_9 @updates nspr-devel.x86_64 4.35.0-1.el7_9 @updates nss.x86_64 3.90.0-2.el7_9 @updates nss-devel.x86_64 3.90.0-2.el7_9 @updates nss-pem.x86_64 1.0.3-7.el7_9.1 @updates nss-softokn.x86_64 3.90.0-6.el7_9 @updates nss-softokn-devel.x86_64 3.90.0-6.el7_9 @updates nss-softokn-freebl.i686 3.90.0-6.el7_9 @updates nss-softokn-freebl.x86_64 3.90.0-6.el7_9 @updates nss-softokn-freebl-devel.x86_64 3.90.0-6.el7_9 @updates nss-sysinit.x86_64 3.90.0-2.el7_9 @updates nss-tools.x86_64 3.90.0-2.el7_9 @updates nss-util.x86_64 3.90.0-1.el7_9 @updates nss-util-devel.x86_64 3.90.0-1.el7_9 @updates ntp.x86_64 4.2.6p5-29.el7.centos.2 @updates ntpdate.x86_64 4.2.6p5-29.el7.centos.2 @updates numactl-libs.x86_64 2.0.12-5.el7 @base oci-register-machine.x86_64 1:0-6.git2b44233.el7 @extras oci-systemd-hook.x86_64 1:0.2.0-1.git05e6923.el7_6 @extras oci-umount.x86_64 2:2.5-3.el7 @extras openal-soft.x86_64 1.16.0-3.el7 @epel opencore-amr.x86_64 0.1.3-3.el7.nux @nux-dextop openjpeg-libs.x86_64 1.5.1-18.el7 @base openldap.x86_64 2.4.44-25.el7_9 @updates openssh.x86_64 7.4p1-23.el7_9 @updates openssh-clients.x86_64 7.4p1-23.el7_9 @updates openssh-server.x86_64 7.4p1-23.el7_9 @updates openssl.x86_64 1:1.0.2k-26.el7_9 @updates openssl-devel.x86_64 1:1.0.2k-26.el7_9 @updates openssl-libs.x86_64 1:1.0.2k-26.el7_9 @updates openvpn.x86_64 2.4.12-1.el7 @epel opus.x86_64 1.0.2-6.el7 @base orc.x86_64 0.4.26-1.el7 @base p11-kit.x86_64 0.23.5-3.el7 @base p11-kit-trust.x86_64 0.23.5-3.el7 @base pakchois.x86_64 0.4-10.el7 @base pam.x86_64 1.1.8-23.el7 @base pam-devel.x86_64 1.1.8-23.el7 @base parted.x86_64 3.1-32.el7 @base passwd.x86_64 0.79-6.el7 @base patch.x86_64 2.7.1-12.el7_7 @updates pcre.x86_64 8.32-17.el7 @base pcre-devel.x86_64 8.32-17.el7 @base perl.x86_64 4:5.16.3-299.el7_9 @updates perl-Carp.noarch 1.26-244.el7 @base perl-Data-Dumper.x86_64 2.145-3.el7 @base perl-Encode.x86_64 2.51-7.el7 @base perl-Error.noarch 1:0.17020-2.el7 @base perl-Exporter.noarch 5.68-3.el7 @base perl-ExtUtils-Install.noarch 1.58-299.el7_9 @updates perl-ExtUtils-MakeMaker.noarch 6.68-3.el7 @base perl-ExtUtils-Manifest.noarch 1.61-244.el7 @base perl-ExtUtils-ParseXS.noarch 1:3.18-3.el7 @base perl-File-Path.noarch 2.09-2.el7 @base perl-File-Temp.noarch 0.23.01-3.el7 @base perl-Filter.x86_64 1.49-3.el7 @base perl-Getopt-Long.noarch 2.40-3.el7 @base perl-Git.noarch 1.8.3.1-25.el7_9 @updates perl-HTTP-Tiny.noarch 0.033-3.el7 @base perl-PathTools.x86_64 3.40-5.el7 @base perl-Pod-Escapes.noarch 1:1.04-299.el7_9 @updates perl-Pod-Perldoc.noarch 3.20-4.el7 @base perl-Pod-Simple.noarch 1:3.28-4.el7 @base perl-Pod-Usage.noarch 1.63-3.el7 @base perl-Scalar-List-Utils.x86_64 1.27-248.el7 @base perl-Socket.x86_64 2.010-5.el7 @base perl-Storable.x86_64 2.45-3.el7 @base perl-TermReadKey.x86_64 2.30-20.el7 @base perl-Test-Harness.noarch 3.28-3.el7 @base perl-Text-ParseWords.noarch 3.29-4.el7 @base perl-Thread-Queue.noarch 3.02-2.el7 @base perl-Time-HiRes.x86_64 4:1.9725-3.el7 @base perl-Time-Local.noarch 1.2300-2.el7 @base perl-constant.noarch 1.27-2.el7 @base perl-devel.x86_64 4:5.16.3-299.el7_9 @updates perl-libs.x86_64 4:5.16.3-299.el7_9 @updates perl-macros.x86_64 4:5.16.3-299.el7_9 @updates perl-parent.noarch 1:0.225-244.el7 @base perl-podlators.noarch 2.5.1-3.el7 @base perl-threads.x86_64 1.87-4.el7 @base perl-threads-shared.x86_64 1.43-6.el7 @base pinentry.x86_64 0.8.1-17.el7 @base pixman.x86_64 0.34.0-1.el7 @base pixman-devel.x86_64 0.34.0-1.el7 @base pkcs11-helper.x86_64 1.11-3.el7 @epel pkgconfig.x86_64 1:0.27.1-4.el7 @base policycoreutils.x86_64 2.5-34.el7 @base policycoreutils-python.x86_64 2.5-34.el7 @base popt.x86_64 1.13-16.el7 @base ppp.x86_64 2.4.5-34.el7_7 @updates procps-ng.x86_64 3.3.10-28.el7 @base psmisc.x86_64 22.20-17.el7 @base pth.x86_64 2.0.7-23.el7 @base pulseaudio-libs.x86_64 10.0-6.el7_9 @updates pygpgme.x86_64 0.3-9.el7 @base pyliblzma.x86_64 0.5.3-11.el7 @base pyparsing.noarch 1.5.6-9.el7 @base python.x86_64 2.7.5-94.el7_9 @updates python-IPy.noarch 0.75-6.el7 @base python-backports.x86_64 1.0-8.el7 @base python-backports-ssl_match_hostname.noarch 3.5.0.1-1.el7 @base python-chardet.noarch 2.2.1-3.el7 @base python-dateutil.noarch 1.5-7.el7 @base python-decorator.noarch 3.4.0-3.el7 @base python-devel.x86_64 2.7.5-94.el7_9 @updates python-dmidecode.x86_64 3.12.2-4.el7 @base python-ethtool.x86_64 0.8-8.el7 @base python-firewall.noarch 0.6.3-13.el7_9 @updates python-gevent.x86_64 1.0-3.el7 @extras python-gobject-base.x86_64 3.22.0-1.el7_4.1 @base python-greenlet.x86_64 0.4.2-4.el7 @extras python-iniparse.noarch 0.4-9.el7 @base python-inotify.noarch 0.9.4-4.el7 @base python-ipaddress.noarch 1.0.16-2.el7 @base python-kitchen.noarch 1.1.1-5.el7 @base python-libs.x86_64 2.7.5-94.el7_9 @updates python-pillow.x86_64 2.0.0-25.gitd1c6db8.el7_9 @updates python-pycurl.x86_64 7.19.0-19.el7 @base python-pytoml.noarch 0.1.14-1.git7dea353.el7 @extras python-rados.x86_64 1:10.2.5-4.el7 @base python-rbd.x86_64 1:10.2.5-4.el7 @base python-requests.noarch 2.6.0-10.el7 @base python-rpm-macros.noarch 3-34.el7 @base python-setuptools.noarch 0.9.8-7.el7 @base python-six.noarch 1.9.0-2.el7 @base python-slip.noarch 0.4.0-4.el7 @base python-slip-dbus.noarch 0.4.0-4.el7 @base python-srpm-macros.noarch 3-34.el7 @base python-syspurpose.x86_64 1.24.54-1.el7.centos @updates python-systemd.x86_64 234-1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 python-urlgrabber.noarch 3.10-10.el7 @base python2-rpm-macros.noarch 3-34.el7 @base python3.x86_64 3.6.8-21.el7_9 @updates python3-libs.x86_64 3.6.8-21.el7_9 @updates python3-pip.noarch 9.0.3-8.el7 @base python3-setuptools.noarch 39.2.0-10.el7 @base pyxattr.x86_64 0.5.1-5.el7 @base qrencode-libs.x86_64 3.4.1-3.el7 @base rclone.x86_64 1.57.0-1 installed readline.x86_64 6.2-11.el7 @base readline-devel.x86_64 6.2-11.el7 @base redhat-lsb-core.x86_64 4.1-27.el7.centos.1 @base redhat-lsb-submod-security.x86_64 4.1-27.el7.centos.1 @base rootfiles.noarch 8.1-11.el7 @base rpm.x86_64 4.11.3-48.el7_9 @updates rpm-build-libs.x86_64 4.11.3-48.el7_9 @updates rpm-libs.x86_64 4.11.3-48.el7_9 @updates rpm-python.x86_64 4.11.3-48.el7_9 @updates rsync.x86_64 3.1.2-12.el7_9 @updates rsyslog.x86_64 8.24.0-57.el7_9.3 @updates schroedinger.x86_64 1.0.11-4.el7 @epel scl-utils.x86_64 20130529-19.el7 @base screen.x86_64 4.1.0-0.27.20120314git3c2946.el7_9 @updates sed.x86_64 4.2.2-7.el7 @base selinux-policy.noarch 3.13.1-268.el7_9.2 @updates selinux-policy-targeted.noarch 3.13.1-268.el7_9.2 @updates setools-libs.x86_64 3.3.8-4.el7 @base setup.noarch 2.8.71-11.el7 @base shadow-utils.x86_64 2:4.6-5.el7 @base shared-mime-info.x86_64 1.8-5.el7 @base slirp4netns.x86_64 0.4.3-4.el7_8 @extras soxr.x86_64 0.1.2-1.el7 @epel spax.x86_64 1.5.2-13.el7 @base speedtest.x86_64 1.2.0.84_1.ea6b6773cf-1 @ookla_speedtest-cli speex.x86_64 1.2-0.19.rc1.el7 @base sqlite.x86_64 3.7.17-8.el7_7.1 @updates sqlite-devel.x86_64 3.7.17-8.el7_7.1 @updates ssmtp.x86_64 2.64-14.el7 @epel subscription-manager.x86_64 1.24.54-1.el7.centos @updates subscription-manager-rhsm.x86_64 1.24.54-1.el7.centos @updates subscription-manager-rhsm-certificates.x86_64 1.24.54-1.el7.centos @updates subversion.x86_64 1.7.14-16.el7 @base subversion-libs.x86_64 1.7.14-16.el7 @base systemd.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-compat-libs.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-container.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-devel.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-libs.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-pam.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-sysv.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemd-udev.x86_64 234-0.1.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 systemtap-sdt-devel.x86_64 4.0-13.el7 @base sysvinit-tools.x86_64 2.88-14.dsf.el7 @base tailscale.x86_64 1.64.0-1 @tailscale-stable tar.x86_64 2:1.26-35.el7 @base tcl.x86_64 1:8.5.13-8.el7 @base tcl-devel.x86_64 1:8.5.13-8.el7 @base tcp_wrappers-libs.x86_64 7.6-77.el7 @base telnet.x86_64 1:0.17-66.el7 @updates time.x86_64 1.7-45.el7 @base tk.x86_64 1:8.5.13-6.el7 @base tk-devel.x86_64 1:8.5.13-6.el7 @base tokyocabinet.x86_64 1.4.48-3.el7 @base tree.x86_64 1.6.0-10.el7 @base trousers.x86_64 0.3.14-2.el7 @base tzdata.noarch 2024a-1.el7 @updates unzip.x86_64 6.0-24.el7_9 @updates usermode.x86_64 1.111-6.el7 @base ustr.x86_64 1.0.4-16.el7 @base util-linux.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 util-linux-user.x86_64 2.29-2.el7.centos @copr:copr.fedorainfracloud.org:jsynacek:systemd-backports-for-centos-7 uuid.x86_64 1.6.2-26.el7 @base vim-common.x86_64 2:7.4.629-8.el7_9 @updates vim-enhanced.x86_64 2:7.4.629-8.el7_9 @updates vim-filesystem.x86_64 2:7.4.629-8.el7_9 @updates vim-minimal.x86_64 2:7.4.629-8.el7_9 @updates virt-what.x86_64 1.18-4.el7_9.1 @updates vo-amrwbenc.x86_64 0.1.2-1.el7.nux @nux-dextop wget.x86_64 1.14-18.el7_6.1 @base which.x86_64 2.20-7.el7 @base x264-libs.x86_64 0.142-11.20141221git6a301b6.el7.nux @nux-dextop x265-libs.x86_64 1.9-1.el7.nux @nux-dextop xfsprogs.x86_64 4.5.0-22.el7 @base xl2tpd.x86_64 1.3.15-1.el7 @epel xorg-x11-proto-devel.noarch 2018.4-1.el7 @base xvidcore.x86_64 1.3.2-5.el7.nux @nux-dextop xz.x86_64 5.2.2-2.el7_9 @updates xz-devel.x86_64 5.2.2-2.el7_9 @updates xz-libs.x86_64 5.2.2-2.el7_9 @updates yajl.x86_64 2.0.4-4.el7 @base yum.noarch 3.4.3-168.el7.centos @base yum-metadata-parser.x86_64 1.1.4-10.el7 @base yum-plugin-fastestmirror.noarch 1.1.31-54.el7_8 @updates yum-utils.noarch 1.1.31-54.el7_8 @updates zabbix-release.noarch 6.0-5.el8 @zabbix zip.x86_64 3.0-11.el7 @base zlib.x86_64 1.2.7-21.el7_9 @updates zlib-devel.x86_64 1.2.7-21.el7_9 @updates [root@proxy ~]
0x15.引用 从零开始的 Rust 学习笔记(10) —— Breezin 在Linux上使用rclone挂载Google Drive等服务