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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>vbox3 - Installation</title>
</head>
<body>
<a href="http://smarden.org/pape/">G. Pape</a><br>
<a href="index.html">vbox3</a><br>
<a href="http://smarden.org/pape/vbox3/raccess4vbox3/">raccess4vbox3</a>
<hr>
<h1>vbox3 - Installation</h1>
<hr>
Download <a href="vbox3-0.1.7.tar.gz">vbox3-0.1.7.tar.gz</a> and unpack
the archive:
<pre>
# tar xfzvp vbox3-0.1.7.tar.gz
# cd vbox3-0.1.7
</pre>
run the <tt>configure</tt> script, I recommend using the following
arguments
<pre>
# ./configure --prefix=/usr \
--datadir=\${prefix}/share/isdn \
--sysconfdir=\${prefix}/../etc/isdn/vbox \
--mandir=\${prefix}/share/man \
--infodir=\${prefix}/share/info
</pre>
<ul>
<li>
If the script failes to find Your tcl-library, but it is installed,
check for <tt>libtcl*</tt> using
<pre>
# ldconfig -p
</pre>
If you find <tt>libtcl8.0.so</tt> or similar, say
<tt>libtcl.8.x.so</tt>, do
<pre>
# 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
</pre>
</ul>
run <tt>make</tt> and <tt>make install</tt>
<pre>
# make
# make install
</pre>
if you use <a href=http://cr.yp.to/daemontools.html>daemontools</a>
to run vboxgetties, copy the service directories (path may be wrong)
and change permissions
<pre>
# cp -pr service/vboxgetty-ttyI? /etc/isdn/vbox/
# chmod +t /etc/isdn/vbox/vboxgetty-ttyI?
</pre>
to make <i>vboxputty</i> available, You need to create a link
<tt>vboxputty -> vboxgetty</tt> in the directory vboxgetty is
installed, e.g.:
<pre>
# ( cd /usr/sbin && ln -s vboxgetty vboxputty )
</pre>
For configuration instructions, refer to the documentation of
<a href=http://smarden.org/pape/vbox3/raccess4vbox3/>raccess4vbox3</a>.
<hr>
<address><a href="mailto:pape@smarden.org">Gerrit Pape <pape@smarden.org></a></address>
<small><tt>$Id: install.html,v 1.6 2002/03/02 14:11:25 pape Exp $</tt></small>
</body>
</html>
|