1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
G. Pape
vbox3
raccess4vbox3
-------------------------------------------------------------------------------
vbox3 - Installation
-------------------------------------------------------------------------------
Download vbox3-0.1.7.tar.gz and unpack the archive:
# tar xfzvp vbox3-0.1.7.tar.gz
# cd vbox3-0.1.7
run the configure script, I recommend using the following arguments
# ./configure --prefix=/usr \
--datadir=\${prefix}/share/isdn \
--sysconfdir=\${prefix}/../etc/isdn/vbox \
--mandir=\${prefix}/share/man \
--infodir=\${prefix}/share/info
* If the script failes to find Your tcl-library, but it is installed, check
for libtcl* using
# ldconfig -p
If you find libtcl8.0.so or similar, say libtcl.8.x.so, do
# make distclean
# sed s/-ltcl/-ltcl8.x/g < configure > configure.local
# sh ./configure.local --prefix=/usr \
--datadir=\${prefix}/share/isdn \
--sysconfdir=\${prefix}/../etc/isdn/vbox \
--mandir=\${prefix}/share/man \
--infodir=\${prefix}/share/info
run make and make install
# make
# make install
if you use daemontools to run vboxgetties, copy the service directories (path
may be wrong) and change permissions
# cp -pr service/vboxgetty-ttyI? /etc/isdn/vbox/
# chmod +t /etc/isdn/vbox/vboxgetty-ttyI?
to make vboxputty available, You need to create a link vboxputty -> vboxgetty
in the directory vboxgetty is installed, e.g.:
# ( cd /usr/sbin && ln -s vboxgetty vboxputty )
For configuration instructions, refer to the documentation of raccess4vbox3.
-------------------------------------------------------------------------------
Gerrit Pape <pape@smarden.org>
$Id: INSTALL,v 1.7 2002/03/02 14:11:25 pape Exp $
|