1、下载源码
http://downloads.openwrt.org/snapshots/trunk/x86/openwrt-x86-generic-combined-ext4.img.gz
2、格式转换
(1) 转换在linux系统下下载qemu-img
运行命令
sudo apt-get install qemu-utils
(2)解压
gunzip openwrt-x86-generic-combined-ext4.img.gz
(3)之后把img的映像文件转换成vmware的硬盘文件
qemu-img convert -f raw 这里是img合适的映像文件 -O vmdk openwrt-x86-2.6-ext2.vmdk(这里是vmware的硬盘文件,文件名自己选但扩展名要是.vmdk)
3、创建虚拟机
新建一个虚拟机,然后删除该虚拟机的硬盘,将编译得到的镜像拷贝到该虚拟机目录重新添加一个硬盘,指定使用编译的镜像,磁盘格式选ide,默认的scsi不支持。
4、开机
更改ip ,添加dns、gateway
5、安装luci
opkg update
opkg install luci
opkg install luci-i18n-chinese
参考