Sunday, November 05, 2006

Colinux Rocks!

Colinux Website http://www.colinux.org/
Colinux Docs http://wiki.colinux.org/wiki/Main_Page

Install colinux and download a Debian image
.

Create a bridge between the "Local Area Network" and the "Colinux Tap ........."
Assign IP address to the Bridge.

Start colinux and login as user root password root
Add DNS address to resolv.confecho "nameserver 192.168.10.1" > /etc/resolv.conf

Configure IP address and Route
ifconfig eth0 192.168.10.114 && route add default gw 192.168.10.1


if the above works,

nano /etc/network/interfaces

iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.10.114
netmask 255.255.255.0
gateway 192.168.10.1


adduser amol


Install stuff
apt-get update
apt-get install -y mc
apt-get install -y lynx
apt-get install -y links
apt-get install -y screen
apt-get install -y vim
apt-get install -y apache2
apt-get install -y ssh
apt-get install -y ksh
apt-get install -y nmap
apt-get install -y tcpdump
apt-get install -y wdm
apt-get install -y wmaker
apt-get install -y wmakerconf
apt-get install -y tightvncserver

Configure VNC Server
vi /etc/X11/wdm/Xservers
:0 local /usr/bin/Xtightvnc -desktop vt7 -depth 24 -geometry 960x720

Start VNC Server and set a password


Start colinux from windows using the following command:

colinux-daemon.exe -t nt -c debian.xml

To install colinux as a service:
colinux-daemon.exe -c debian.xml --install-service "Debian Linux"

0 comments: