如何更改MAC:方法一、打开终端:Quote:
$ su
password:(密码)
$ ifconfig eth0 down
$ ifconfig eth0 hw ether xxxxxxxxxxxx (mac地址)
$ ifconfig eth0 up
$ /etc/init.d/networking restart
此种作法的弊病是每次重启后都必须改一次
方法二、让linux启动时直接改成你想改的macQuote:
$ su
password:(密码)
$gedit /etc/init.d/networking
找到:
case "$1" in
start)
在下面添加:
ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
保存,然后重新启动linux ,就可以了。
方法三(适用于Mandriva、Fedora core)Quote:
$ su
password:(密码)
$vi /etc/sysconfig/network-scripts/ifcfg-eth0
加上
MACADDR=xx:xx:xx:xx:xx:xx
方法四(如果以上都不适用,终极手段)
上12楼!上12楼!上12楼!上12楼![ 此贴被snowman在2006-04-11 22:56重新编辑 ]