昆山企业做网站,网站建设技术可行性分析,数据中心网络架构,搬瓦工vps建设网站IBM AIX v5.3操作系统环境下在对网络或网卡进行操作过程中经常遇到Device Busy而终止操作例如:#rmdev -l ent1遇到如下返回信息Method error (/etc/methods/ucfgdevice):0514-062 Cant perform the requested function because the speciafield.device is busy. 解…IBM AIX v5.3操作系统环境下在对网络或网卡进行操作过程中经常遇到Device Busy而终止操作例如:#rmdev -l ent1遇到如下返回信息Method error (/etc/methods/ucfgdevice):0514-062 Cant perform the requested function because the speciafield.device is busy. 解决思路如下:一,首先要确认网络接口或网卡已经down或是detached使用以下脚本可以down或是detached所有interfaces lsdev -Cc if -F name | grep -v lo0for interface in $interfacesdoifconfig #interface downifconfig #interface detachdone二,检查是否有下列应用正在运行;1,SNA#lssrc -g sna (检查SNA是否运行)#stopsrc -g sna (停止SNA)#stopsrc -f -s sna (强制停止SNA)如果以上命令不起作用,可以在命令行强行中止#/usr/bin/sna -stop sna -t forced#/usr/bin/sna -stop sna -t cancel 2,IPX#ps -ef|grep -i npsd#ps -ef|grep -i sapd (检测IPX是否正在运行)#/usr/lpp/netware/bin/stopnps (停止IPX) 3,Netbios#ps -ef|grep -i netbios (检测netbios是否正在运行)#mcso unload (停止Netbios) 以上步骤对大部分网络Device Busy问题都可以解决.转载于:https://www.cnblogs.com/zlg88/p/6059694.html