LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   lisa startup (https://www.linuxquestions.org/questions/slackware-14/lisa-startup-253584/)

digital21st 11-11-2004 08:09 AM

lisa startup
 
i was wondering if ther was a way to automatically start lisa upon bootup.

the command to start lisa is : LISA OR LISA - Q (i think)

is there like a config file i can put this in, that will automatically run the command

thanks in advance

digital

ranger_nemo 11-11-2004 08:59 AM

You can put the command in /etc/rc.local . Anything there will be run after the computer is done booting.

rotvogel 11-11-2004 09:38 AM

Quote:

Originally posted by ranger_nemo
You can put the command in /etc/rc.local . Anything there will be run after the computer is done booting.
To be precise: /etc/rc.d/rc.local :)

digital21st 11-11-2004 11:25 AM

i added the lisa -q to this file but it doesn't rum upon boot-up. i still have to open a terminal an run in each time.

the eaxct file looks like this

#!/bin/sh
#
# /etc/rc.d/rc.local: Local system initialization script.
#
# Put any local setup commands in here
lisa -q





any ideas??

rotvogel 11-11-2004 11:32 AM

Add the full path to the command, for example:
Code:

/opt/kde/bin/lisa -q

Jeebizz 11-11-2004 03:22 PM

This is what i have in my rc.local file to start lisa daemon, and it works just fine

#starts the lisa daemon
if [ -x /opt/kde/bin/lisa ]; then
echo "Starting LISa daemon..."
/opt/kde/bin/lisa
fi


All times are GMT -5. The time now is 11:00 PM.