VMware

来自百合仙子's Wiki
跳转到导航 跳转到搜索

网络配置

配置固定IP分配

修改 /etc/vmware/vmnet1/dhcpd/dhcpd.conf 配置文件,加入如下内容:

host ubuntu {
  hardware ethernet 00:0c:29:91:9e:c6;
  fixed-address 192.168.27.11;
}
host ubuntu1 {
  hardware ethernet 00:0c:29:25:e8:df;
  fixed-address 192.168.27.12;
}

其中 host 后是系统的名字hardware ethernet 是使用该路由的网卡地址,使用ifconfig命令可以看到。

虚拟硬盘操作

合并

vmware-vdiskmanager -r smallfiles.vmdk -t 0 bigsinglefile.vmdk

来源:Merging VMWare files to single file « Life in the fast lane…

参见