Author Topic: How to start automatically upon boot?  (Read 6616 times)

0 Members and 1 Guest are viewing this topic.

Offline kenpodragon

  • Full Member
  • ***
  • Posts: 64
    • View Profile
Re: How to start automatically upon boot?
« Reply #2 on: November 07, 2013, 04:34:23 pm »
create a .sh file in /etc/init.d (chmod +x)
update-rc.d startPS.sh default

you can also add it to crontab -e
@reboot /home/user/startPS.sh


Offline rando

  • Full Member
  • ***
  • Posts: 100
    • View Profile
How to start automatically upon boot?
« Reply #1 on: November 07, 2013, 04:51:32 am »
Anyone know how to start protoshares automatically upon boot (Ubuntu)?

I've tried:
sudo nano /etc/rc.local

and adding:
cd /home/me/ProtoShares
./protosharesd
exit 0

It changes into the ProtoShares directory successfully, but checking top, shows that protosharesd is not started.