2024-2-25
Intel 82599网卡模块兼容问题

Intel 82599网卡模块兼容问题

使用Intel 82599芯片,配Finisar或者国产光模块不兼容,发现插上模块后网卡识别不了了。(会看到dmesg提示:failed to load because an unsupported SFP+ or QSFP module type was detected。)主要原因82599系的网卡默认只支持自家的模块,第三方模块不兼容。要暂时解决这个问题我们可以通过修改网卡参数来使网卡可用解决办法rmmod ixgbe //卸载光模块驱动(Intel 10G模块的驱动为ixgbe)modprobe ixgbe allow_unsupported_sfp=1,1 //允许系统支持网卡不......
技术分享 1656次浏览0条评论
2024-2-22
shell脚本记录开关机次数

shell脚本记录开关机次数

1、开关机脚本内容#!/bin/bash# 检查记录文件是否存在,如果不存在则创建if [ ! -f /var/log/shutdowns.log ]; then touch /var/log/shutdowns.log echo "0" > /var/log/shutdowns.logfi# 读取当前的开机次数boot_count=$(cat /var/log/shutdowns.log)# 记录开机时间和次数echo "$(date): System booted. Shutdown count: $boot_count" >> /var/l......
技术分享 1419次浏览0条评论
微信二维码