当前位置:   article > 正文

rocky linux 8.5 基本设置_rocky linux 最大化按钮

rocky linux 最大化按钮

 一、设置窗口上显示最大化和最小化按钮

安装完Rocky Linux 8.5后,窗口上没有没有最大化和最小化按钮,如下图所示:

 解决办法:

安装gnome-tweaks软件包,并且启动这个软件进行设置:

1、安装gnome-tweaks软件包:

  1. [root@localhost blctrl]# dnf install gnome-tweaks
  2. Last metadata expiration check: 2:02:15 ago on Fri 24 Jun 2022 08:44:01 AM CST.
  3. Dependencies resolved.
  4. =========================================================================================================================================================================================
  5. Package Architecture Version Repository Size
  6. =========================================================================================================================================================================================
  7. Installing:
  8. gnome-tweaks noarch 3.28.1-7.el8 appstream 330 k
  9. Installing dependencies:
  10. gnome-shell-extension-user-theme noarch 3.32.1-27.el8 appstream 27 k
  11. Transaction Summary
  12. =========================================================================================================================================================================================
  13. Install 2 Packages
  14. Total download size: 357 k
  15. Installed size: 1.4 M
  16. Is this ok [y/N]: y
  17. Downloading Packages:
  18. (1/2): gnome-shell-extension-user-theme-3.32.1-27.el8.noarch.rpm 168 kB/s | 27 kB 00:00
  19. (2/2): gnome-tweaks-3.28.1-7.el8.noarch.rpm 928 kB/s | 330 kB 00:00
  20. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  21. Total 178 kB/s | 357 kB 00:02
  22. Running transaction check
  23. Transaction check succeeded.
  24. Running transaction test
  25. Transaction test succeeded.
  26. Running transaction
  27. Preparing : 1/1
  28. Installing : gnome-shell-extension-user-theme-3.32.1-27.el8.noarch 1/2
  29. Installing : gnome-tweaks-3.28.1-7.el8.noarch 2/2
  30. Running scriptlet: gnome-tweaks-3.28.1-7.el8.noarch 2/2
  31. Verifying : gnome-shell-extension-user-theme-3.32.1-27.el8.noarch 1/2
  32. Verifying : gnome-tweaks-3.28.1-7.el8.noarch 2/2
  33. Installed:
  34. gnome-shell-extension-user-theme-3.32.1-27.el8.noarch gnome-tweaks-3.28.1-7.el8.noarch
  35. Complete!
  36. [root@localhost blctrl]#

2、启动刚才在命令行中刚才安装的软件:

[root@localhost blctrl]# gnome-tweaks

3、在启动的设置窗口中,选择windows项,并且设置Maximize和Minimize为ON:

 

4、在打开一个终端,窗口上最大化和最小化按钮出现了:

 

二、设置启动时默认进入图形用户界面:

在root用户权限下:

查看当前启动模式

systemctl get-default

  1. [blctrl@localhost ~]$ systemctl get-default
  2. graphical.target

更改模式命令:

由命令行模式更改为图形界面模式:systemctl set-default graphical.target

由图形界面模式更改为命令行模式:systemctl set-default multi-user.target

跟以前使用的linux版本一样,编辑 vi /etc/inittab 文件,修改系统初始化方式

  1. [blctrl@localhost ~]$ cat /etc/inittab
  2. # inittab is no longer used.
  3. #
  4. # ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
  5. #
  6. # Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target
  7. #
  8. # systemd uses 'targets' instead of runlevels. By default, there are two main targets:
  9. #
  10. # multi-user.target: analogous to runlevel 3
  11. # graphical.target: analogous to runlevel 5
  12. #
  13. # To view current default target, run:
  14. # systemctl get-default
  15. #
  16. # To set a default target, run:
  17. # systemctl set-default TARGET.target

