Changes between Initial Version and Version 1 of TipAndDoc/VM/VMware/Server/Lucid


Ignore:
Timestamp:
Jun 6, 2010 3:01:18 PM (14 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/VM/VMware/Server/Lucid

    v1 v1  
     1[[PageOutline]] 
     2 
     3 = install VMware Server 2.0.2 on Ubuntu Lucid = 
     4 == links == 
     5 * [http://radu.cotescu.com/2010/02/21/how-to-install-vmware-server-kernel-2-6-32/ How to install VMware Server on the 2.6.32 Linux kernel :: Ubuntu Lucid 10.04, Fedora, openSUSE | Radu Cotescu] 
     6 * [http://hmontoliu.blogspot.com/2010/04/installing-vmware-server-202-in-ubuntu.html hmontoliu: Installing vmware-server-2.0.2 in Ubuntu Lucid Lynx 10.04] 
     7 
     8 = procedure produced by Radu = 
     9 * from [http://radu.cotescu.com/2010/02/21/how-to-install-vmware-server-kernel-2-6-32/ How to install VMware Server on the 2.6.32 Linux kernel :: Ubuntu Lucid 10.04, Fedora, openSUSE | Radu Cotescu] 
     10 
     11 == install Ubuntu Lucid with ubuntu-10.04-server-amd64.iso == 
     12 * uname -a 
     13{{{ 
     14Linux vmserv 2.6.32-21-server #32-Ubuntu SMP Fri Apr 16 09:17:34 UTC 2010 x86_64 GNU/Linux 
     15}}} 
     16 
     17 === set password to user root === 
     18 * sudo su - 
     19 * # passwd 
     20 
     21 * rootにパスワードを設定するのは安全性が下がるので、本来は別にユーザを作って管理するようにした方が良い 
     22 
     23 === install packages === 
     24 * sudo aptitude install -R linux-headers-`uname -r` build-essential 
     25{{{ 
     26The following NEW packages will be installed: 
     27  binutils{a} build-essential dpkg-dev{a} g++{a} g++-4.4{a} gcc{a} 
     28  gcc-4.4{a} libc-dev-bin{a} libc6-dev{a} libgomp1{a} liblzma1{a} 
     29  libstdc++6-4.4-dev{a} linux-libc-dev{a} xz-utils{a} 
     30The following packages will be upgraded: 
     31  libc-bin libc6 
     32The following packages are RECOMMENDED but will NOT be installed: 
     33  fakeroot manpages-dev 
     34}}} 
     35 
     36 === 3rd-party patched === 
     37 * mkdir vmware 
     38 * mv VMware-server-2.0.2-203138.x86_64.tar.gz vmware 
     39 * wget http://codebin.cotescu.com/vmware/vmware-server-2.0.x-kernel-2.6.3x-install.sh 
     40{{{ 
     41Location: http://github.com/raducotescu/vmware-server-linux-2.6.3x-kernel/tarball/master [following] 
     42Location: http://waitdownload.github.com/raducotescu-vmware-server-linux-2.6.3x-kernel-592e882.tar.gz [following] 
     43Saving to: `raducotescu-vmware-server-linux-2.6.3x-kernel-592e882.tar.gz' 
     44}}} 
     45 * tar xzf raducotescu-vmware-server-linux-2.6.3x-kernel-592e882.tar.gz 
     46 * mv raducotescu-vmware-server-linux-2.6.3x-kernel-592e882/* vmware/ 
     47 * ll vmware/ 
     48{{{ 
     49total 463352 
     50drwxr-xr-x 2 mitty mitty      4096 2010-06-06 14:22 ./ 
     51drwxr-xr-x 8 mitty mitty      4096 2010-06-06 14:21 ../ 
     52-rw-r--r-- 1 mitty mitty      1321 2010-04-26 05:18 LICENSE 
     53-rw-r--r-- 1 mitty mitty      1980 2010-04-26 05:18 README 
     54-rwxr-xr-x 1 mitty mitty       702 2010-04-26 05:18 start-VMware-console.sh* 
     55-rw-r--r-- 1 mitty mitty      1111 2010-04-26 05:18 vmware-config.patch 
     56-rw-r--r-- 1 mitty mitty     13618 2010-04-26 05:18 vmware-server-2.0.2-203138-update.patch 
     57-rw-r--r-- 1 mitty mitty 474415801 2009-10-24 08:13 VMware-server-2.0.2-203138.x86_64.tar.gz 
     58-rwxr-xr-x 1 mitty mitty     11358 2010-04-26 05:18 vmware-server-2.0.x-kernel-2.6.3x-install.sh* 
     59}}} 
     60 
     61 === install VMware Server === 
     62 * cd vmware/ 
     63 * ~/vmware$ sudo ./vmware-server-2.0.x-kernel-2.6.3x-install.sh 
     64{{{ 
     65The current administrative user for VMware Server  is ''.  Would you like to 
     66specify a different administrator? [no] yes 
     67 
     68Please specify the user whom you wish to be the VMware Server administrator 
     69 root 
     70 
     71Using root as the VMware Server administrator. 
     72}}} 
     73   * see [./raducotescu] for full log