3

Possible Duplicate:
How to make sudo remember my password and how to add an application to startup

I have lampp installed on my Ubuntu 12.04 Everything works very fine and now I would like to start the lampp-server on startup.

I have a startlampp.sh script with this:

cd /opt/lampp
sudo ./lampp start

code in it. It is enabled for execution and when I run it in terminal I am asked for the password and finally it starts lampp.

Can I include the password in the script that it runs on startup?

Greetings philipp

philipp
  • 369

1 Answers1

3

You can edit the rc.local file to auto start lampp.

use root login and edit /etc/rc.local file and add line /opt/lampp/lampp start to end of the file.

Reboot the machine and you can check the status of the lampp using /opt/lampp/lampp status

Hope this helps you!

devav2
  • 36,312