三、查看以及修改主机名

  1. [root@localhost blctrl]# cat /etc/hostname # 查看主机名
  2. localhost.localdomain
  3. [root@localhost blctrl]# hostnamectl set-hostname areadetector # 修改主机名
  4. [root@localhost blctrl]# hostnamectl # 查看修改之后的主机名
  5. Static hostname: areadetector
  6. Icon name: computer-desktop
  7. Chassis: desktop
  8. Machine ID: 8441fa311fda46f9b78427fa61317010
  9. Boot ID: 73263affd07c4f9f92b878f355c54468
  10. Operating System: Rocky Linux 8.6 (Green Obsidian)
  11. CPE OS Name: cpe:/o:rocky:rocky:8:GA
  12. Kernel: Linux 4.18.0-372.9.1.el8.x86_64
  13. Architecture: x86-64
  14. [root@localhost blctrl]# cat /etc/hostname # 查看修改之后的主机名
  15. areadetector

四、添加网桥

 1、安装brctl

  1. [root@areadetector blctrl]# dnf install bridge-utils
  2. Last metadata expiration check: 1:58:45 ago on Tue 28 Jun 2022 01:01:26 PM CST.
  3. Dependencies resolved.
  4. ================================================================================
  5. Package Architecture Version Repository Size
  6. ================================================================================
  7. Installing:
  8. bridge-utils x86_64 1.7.1-2.el8 epel 40 k
  9. Transaction Summary
  10. ================================================================================
  11. Install 1 Package
  12. Total download size: 40 k
  13. Installed size: 61 k
  14. Is this ok [y/N]: y
  15. Downloading Packages:
  16. bridge-utils-1.7.1-2.el8.x86_64.rpm 62 kB/s | 40 kB 00:00
  17. ...
  18. Installed:
  19. bridge-utils-1.7.1-2.el8.x86_64
  20. Complete!
  21. [root@areadetector blctrl]#

2、创建网桥br0

  1. [root@areadetector blctrl]# brctl addbr br0 # 创建网桥br0
  2. [root@areadetector blctrl]# brctl show # 显示网桥信息
  3. bridge name bridge id STP enabled interfaces
  4. br0 8000.000000000000 no
  5. virbr0 8000.5254004c7ae5 yes vnet5

3、将eno1添加到网桥br0

  1. [root@areadetector blctrl]# ifconfig
  2. eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  3. inet 192.168.50.150 netmask 255.255.255.0 broadcast 192.168.50.255
  4. inet6 fe80::1a60:24ff:fea8:cde3 prefixlen 64 scopeid 0x20<link>
  5. ether 18:60:24:a8:cd:e3 txqueuelen 1000 (Ethernet)
  6. RX packets 8438290 bytes 12473837852 (11.6 GiB)
  7. RX errors 0 dropped 2343 overruns 0 frame 0
  8. TX packets 2107929 bytes 212100725 (202.2 MiB)
  9. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  10. device interrupt 16 memory 0x90280000-902a0000
  11. [root@areadetector blctrl]# brctl addif br0 eno1

4、查看网桥信息

  1. [root@areadetector blctrl]# brctl show
  2. bridge name bridge id STP enabled interfaces
  3. br0 8000.186024a8cde3 no eno1
  4. virbr0 8000.5254004c7ae5 yes vnet5

5、备份和复制eno1的配置文件:

  1. cd /etc/sysconfig/network-scripts/
  2. cp ifcfg-eno1 ifcfg-eno1.bak # 备份原来的eno1配置文件
  3. cp ifcfg-eno1 ifcfg-br0 # 从ifcfg-eno1复制一个名为ifcfg-br0的文件

