diff options
author | Christian Pointner <equinox@anytun.org> | 2008-12-27 01:37:51 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-12-27 01:37:51 +0000 |
commit | e2f6f861375aea953866477f5736de5a4150d360 (patch) | |
tree | 87f75e1b143f1011e91b37fd5ca2bb5097f43fb5 /README | |
parent | initial directory checkin (diff) |
initial checkin
damonizing
chroot
signal handling
syslog
Diffstat (limited to 'README')
-rw-r--r-- | README | 41 |
1 files changed, 41 insertions, 0 deletions
@@ -0,0 +1,41 @@ +Dependencies +============ + +Linux +----- + +build-essential +libgcrypt11-dev + +Installation +============ + +Getting the source via subversion: +---------------------------------- +svn co ... + +Building from source +-------------------- + +# cd src +# ./configure +# make + + + +Errors: +------- + +Note: Cannot open TUN/TAP dev /dev/net/tun: No such file or directory (errno=2) +Cannot open TUN/TAP dev /dev/anytun0: No such file or directory (errno=2) + +Solution: Enabling tun/tap device +------------------------------------ + +modprobe tun +cd /dev +./MAKEDEV tun + +edit /etc/modules and add the line +tun +to load the module automatically |