|
1,Create virtual machines for VMware Player: http://www.easyvmx.com/
2,install ubuntu;
3,update ubuntu source list: apt-get update;
4,install samb: apt-get samba;
5,set samb for shared folder: gedit /etc/samb/smb.conf
[Shared]
comment = Shared Folder
path = /home/welkin/share
public = yes
writable = yes
create mask = 0777
# directory mask = 0777
# available = yes
# browseable = yes
printable = no
only guest = no
then reboot samba /etc/init.d/samb restart;
6,install vmware tools,download vmware-tools-distrib.tbz2,uncompress it ,then run *.pl file;
1),support copy/paste between host and guest OS
2),support sync datetime with host os;
3),support mouse/wheel
7,set for supporting wheel: gedit /etc/X11/xorg.conf
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
8,install vim-full: apt-get install vim-full
9,install chinese input : apt-get install scim-pinyin |
|
|