6、1) 对fcfg-br0进行以下修改:

  1. # ifcfg-br0
  2. TYPE=Bridge ## TYPE修改成Bridge
  3. PROXY_METHOD=none
  4. BROWSER_ONLY=no
  5. BOOTPROTO=dhcp
  6. DEFROUTE=yes
  7. IPV4_FAILURE_FATAL=no
  8. IPV6INIT=yes
  9. IPV6_AUTOCONF=yes
  10. IPV6_DEFROUTE=yes
  11. IPV6_FAILURE_FATAL=no
  12. NAME=br0 ## NAME修改为br0
  13. #UUID=d5ebd91b-846e-43b9-908c-fcb4dce6be3a # 用#号把UUID这行注释掉
  14. DEVICE=br0 ## DEVICE修改成br0

   2) 对ifcfg-eno1文件进行以下修改:

  1. [root@areadetector network-scripts]# cat ifcfg-eno1
  2. TYPE=Ethernet
  3. PROXY_METHOD=none
  4. BROWSER_ONLY=no
  5. BOOTPROTO=no ## 把BOOTPROTO更改为no
  6. DEFROUTE=yes
  7. IPV4_FAILURE_FATAL=no
  8. IPV6INIT=yes
  9. IPV6_AUTOCONF=yes
  10. IPV6_DEFROUTE=yes
  11. IPV6_FAILURE_FATAL=no
  12. NAME=eno1
  13. UUID=d5ebd91b-846e-43b9-908c-fcb4dce6be3a
  14. DEVICE=eno1
  15. ONBOOT=yes
  16. BRIDGE=br0 ## 添加这一行BRIDGE=br0

7、关闭eno1,启动br0:发现自动获取的IP地址设置到了br0上。

  1. [root@areadetector blctrl]# ifdown eno1
  2. [root@areadetector blctrl]# ifup br0
  3. [root@areadetector blctrl]# ifconfig
  4. br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  5. inet 192.168.50.150 netmask 255.255.255.0 broadcast 192.168.50.255
  6. inet6 fe80::1a60:24ff:fea8:cde3 prefixlen 64 scopeid 0x20<link>
  7. ether 18:60:24:a8:cd:e3 txqueuelen 1000 (Ethernet)
  8. RX packets 1940 bytes 326030 (318.3 KiB)
  9. RX errors 0 dropped 0 overruns 0 frame 0
  10. TX packets 530 bytes 77299 (75.4 KiB)
  11. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  12. eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  13. ether 18:60:24:a8:cd:e3 txqueuelen 1000 (Ethernet)
  14. RX packets 8440809 bytes 12474290949 (11.6 GiB)
  15. RX errors 0 dropped 2491 overruns 0 frame 0
  16. TX packets 2108877 bytes 212211564 (202.3 MiB)
  17. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  18. device interrupt 16 memory 0x90280000-902a0000

五、网卡管理命令nmcli

1、显示网卡的配置信息和运行状态

  1. [root@areadetector network-scripts]# nmcli
  2. br0: connected to eno1
  3. "br0"
  4. bridge, 18:60:24:A8:CD:E3, sw, mtu 1500
  5. ip4 default
  6. inet4 192.168.50.150/24
  7. route4 192.168.50.0/24 metric 425
  8. route4 default via 192.168.50.1 metric 425
  9. inet6 fe80::1a60:24ff:fea8:cde3/64
  10. route6 fe80::/64 metric 1024
  11. vnet6: connected (externally) to vnet6
  12. "vnet6"
  13. tun, FE:54:00:80:87:7F, sw, mtu 1500
  14. master br0
  15. inet6 fe80::fc54:ff:fe80:877f/64
  16. route6 fe80::/64 metric 256
  17. eno1: connected (externally) to eno1
  18. "Intel I219-LM"
  19. ethernet (e1000e), 18:60:24:A8:CD:E3, hw, mtu 1500
  20. master br0
  21. enp4s0f2: disconnected
  22. "Intel X722"
  23. ethernet (i40e), 18:60:24:A8:CD:E6, hw, port 186024a8cde6, mtu 1500
  24. ens4: disconnected
  25. "Intel 82599ES SFI/SFP+"
  26. ethernet (ixgbe), 00:1B:21:C2:20:96, hw, mtu 1500
  27. lo: unmanaged
  28. "lo"
  29. loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536
  30. DNS configuration:
  31. servers: 192.168.50.1
  32. interface: br0

