0x800705b4怎么解决 0x80070570( 十 )


0 S root24735243190800 – 28170 pipe_w9800 02:08 pts/100:00:00 grep –color=auto etcd
┌──[root@vms81.liruilongs.github.io]-[~/ansible]
└─$
┌──[root@vms81.liruilongs.github.io]-[~/ansible]
└─$cd/proc/2025/fd/
┌──[root@vms81.liruilongs.github.io]-[/proc/2025/fd]
└─$ls
0102109116121126131136182227313640455545964717883995
110311117122127132141923283237414650556657379849097
…….
最后的手段
当你看到这里的时候,你的问题可能得到也可能没有得到解决,但是,你会获取大量描述它的信息 。在搜索引擎上看看他们是如何解决问题的 。尝试一个解决方案,并观察系统或应用程序的行为是否发生了变化 。每次尝试新方案时,请转到流程最开始重新开始系统诊断,因为,每一个修复都可能会让应用程序的行为发生变化 。
如果涉及到网络配置,也可用个通过NetworkManager服务来配置网络相关的管理,网卡方面,可以通过nmcli dev status命令用来查看所有网络设备的当前状态 。这部分感兴趣小伙伴可以看看我之前的博文
┌──[root@liruilongs.github.io]-[~]
└─$nmcli dev status
DEVICETYPESTATECONNECTION
privbr0bridgeconnectedprivbr0
virbr0bridgeconnectedvirbr0
eth0ethernetconnectedeth0
vnet0tunconnectedvnet0
vnet1tunconnectedvnet1
loloopbackunmanaged—
virbr0-nictununmanaged—
通过show命令 nmcli device show eth0可以查看网卡详细信息
┌──[root@servera.lab.example.com]-[~]
└─$nmcli device show eth0
GENERAL.DEVICE:eth0
GENERAL.TYPE:ethernet
GENERAL.HWADDR:52:54:00:00:FA:0A
GENERAL.MTU:1500
GENERAL.STATE:100 (connected)
GENERAL.CONNECTION:Wired connection 1
GENERAL.CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/1
WIRED-PROPERTIES.CARRIER:on
IP4.ADDRESS[1]:172.25.250.10/24
IP4.GATEWAY:172.25.250.254
IP4.ROUTE[1]:dst = 172.25.250.0/24, nh = 0.0.0.0, mt = 100
IP4.ROUTE[2]:dst = 0.0.0.0/0, nh = 172.25.250.254, mt = 100
IP4.DNS[1]:172.25.250.254
IP6.ADDRESS[1]:fe80::984:87d2:dba7:1007/64
IP6.GATEWAY:—
IP6.ROUTE[1]:dst = fe80::/64, nh = ::, mt = 100
IP6.ROUTE[2]:dst = ff00::/8, nh = ::, mt = 256, table=255
┌──[root@servera.lab.example.com]-[~]
└─$
相关的命令
┌──[root@servera.lab.example.com]-[~]
└─$nmcli device
connectdisconnectlldpmonitorsetstatus
deletehelpmodifyreapplyshowwifi
man 帮助文档
DEVICE MANAGEMENT COMMANDS
nmcli device {status | show | set | connect | reapply | modify | disconnect | delete | monitor | wifi
| lldp} [ARGUMENTS…]
Show and manage network interfaces.
status
Print status of devices.
This is the default action if no command is specified to nmcli device.
show [ifname]
Show detailed information about devices. Without an argument, all devices are examined. To get
information for a specific device, the interface name has to be provided.
set [ifname] ifname [autoconnect {yes | no}] [managed {yes | no}]
Set device properties.
connect ifname
Connect the device. NetworkManager will try to find a suitable connection that will be activated.
It will also consider connections that are not set to auto connect.
If no compatible connection exists, a new profile with default settings will be created and
activated. This differentiates nmcli connection up ifname "$DEVICE" from nmcli device connect
"$DEVICE"
If –wait option is not specified, the default timeout will be 90 seconds.
reapply ifname
Attempt to update device with changes to the currently active connection made since it was last
applied.
modify ifname {option value | [+|-]setting.property value}…

推荐阅读