> has any1 managed to get NTK running on netkit?
> I've been trying for a while but had problem installing python 2.5
> both with tunneling and mounting mode...
Do it like this
on your host machine
cd ~/sources
svn co
http://dev.hinezumi.org/svnroot/netsukuku/trunk netsukuku
Now if you installed Netkit you can start your host machine
make sure you have tunctl installed
vstart namevirtualmachine1 --eth0=tap,10.0.0.1,10.0.0.2 --mem=64
this starts a virtual machine with IP address 10.0.0.2 and opens a tap
interface on your host machine with 10.0.0.1 and automagically NAT and
everything is up
Now on the virtual machine edit /etc/resolv.conf to resolve names
Then
apt-get update
apt-get install python2.5
cd /hosthome/sources/netsukuku/pyntk
python2.5 setup.py build
python2.5 setup.py install
I'm at this point.
Now just launching ntkd:
host1:/hosthome/SORGENTI/netsukuku/pyntk# ntkd
Traceback (most recent call last):
File "/usr/bin/ntkd", line 22, in <module>
from ntk.ntkd import NtkNode
File "/usr/lib/python2.5/site-packages/ntk/ntkd.py", line 21, in <module>
import ntk.core.radar as radar
File "/usr/lib/python2.5/site-packages/ntk/core/radar.py", line 23,
in <module>
from ntk.lib.micro import micro
File "/usr/lib/python2.5/site-packages/ntk/lib/micro.py", line 20, in <module>
import stackless
ImportError: No module named stackless
host1:/hosthome/SORGENTI/netsukuku/pyntk#
Does not work :(
I'm now trying this my friends at ninux wrote long time ago:
http://wiki.ninux.org/Netsukuku
stay tuned :)
Saverio