2、查看所有网卡的状态

  1. [root@areadetector network-scripts]# nmcli device show
  2. GENERAL.DEVICE: br0
  3. GENERAL.TYPE: bridge
  4. GENERAL.HWADDR: 18:60:24:A8:CD:E3
  5. GENERAL.MTU: 1500
  6. GENERAL.STATE: 100 (connected)
  7. GENERAL.CONNECTION: eno1
  8. GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveC>
  9. IP4.ADDRESS[1]: 192.168.50.150/24
  10. IP4.GATEWAY: 192.168.50.1
  11. IP4.ROUTE[1]: dst = 192.168.50.0/24, nh = 0.0.0.0, mt>
  12. IP4.ROUTE[2]: dst = 0.0.0.0/0, nh = 192.168.50.1, mt >
  13. IP4.DNS[1]: 192.168.50.1
  14. IP6.ADDRESS[1]: fe80::1a60:24ff:fea8:cde3/64
  15. IP6.GATEWAY: --
  16. IP6.ROUTE[1]: dst = fe80::/64, nh = ::, mt = 1024
  17. GENERAL.DEVICE: vnet6
  18. GENERAL.TYPE: tun
  19. GENERAL.HWADDR: FE:54:00:80:87:7F
  20. GENERAL.MTU: 1500
  21. GENERAL.STATE: 100 (connected (externally))
  22. GENERAL.CONNECTION: vnet6
  23. GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/17
  24. IP4.GATEWAY: --
  25. IP6.ADDRESS[1]: fe80::fc54:ff:fe80:877f/64
  26. IP6.GATEWAY: --
  27. IP6.ROUTE[1]: dst = fe80::/64, nh = ::, mt = 256
  28. GENERAL.DEVICE: eno1
  29. GENERAL.TYPE: ethernet
  30. GENERAL.HWADDR: 18:60:24:A8:CD:E3
  31. GENERAL.MTU: 1500
  32. GENERAL.STATE: 100 (connected (externally))
  33. GENERAL.CONNECTION: eno1
  34. GENERAL.CON-PATH: /org/freedesktop/NetworkManager/ActiveConnection/14
  35. WIRED-PROPERTIES.CARRIER: on
  36. IP4.GATEWAY: --
  37. IP6.GATEWAY: --
  38. GENERAL.DEVICE: enp4s0f2
  39. GENERAL.TYPE: ethernet
  40. GENERAL.HWADDR: 18:60:24:A8:CD:E6
  41. GENERAL.MTU: 1500
  42. GENERAL.STATE: 30 (disconnected)
  43. GENERAL.CONNECTION: --
  44. GENERAL.CON-PATH: --
  45. WIRED-PROPERTIES.CARRIER: off
  46. IP4.GATEWAY: --
  47. IP6.GATEWAY: --
  48. GENERAL.DEVICE: ens4
  49. GENERAL.TYPE: ethernet
  50. GENERAL.HWADDR: 00:1B:21:C2:20:96
  51. GENERAL.MTU: 1500
  52. GENERAL.STATE: 30 (disconnected)
  53. GENERAL.CONNECTION: --
  54. GENERAL.CON-PATH: --
  55. WIRED-PROPERTIES.CARRIER: off
  56. IP4.GATEWAY: --
  57. IP6.GATEWAY: --
  58. GENERAL.DEVICE: lo
  59. GENERAL.TYPE: loopback
  60. GENERAL.HWADDR: 00:00:00:00:00:00
  61. GENERAL.MTU: 65536
  62. GENERAL.STATE: 10 (unmanaged)
  63. GENERAL.CONNECTION: --
  64. GENERAL.CON-PATH: --
  65. IP4.ADDRESS[1]: 127.0.0.1/8
  66. IP4.GATEWAY: --
  67. IP6.ADDRESS[1]: ::1/128
  68. IP6.GATEWAY: --
  69. IP6.ROUTE[1]: dst = ::1/128, nh = ::, mt = 256

3、查看ens4sf2网卡设备详细信息

  1. [root@areadetector network-scripts]# nmcli device show enp4s0f2
  2. GENERAL.DEVICE: enp4s0f2
  3. GENERAL.TYPE: ethernet
  4. GENERAL.HWADDR: 18:60:24:A8:CD:E6
  5. GENERAL.MTU: 1500
  6. GENERAL.STATE: 30 (disconnected)
  7. GENERAL.CONNECTION: --
  8. GENERAL.CON-PATH: --
  9. WIRED-PROPERTIES.CARRIER: off
  10. IP4.GATEWAY: --
  11. IP6.GATEWAY: --

