From 99458d39e10661fd092ac0d518c63ec35e7246a8 Mon Sep 17 00:00:00 2001 From: "@small-29" <1057500994@qq.com> Date: Sun, 23 Oct 2022 16:34:05 +0800 Subject: [PATCH 1/3] Signed-off-by: @small-29 <1057500994@qq.com> 6@LR6R --- small-29/third-party-app.txt | 178 +++++++++++++++++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 small-29/third-party-app.txt diff --git a/small-29/third-party-app.txt b/small-29/third-party-app.txt new file mode 100644 index 0000000..28728fc --- /dev/null +++ b/small-29/third-party-app.txt @@ -0,0 +1,178 @@ + +# 进入账户 +[root@iZbp1flx8uvbz6e32ejwwuZ ~]# mysql -uroot -p +Enter password: +Welcome to the MySQL monitor. Commands end with ; or \g. +Your MySQL connection id is 10 +Server version: 8.0.26 Source distribution + +Copyright (c) 2000, 2021, Oracle and/or its affiliates. + +Oracle is a registered trademark of Oracle Corporation and/or its +affiliates. Other names may be trademarks of their respective +owners. + +Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. + + +# 查看数据库 +mysql> show databases; ++--------------------+ +| Database | ++--------------------+ +| information_schema | +| mysql | +| performance_schema | +| sys | ++--------------------+ +4 rows in set (0.00 sec) + + +# 新建数据库 +mysql> create database test; +Query OK, 1 row affected (0.01 sec) + +mysql> use test; +Database changed + + +# 创建表 +mysql> create table hola(bonj text); +Query OK, 0 rows affected (0.01 sec) + + +# 插入操作 +mysql> insert into test.hola(bonj) values("Mundo"); +Query OK, 1 row affected (0.01 sec) + +mysql> insert into test.hola(bonj) values("Lundo"); +Query OK, 1 row affected (0.01 sec) + +mysql> insert into test.hola(bonj) values("测试"); +Query OK, 1 row affected (0.00 sec) + +# 更新操作 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Mundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +mysql> update test.hola set bonj='Xundo' where bonj='Mundo'; +Query OK, 1 row affected (0.01 sec) +Rows matched: 1 Changed: 1 Warnings: 0 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Xundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +# 删除操作 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Xundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +mysql> delete from test.hola where bonj='Xundo'; +Query OK, 1 row affected (0.00 sec) + +# 退出 + +mysql> exit +Bye + + +[root@iZbp1flx8uvbz6e32ejwwuZ ~]# service mysqld stop && yum remove -y mysql-server +Redirecting to /bin/systemctl stop mysqld.service +Repository epel is listed more than once in the configuration +Dependencies resolved. +================================================================================================================================================================================================================== + Package Architecture Version Repository Size +================================================================================================================================================================================================================== +Removing: + mysql-server x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 121 M +Removing unused dependencies: + checkpolicy x86_64 2.9-1.el8 @BaseOS 1.3 M + libaio x86_64 0.3.112-1.0.1.an8 @BaseOS 24 k + mariadb-connector-c-config noarch 3.1.11-2.an8 @AppStream 497 + mecab x86_64 0.996-1.module+an8.4.0+10570+ea0623f5.9 @AppStream 2.1 M + mysql x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 63 M + mysql-common x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 460 k + mysql-errmsg x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 8.8 M + policycoreutils-python-utils noarch 2.9-19.an8 @BaseOS 138 k + protobuf-lite x86_64 3.5.0-13.an8 @AppStream 450 k + python3-audit x86_64 3.0.7-2.an8.2 @BaseOS 327 k + python3-libsemanage x86_64 2.9-8.an8 @BaseOS 443 k + python3-policycoreutils noarch 2.9-19.an8 @BaseOS 5.4 M + python3-setools x86_64 4.3.0-3.an8 @BaseOS 2.6 M + +Transaction Summary +================================================================================================================================================================================================================== +Remove 14 Packages + +Freed space: 206 M +Running transaction check +Transaction check succeeded. +Running transaction test +Transaction test succeeded. +Running transaction + Preparing : 1/1 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/1 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Erasing : mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Erasing : mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 2/14 + Erasing : policycoreutils-python-utils-2.9-19.an8.noarch 3/14 + Erasing : python3-policycoreutils-2.9-19.an8.noarch 4/14 + Erasing : mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 5/14 + Erasing : mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 6/14 + Erasing : mariadb-connector-c-config-3.1.11-2.an8.noarch 7/14 + Erasing : python3-audit-3.0.7-2.an8.2.x86_64 8/14 + Erasing : checkpolicy-2.9-1.el8.x86_64 9/14 + Erasing : python3-libsemanage-2.9-8.an8.x86_64 10/14 + Erasing : python3-setools-4.3.0-3.an8.x86_64 11/14 + Erasing : libaio-0.3.112-1.0.1.an8.x86_64 12/14 + Erasing : mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 13/14 + Running scriptlet: mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 13/14 + Erasing : protobuf-lite-3.5.0-13.an8.x86_64 14/14 + Running scriptlet: protobuf-lite-3.5.0-13.an8.x86_64 14/14 + Verifying : checkpolicy-2.9-1.el8.x86_64 1/14 + Verifying : libaio-0.3.112-1.0.1.an8.x86_64 2/14 + Verifying : mariadb-connector-c-config-3.1.11-2.an8.noarch 3/14 + Verifying : mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 4/14 + Verifying : mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 5/14 + Verifying : mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 6/14 + Verifying : mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 7/14 + Verifying : mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 8/14 + Verifying : policycoreutils-python-utils-2.9-19.an8.noarch 9/14 + Verifying : protobuf-lite-3.5.0-13.an8.x86_64 10/14 + Verifying : python3-audit-3.0.7-2.an8.2.x86_64 11/14 + Verifying : python3-libsemanage-2.9-8.an8.x86_64 12/14 + Verifying : python3-policycoreutils-2.9-19.an8.noarch 13/14 + Verifying : python3-setools-4.3.0-3.an8.x86_64 14/14 + +Removed: + checkpolicy-2.9-1.el8.x86_64 libaio-0.3.112-1.0.1.an8.x86_64 mariadb-connector-c-config-3.1.11-2.an8.noarch + mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 + mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 policycoreutils-python-utils-2.9-19.an8.noarch + protobuf-lite-3.5.0-13.an8.x86_64 python3-audit-3.0.7-2.an8.2.x86_64 python3-libsemanage-2.9-8.an8.x86_64 + python3-policycoreutils-2.9-19.an8.noarch python3-setools-4.3.0-3.an8.x86_64 + +Complete! + -- Gitee From 68d220fcd90f781e7c53f6f99b075ccdf8aa11fe Mon Sep 17 00:00:00 2001 From: "@small-29" <1057500994@qq.com> Date: Sun, 23 Oct 2022 16:40:33 +0800 Subject: [PATCH 2/3] 1A Signed-off-by: @small-29 <1057500994@qq.com> --- small-29/third-party-app.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/small-29/third-party-app.txt b/small-29/third-party-app.txt index 28728fc..3168c6f 100644 --- a/small-29/third-party-app.txt +++ b/small-29/third-party-app.txt @@ -176,3 +176,6 @@ Removed: Complete! +Submit app result + + -- Gitee From 42bfe10acca16c08477f7f7706cedcd3e87bdf8a Mon Sep 17 00:00:00 2001 From: "@small-29" <1057500994@qq.com> Date: Sun, 23 Oct 2022 16:51:41 +0800 Subject: [PATCH 3/3] PFPFPG Signed-off-by: @small-29 <1057500994@qq.com> --- third-party-app.txt | 176 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 third-party-app.txt diff --git a/third-party-app.txt b/third-party-app.txt new file mode 100644 index 0000000..5c3786b --- /dev/null +++ b/third-party-app.txt @@ -0,0 +1,176 @@ +# 进入账户 +[root@iZbp1flx8uvbz6e32ejwwuZ ~]# mysql -uroot -p +Enter password: +Welcome to the MySQL monitor. Commands end with ; or \g. +Your MySQL connection id is 10 +Server version: 8.0.26 Source distribution + +Copyright (c) 2000, 2021, Oracle and/or its affiliates. + +Oracle is a registered trademark of Oracle Corporation and/or its +affiliates. Other names may be trademarks of their respective +owners. + +Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. + + +# 查看数据库 +mysql> show databases; ++--------------------+ +| Database | ++--------------------+ +| information_schema | +| mysql | +| performance_schema | +| sys | ++--------------------+ +4 rows in set (0.00 sec) + + +# 新建数据库 +mysql> create database test; +Query OK, 1 row affected (0.01 sec) + +mysql> use test; +Database changed + + +# 创建表 +mysql> create table hola(bonj text); +Query OK, 0 rows affected (0.01 sec) + + +# 插入操作 +mysql> insert into test.hola(bonj) values("Mundo"); +Query OK, 1 row affected (0.01 sec) + +mysql> insert into test.hola(bonj) values("Lundo"); +Query OK, 1 row affected (0.01 sec) + +mysql> insert into test.hola(bonj) values("测试"); +Query OK, 1 row affected (0.00 sec) + +# 更新操作 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Mundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +mysql> update test.hola set bonj='Xundo' where bonj='Mundo'; +Query OK, 1 row affected (0.01 sec) +Rows matched: 1 Changed: 1 Warnings: 0 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Xundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +# 删除操作 + +mysql> select * from test.hola; ++--------+ +| bonj | ++--------+ +| Xundo | +| Lundo | +| 测试 | ++--------+ +3 rows in set (0.00 sec) + +mysql> delete from test.hola where bonj='Xundo'; +Query OK, 1 row affected (0.00 sec) + +# 退出 + +mysql> exit +Bye + + +[root@iZbp1flx8uvbz6e32ejwwuZ ~]# service mysqld stop && yum remove -y mysql-server +Redirecting to /bin/systemctl stop mysqld.service +Repository epel is listed more than once in the configuration +Dependencies resolved. +================================================================================================================================================================================================================== + Package Architecture Version Repository Size +================================================================================================================================================================================================================== +Removing: + mysql-server x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 121 M +Removing unused dependencies: + checkpolicy x86_64 2.9-1.el8 @BaseOS 1.3 M + libaio x86_64 0.3.112-1.0.1.an8 @BaseOS 24 k + mariadb-connector-c-config noarch 3.1.11-2.an8 @AppStream 497 + mecab x86_64 0.996-1.module+an8.4.0+10570+ea0623f5.9 @AppStream 2.1 M + mysql x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 63 M + mysql-common x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 460 k + mysql-errmsg x86_64 8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5 @AppStream 8.8 M + policycoreutils-python-utils noarch 2.9-19.an8 @BaseOS 138 k + protobuf-lite x86_64 3.5.0-13.an8 @AppStream 450 k + python3-audit x86_64 3.0.7-2.an8.2 @BaseOS 327 k + python3-libsemanage x86_64 2.9-8.an8 @BaseOS 443 k + python3-policycoreutils noarch 2.9-19.an8 @BaseOS 5.4 M + python3-setools x86_64 4.3.0-3.an8 @BaseOS 2.6 M + +Transaction Summary +================================================================================================================================================================================================================== +Remove 14 Packages + +Freed space: 206 M +Running transaction check +Transaction check succeeded. +Running transaction test +Transaction test succeeded. +Running transaction + Preparing : 1/1 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/1 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Erasing : mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Running scriptlet: mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 1/14 + Erasing : mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 2/14 + Erasing : policycoreutils-python-utils-2.9-19.an8.noarch 3/14 + Erasing : python3-policycoreutils-2.9-19.an8.noarch 4/14 + Erasing : mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 5/14 + Erasing : mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 6/14 + Erasing : mariadb-connector-c-config-3.1.11-2.an8.noarch 7/14 + Erasing : python3-audit-3.0.7-2.an8.2.x86_64 8/14 + Erasing : checkpolicy-2.9-1.el8.x86_64 9/14 + Erasing : python3-libsemanage-2.9-8.an8.x86_64 10/14 + Erasing : python3-setools-4.3.0-3.an8.x86_64 11/14 + Erasing : libaio-0.3.112-1.0.1.an8.x86_64 12/14 + Erasing : mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 13/14 + Running scriptlet: mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 13/14 + Erasing : protobuf-lite-3.5.0-13.an8.x86_64 14/14 + Running scriptlet: protobuf-lite-3.5.0-13.an8.x86_64 14/14 + Verifying : checkpolicy-2.9-1.el8.x86_64 1/14 + Verifying : libaio-0.3.112-1.0.1.an8.x86_64 2/14 + Verifying : mariadb-connector-c-config-3.1.11-2.an8.noarch 3/14 + Verifying : mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 4/14 + Verifying : mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 5/14 + Verifying : mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 6/14 + Verifying : mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 7/14 + Verifying : mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 8/14 + Verifying : policycoreutils-python-utils-2.9-19.an8.noarch 9/14 + Verifying : protobuf-lite-3.5.0-13.an8.x86_64 10/14 + Verifying : python3-audit-3.0.7-2.an8.2.x86_64 11/14 + Verifying : python3-libsemanage-2.9-8.an8.x86_64 12/14 + Verifying : python3-policycoreutils-2.9-19.an8.noarch 13/14 + Verifying : python3-setools-4.3.0-3.an8.x86_64 14/14 + +Removed: + checkpolicy-2.9-1.el8.x86_64 libaio-0.3.112-1.0.1.an8.x86_64 mariadb-connector-c-config-3.1.11-2.an8.noarch + mecab-0.996-1.module+an8.4.0+10570+ea0623f5.9.x86_64 mysql-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 mysql-common-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 + mysql-errmsg-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 mysql-server-8.0.26-1.0.1.module+an8.4.0+10570+ea0623f5.x86_64 policycoreutils-python-utils-2.9-19.an8.noarch + protobuf-lite-3.5.0-13.an8.x86_64 python3-audit-3.0.7-2.an8.2.x86_64 python3-libsemanage-2.9-8.an8.x86_64 + python3-policycoreutils-2.9-19.an8.noarch python3-setools-4.3.0-3.an8.x86_64 + +Complete! -- Gitee