i hope this is my last post on colinux and erlang, but although i had written several time about it, i will do it once more, to sum up a little guide to setup a new colinux with the correct way to set erlang on it. i also added few words on adding the nitrogen web framework.
> is used for windows command prompt
$ is used for linux shell prompt
- put the final iso file on a new directory c:\linux\distro
2. qemu
- extract qemu into a new directory c:\linux\qemu
- start windows command prompt
- make a 3gb image -
> fsutil file createnew c:\linux\distro\qemu_ubuntu_3gb 3221257728
- make a image for a 512mb swap file
> fsutil file createnew c:\linux\distro\qemu_swap_512mb 536903168
- on c:\linux\qemu create the next batch file: install.bat
1: @ECHO OFF
2: set qemu_dir=C:\linux\distro
3: set hd=%qemu_dir%\qemu_ubuntu_3gb
4: set swap=%qemu_dir%\qemu_swap_512mb
5: set cdrom=%qemu_dir%\ubuntu-8.04.2-server-i386.iso
6: set mem=384
7: qemu -hda %hd% -hdb %swap% -cdrom %cdrom% -m %mem% -boot d -L .
8: pause
- run the batch file you have just created: install.bat
- go through the linux installation, select manually partition when asked, and do the following:
create new partition
choose /dev/sda
choose create as: primary partition
choose file system: ext3
create new partition
choose /dev/sdb
choose create as: primary partition
choose file system: linux-swap
- install, and when you get to the point it asks for restart - you have finished. it takes some time, so be patient.
3. colinux
- run and install on c:\coLinux
- don't use or download any of the suggested distributions on the install process
- open command prompt and do
- convert qemu ubuntu image to colinux image
> dd if=qemu_ubuntu_3gb of=ubuntu_3gb.img bs=512 skip=63
- you only need the file ubuntu_3gb.img the other 2 files (qemu_swap_512mb and qemu_ubuntu_3gb) can be removed
- create new swap file -
> fsutil file createnew c:\linux\distro\swap_512mb 536870912
- create a file on c:\linux\distro named ubuntu8.04.conf, and paste the following into it:
kernel=vmlinux
sda1="c:\linux\distro\ubuntu-8.04.2-server-i386.ext3.3gb.img"
sdb1="c:\linux\distro\swap_512mb"
root=/dev/sda1 fastboot 3
ro
mem=384
eth0=slirp
eth1=tuntap
- create a shortcut for colinux-daemon.exe, right click on it and edit its properties, to add the following parameters (on the shortcut target field)
c:\coLinux\colinux-daemon.exe -t nt @c:\linux\distro\ubuntu8.04.conf
- start this new shortcut, running the colinux the first time
- edit /etc/network/interfaces and the windows TAP connection, see
my previous post named colinux from Sunday, November 2, 2008 (steps 10 and 11)
- install ssh and update:
$ sudo apt-get install ssh
$ sudo apt-get update
$ sudo apt-get upgrade
- change basic shell to bash:
$ chsh -s /bin/bash user_name
- connect using putty to 192.168.37.20:22
4. compress and backup the colinux image
- to determine the free space in megabytes
- fill image with zeros
$ dd if=/dev/zero of=foobar bs=1M count=above result less 5
$ rm foobar
- logout, and compress from windows using winrar, should get around 100MB file
5. install erlang from source
$ sudo apt-get install build-essential
$ sudo apt-get install libncurses5-dev
$ sudo apt-get install m4
$ sudo apt-get install libssl-dev
$ sudo apt-get install openssl
$ cd; mkdir workspace; cd !
$ wget http://erlang.org/download/otp_src_R12B-5.tar.gz
$ tar xvfz otp_src_R12B-5.tar.gz
$ cd otp_src_R12B-5
$ ./configure
$ make
$ sudo make install
6. install some basics
$ sudo apt-get install git subversion ctags vim
7. setup environment
- edit .bash_profile, and add the following at the bottom:
export ERL_LIBS=${HOME}/erlang/lib8. download nitrogen
$ cd; mkdir -p erlang/lib; cd !$
$ git clone git://github.com/rklophaus/nitrogen.git
$ cd nitrogen
$ make
9. done