4、开启或关闭网卡

  1. [root@areadetector network-scripts]# nmcli connection up enp4s0f2 # 开启网卡
  2. Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/18)
  3. [root@areadetector network-scripts]# nmcli connection down enp4s0f2 # 关闭网卡
  4. Connection 'enp4s0f2' successfully deactivated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/18)

5、设置IP地址

 nmcli connection modify enp4s0f2 +ipv4.address 10.30.55.52/24

6、重载网卡配置

nmcli connection reload 

六、普通用户添加sudo功能

1) 测试blctrl用户是否有sudo功能:

  1. [blctrl@areadetector ~]$ sudo ls
  2. We trust you have received the usual lecture from the local System
  3. Administrator. It usually boils down to these three things:
  4. #1) Respect the privacy of others.
  5. #2) Think before you type.
  6. #3) With great power comes great responsibility.
  7. [sudo] password for blctrl:
  8. blctrl is not in the sudoers file. This incident will be reported.

2) 切换到root用户编辑/etc/sudoers

  1. root ALL=(ALL) ALL # 找到这一行,并在其下添加需要sudo功能的用户
  2. blctrl ALL=(ALL) ALL

3) 再次测试blctrl的sudo功能

  1. [blctrl@areadetector ~]$ sudo ls
  2. [sudo] password for blctrl:
  3. data Desktop diffraction Documents Downloads Music Pictures Public Templates Videos
  4. [blctrl@areadetector ~]$

七、安装google chrome浏览器

1) 在/etc/yum.repos.d/目录下创建一个名为google-chrome.repo的文件

[root@areadetector ~]# vi /etc/yum.repos.d/google-chrome.repo

2) 在以上创建的文件中添加以下内容

  1. [google-chrome]
  2. name=google-chrome
  3. baseurl=https://dl.google.com/linux/chrome/rpm/stable/x86_64
  4. enabled=1
  5. gpgcheck=1
  6. gpgkey=https://dl.google.com/linux/linux_signing_key.pub

3) 在Linux中安装Chrome Web浏览器

首先使用dnf命令检查拉妻子Google自己的仓库的最新版本是否可用

  1. [root@areadetector blctrl]# dnf info google-chrome-stable
  2. google-chrome 16 kB/s | 3.6 kB 00:00
  3. Available Packages
  4. Name : google-chrome-stable
  5. Version : 103.0.5060.53
  6. Release : 1
  7. Architecture : x86_64
  8. Size : 82 M
  9. Source : google-chrome-stable-103.0.5060.53-1.src.rpm
  10. Repository : google-chrome
  11. Summary : Google Chrome
  12. URL : https://chrome.google.com/
  13. License : Multiple, see https://chrome.google.com/
  14. Description : The web browser from Google
  15. :
  16. : Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier.

按如下,使用dnf命令,将自动安装所有所需的依赖包:

  1. [root@areadetector blctrl]# dnf install google-chrome-stable
  2. google-chrome 8.0 kB/s | 1.3 kB 00:00
  3. Dependencies resolved.
  4. ...
  5. Installed:
  6. google-chrome-stable-103.0.5060.53-1.x86_64 liberation-fonts-1:2.00.3-7.el8.noarch liberation-mono-fonts-1:2.00.3-7.el8.noarch
  7. liberation-serif-fonts-1:2.00.3-7.el8.noarch libmetalink-0.1.3-7.el8.x86_64 mesa-vulkan-drivers-21.3.4-1.el8.x86_64
  8. vulkan-loader-1.3.204.0-2.el8.x86_64 wget-1.19.5-10.el8.x86_64
  9. Complete!

4) 在终端中启动chrome浏览器:

[root@areadetector blctrl]# google-chrome&

八、在Linux中设置SSH免密登录

用SSH密钥使用免密登录将在两台Linux服务器之间增强对简单文件同步或者传输的信任。

我的设置环境:

  1. SSH客户端: 192.168.50.150 Rocky Linux release 8.6 (Green Obsidian)
  2. SSH远程主机: 192.168.50.197 AlmaLinux release 8.6 (Sky Tiger)

