Running code without ssh in beaglebone black

596 Views Asked by At

I want to run some code in Beaglebone black without doing ssh when I apply power.

I have tried putting some commands to run the code in ~/.bashrc file but it only works when I login using ssh. I have tried same thing with /etc/rc.local file but didn't work even after ssh.

I have also tried @reboot my_command in crontab -e but it also requires me to login using ssh Any suggestions??

EDIT:

root@beaglebone:~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.6 (jessie)
Release:    8.6
Codename:   jessie

root@beaglebone:~# ps aux | grep cron | grep -v grep
root       295  0.0  0.3   4428  1988 ?        Ss   15:03   0:00 /usr/sbin/cron -f

Output of crontab -e: last few lines

root@beaglebone:~# crontab -e
    # For more information see the manual pages of crontab(5) and cron(8)
    #
    # m h  dom mon dow   command


#@reboot /root/wiringBone-master/library/main           not working

#*/5 * * * * /root/wiringBone-master/library/main       works

main is the script I want to run

3

There are 3 best solutions below

0
On BEST ANSWER

crontab -e method worked!!. My script required two overlays to execute the code which I didn't load that's why my @reboot command didn't work. I solved my problem by adding required overlays.

@reboot config-pin overlay cape-universaln
@reboot config-pin overlay BB-ADC
@reboot /root/wiringBone-master/library/main

And now my code works on reboot.

8
On

I don't know anything about beagle bone, but on a normal Linux system you'd likely do this with either an init script, or, more easily, in a cron script set to run at boot.

You'll have to check if you're environment would support either of those. Even if it doesn't have cron, it is probably running some sort of init (likely to be the thing starting SSH on boot, but YMMV).

3
On

/etc/rc.local is a quick way. Make sure to launch into background and don't prevent the script from finishing.

Writing a proper systemd service file would be better though.