我目前正在使用 ubuntu 13.04 和 windows 7。但我想更改我的 pc 的 MAC 地址。有什么办法可以改变它。
小智 22
在命令行(终端)中,运行:
sudo ifconfig eth0 downsudo ifconfig eth0 hw ether 00:11:22:33:44:55sudo ifconfig eth0 up这对于当前用户的会话来说已经足够了。但是,为了使更改持续存在,您还必须编辑/etc/network/interfaces和创建或修改界面条目。例如:
iface eth0 inet dhcp
hwaddress ether 08:00:00:00:00:01
Run Code Online (Sandbox Code Playgroud)
来源:http : //blog.sleeplessbeastie.eu/2013/01/11/how-to-change-the-mac-address-of-an-ethernet-interface/
小智 8
你可以安装macchanger
sudo apt-get install macchanger
macchanger --mac=01:23:45:67:89:AB eth1
Run Code Online (Sandbox Code Playgroud)
小智 7
在 Ubuntu 中,您可以在网络设置中克隆一个 Mac 地址。
单击顶部栏中的网络图标并选择Edit connections。选择您当前的网络并点击编辑。在以太网选项卡中,您应该会看到您的实际设备 MAC 和一个用于输入要克隆的 MAC 的字段。