+
+ 
I suppose that You know how to setup plain VM via VMware.
And here is my basic Ubuntu VM configuration:
- Ubuntu Server 10.04.2 doesn't include SSH server by default. That's why you have to install it:
- Check your Ubuntu VM IP:
- Configure Kitty connection host name:
- Create two scripts for:
- startup VM in background (start_vm.bat)
- shutdown VM (stop_vm.bat)
- Configure Kitty for auto-login:
- VM startup and Kitty run can be combined into one script
sudo apt-get install ssh
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:04:55:d6
inet addr:192.168.11.134 Bcast:192.168.11.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe04:55d6/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:50 errors:0 dropped:0 overruns:0 frame:0
TX packets:52 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:6303 (6.3 KB) TX bytes:7366 (7.3 KB)
Interrupt:19 Base address:0x2000
set MYVM="F:\VMs\ubuntu-10.04.2-server\Ubuntu Server 10.04.2.vmx" set VMRUN="E:\Program Files\VMware\VMware Workstation\vmrun" %VMRUN% -T ws start %MYVM% nogui
set MYVM="F:\VMs\ubuntu-10.04.2-server\Ubuntu Server 10.04.2.vmx" set VMRUN="E:\Program Files\VMware\VMware Workstation\vmrun" %VMRUN% stop %MYVM% soft
No comments:
Post a Comment