2019-05-30发表2023-03-17更新网络2 分钟读完 (大约286个字)解决服务器千兆网卡显示只有百兆速度1234567891011121314151617181920212223242526272829303132333435363738394041<!--more-->ethtool eno1Settings for eno1: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: Symmetric Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: Symmetric Advertised auto-negotiation: Yes Speed: 100Mb/s# 使用命令查看时,虽然显示是千兆网卡,但Speed只有100Mb/sethtool -s eno1 speed 1000# 使用上面命令可能将网卡重新设置为1000Mb/svim /etc/sysconfig/network-scripts/ifcfg-eno1ETHTOOL_OPTS="speed 1000 duplex full autoneg off"# 在网卡配置中加入上面一行,可以强制将网卡设置为千兆。==============================================================================================ethtool命令的简单使用ethtool ethX# 查看网卡信息ethtool –h # 显示ethtool的命令帮助(help)ethtool –i ethX # 查询ethX网口的相关信息ethtool –d ethX # 查询ethX网口注册性信息ethtool –r ethX # 重置ethX网口到自适应模式ethtool –S ethX # 查询ethX网口收发包统计ethtool –s ethX [speed 10|100|1000] [duplex half|full] [autoneg on|off] [port tp|aui|bnc|mii] # [speed 10|100|1000] 设置网口速率10/100/1000M# [duplex half|full] 设置网口半/全双工# [autoneg on|off] 设置网口是否自协商# [port tp|aui|bnc|mii] 设置网口类型
2019-05-29发表2023-03-17更新网络2 分钟读完 (大约242个字)使用默认终端连接远程服务器(.ssh/config的作用)123456789101112131415161718192021222324252627282930313233<!--more-->如果使用系统上的默认终端连接多个远程终端?1. 创建公钥并传到远程服务器ssh-keygen -t rsa -P ''ssh-copy-id -i ~/.ssh/id_rsa.pub 10.129.14.42. 配置vim .ssh/config# 此文件开始是没有的,手动添加即可Host dl-gw-01 # 在ssh连接时要使用的远程主机名,这个名字是自定义的 HostName 10.129.14.4 # 远程主机地址 Port 22 # 远程主机ssh端口 User root # 远程主机的用户名3. 关闭服务器上的密码认证,开启公钥认证,在/etc/ssh/sshd_conf中修改下面即可PubkeyAuthentication yes # 开启公钥认证PasswordAuthentication no # 关闭密码认证4. .ssh/config的使用方法Host dl-gw-01 HostName 10.129.14.4 Host dl-gw-02 HostName 10.129.14.5 Host dl-gw-* User root # 这样使用的方式是一个通用配置,只要是dl-gw-开头的主机都使用root用户登录 Host * Port 22 # 这样使用通用配置也可以 5. 连接ssh dl-gw-01 参考:https://www.cnblogs.com/xjshi/p/9146296.html
2019-05-16发表2023-03-17更新基础1 分钟读完 (大约151个字)分区工具parted123456789101112<!--more-->partedselect /dev/sdb #切换磁盘mklable gpt # 切换为gpt模式mkpart primary 0 -1 # 创建磁盘,命名为primary,0 -1表示分配所有磁盘空间toggle 1 lvm # 将第1个分区改为lvmprint # 查看# 这里有一个问题,分配大于2TB空间的磁盘,在查看分区时会有一个Partition 1 does not start on physical sector boundary.的提示# 也可以使用gdisk工具分配大于2TB空间的磁盘,使用方法与fdisk类似。unit TB # 设置单位为TBmkpart primary 0 3 # 设置为一个主分区,大小为3TB,开始是0,结束是3
2019-05-16发表2023-03-17更新基础几秒读完 (大约49个字)CentOS7系统升级123456789101112131415161718<!--more-->vim /etc/yum.repos.d/CentOS-local.repo[base]name=CentOS-$releasever - Basebaseurl=https://mirrors.aliyun.com/centos/7.6.18.10/os/$basearch/gpgcheck=0enabled=1[updates]name=CentOS-$releasever - Updatesbaseurl=https://mirrors.aliyun.com/centos/7.6.18.10/updates/$basearch/gpgcheck=0enabled=1yum clean allyum repolistyum -y updatereboot