Llink:Linux installation: Difference between revisions

From Lundman Wiki
No edit summary
No edit summary
Line 23: Line 23:
make
make
cp unrar /usr/local/llink
cp unrar /usr/local/llink
</pre>
Change ROOT in llink.conf, change skin if you feel like it
<pre>
vi /usr/local/llink/llink.conf
</pre>
Copy startupscript and enable it as shown in chapter about installing from source. Start with:
<pre>
/etc/init.d/llink start
</pre>
</pre>



Revision as of 17:48, 21 December 2008

Install from pre-compiled binary

Download binary from http://www.lundman.net/wiki/index.php/Llink#Binaries

cd /usr/local/src
wget <url>

Unpack binary:

tar xvfz <filename> (ex: tar xvfz llink-2.2.0-linux_x86.tar.gz)
mkdir /usr/local/
cp -apr llink /usr/local/

The unrar from llink source is required, it is patched with special functions. Download, unpack and compile winrar:

cd /usr/local/src
wget http://www.lundman.net/ftp/llink/llink-2.2.0.tar.gz
tar xvfz llink-2.2.0.tar.gz
cd llink-2.2.0/unrar-3.7.8-seek
./configure
make
cp unrar /usr/local/llink

Change ROOT in llink.conf, change skin if you feel like it

vi /usr/local/llink/llink.conf

Copy startupscript and enable it as shown in chapter about installing from source. Start with:

/etc/init.d/llink start

Install from source

Step 1:

Install any necessary dependencies, such as g++. e.g. For Debian:

apt-get install gcc g++ libc6-dev openssl libssl-dev libdvdnav-dev   

Step 2:

Download the source code:

cd /usr/local/src
wget http://www.lundman.net/ftp/llink/llink-2.2.0.tar.gz

Step 3:

Extract the source code:

tar xvfz llink-2.2.0.tar.gz

Step 4:

Configure and build the source code:

cd llink-2.2.0
./configure --without-openssl
make all

Step 5:

Install the executable and resource files:

make install
mkdir -p /usr/local/etc/llink
cp -a src/skin /usr/local/etc/llink/.
cp src/*.conf /usr/local/etc/llink/.

Step 6:

Create the following script as /etc/init.d/llink


#!/bin/sh

### BEGIN INIT INFO
# Provides:          llink
# Required-Start:    $network $local_fs $remote_fs
# Required-Stop:     $network $local_fs $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: start llink daemon
### END INIT INFO


# Defaults
RUN_MODE="daemons"

LLINKPID=/var/run/llink.pid
LLINK=/usr/local/bin/llink
LLINKOPTS="-f /usr/local/etc/llink/llink.conf -w /usr/local/etc/llink"

# clear conflicting settings from the environment
unset TMPDIR

# See if the daemons are there
test -x /usr/local/bin/llink || exit 0

. /lib/lsb/init-functions

case "$1" in
        start)
                log_daemon_msg "Starting llink daemons" "llink"

                if ! start-stop-daemon --start --quiet --exec $LLINK -- $LLINKOPTS ; then
                        log_end_msg 1
                        exit 1
                fi

                log_end_msg 0
                ;;
        stop)
                log_daemon_msg "Stopping llink daemons" "llink"

                start-stop-daemon --stop --quiet --oknodo --exec $LLINK -- $LLINKOPTS
                ;;
        reload|restart|force-reload)
                $0 stop
                sleep 1
                $0 start
                ;;
        *)
                echo "Usage: /etc/init.d/llink {start|stop|reload|restart|force-reload}"
                exit 1
                ;;
esac

exit 0

Step 8:

Edit the configuration file:

vi /usr/local/etc/llink/llink.conf

step 9: Make a symbolic link to unrar and dvdnav-config

cd /usr/local/etc/llink
ln -s ../../bin/unrar ./unrar
ln -s ../../bin/dvdnav-config ./dvdnav-config

Step 10:

Start and test llink:

/etc/init.d/llink start

Step 11:

If you are satisfied, configure llink to start automatically with rcconf:


rcconf