如果你处理很多Linux远程服务器,则SSH免密登录是其中一种自动化任务的最好方法,诸如用脚本自动备份,使用scp命令同步文件以及远程命令执行。

在这个示例中,我们设置以用户blctrl从服务器192.168.50.150 SSH免密自动登录到用户为dbuser的服务器192.168.50.197。

第一步:在192.168.50.150上创建身份验证SSH-Keygen密钥对

首先使用用户blctrl登录到服务器192.168.50.150并且用以下命令产生一对密钥(回车到底):

  1. [blctrl@areadetector ~]$ ssh-keygen -t rsa
  2. Generating public/private rsa key pair.
  3. Enter file in which to save the key (/home/blctrl/.ssh/id_rsa):
  4. Created directory '/home/blctrl/.ssh'.
  5. Enter passphrase (empty for no passphrase):
  6. Enter same passphrase again:
  7. Your identification has been saved in /home/blctrl/.ssh/id_rsa.
  8. Your public key has been saved in /home/blctrl/.ssh/id_rsa.pub.
  9. The key fingerprint is:
  10. SHA256:/lEJRZculrAKsCu1A7AzeL9hBwzWhynuRi0yVBImWYA blctrl@areadetector
  11. The key's randomart image is:
  12. +---[RSA 3072]----+
  13. |+B+o o .o .. |
  14. |E.= = . .. .. |
  15. |o= = + .o o |
  16. |B * * . ..+.. |
  17. | O = + .S. .o. |
  18. | + B ... . |
  19. | . o = . . |
  20. | . . . |
  21. | . |
  22. +----[SHA256]-----+

第二步:上传SSH公钥到192.168.50.197

使用来自服务器192.168.50.150 ssh并且在用户dbuser下上传一个生成的公钥(id_rsa.pub)到服务器192.168.50.197

  1. [blctrl@areadetector ~]$ ssh-copy-id dbuser@192.168.50.197
  2. /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/home/blctrl/.ssh/id_rsa.pub"
  3. The authenticity of host '192.168.50.197 (192.168.50.197)' can't be established.
  4. ECDSA key fingerprint is SHA256:9DgivX1sI9QIt7TOIlT7yWmMpB2qcSbTijuCkRXQDTk.
  5. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
  6. /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
  7. /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
  8. dbuser@192.168.50.197's password:
  9. Number of key(s) added: 1
  10. Now try logging into the machine, with: "ssh 'dbuser@192.168.50.197'"
  11. and check to make sure that only the key(s) you wanted were added.
  12. [blctrl@areadetector ~]$

第三步:测试从192.168.50.150免密登录到192.168.50.197

  1. [blctrl@areadetector ~]$ ssh dbuser@192.168.50.197
  2. Activate the web console with: systemctl enable --now cockpit.socket
  3. Last login: Wed Jun 29 15:26:06 2022
  4. [dbuser@localhost ~]$

九 识别nfts分区的磁盘需要软件包ntfs-3g

  1. [root@areadetector Downloads]# dnf install ntfs-3g
  2. Last metadata expiration check: 0:25:50 ago on Wed 29 Jun 2022 04:24:25 PM CST.
  3. Dependencies resolved.
  4. ================================================================================
  5. Package Architecture Version Repository Size
  6. ================================================================================
  7. Installing:
  8. ntfs-3g x86_64 2:2021.8.22-2.el8 epel 133 k
  9. Installing dependencies:
  10. ntfs-3g-libs x86_64 2:2021.8.22-2.el8 epel 186 k
  11. Transaction Summary
  12. ================================================================================
  13. Install 2 Packages
  14. Total download size: 318 k
  15. Installed size: 685 k
  16. Is this ok [y/N]: y
  17. ...
  18. Installed:
  19. ntfs-3g-2:2021.8.22-2.el8.x86_64 ntfs-3g-libs-2:2021.8.22-2.el8.x86_64
  20. Complete!

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/247001
推荐阅读
相关标签
  

闽ICP备14008679号