add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/linux/ethtool.md Normal file
View File

@@ -0,0 +1,28 @@
# ethtool
> 显示和修改网络接口控制器NIC参数。
> 更多信息:<https://manned.org/ethtool>。
- 显示接口的当前设置:
`ethtool {{eth0}}`
- 显示接口的驱动程序信息:
`ethtool --driver {{eth0}}`
- 显示接口支持的所有功能:
`ethtool --show-features {{eth0}}`
- 显示接口的网络使用统计信息:
`ethtool --statistics {{eth0}}`
- 在接口上闪烁一个或多个LED灯持续10秒
`ethtool --identify {{eth0}} {{10}}`
- 设置给定接口的链路速度、双工模式和参数自动协商:
`ethtool -s {{eth0}} speed {{10|100|1000}} duplex {{half|full}} autoneg {{on|off}}`