Re: [beagleboard] Re: How to Autorun application at the start up in BeagleBone

2018-04-19 Thread santosh . aiwale
on crontab working but output not showing on serial debug. On Saturday, April 14, 2018 at 2:23:59 PM UTC+5:30, c2h2 wrote: > > crontab log can be specified if your /etc/rc.local is not existent or > executed. > > https://stackoverflow.com/questions/4883069/debugging-crontab-jobs > > depend on yo

Re: [beagleboard] Re: How to Autorun application at the start up in BeagleBone

2018-04-19 Thread santosh . aiwale
On Friday, April 13, 2018 at 9:49:09 PM UTC+5:30, Przemek Klosowski wrote: > > On Fri, Apr 13, 2018 at 9:07 AM, > > wrote: > > > > /etc/rc.local directory not available > It's a file, not a directory. Just try it: > > echo touch /tmp/testRClocal > /etc/rc.local > > and reboot the system. Y

Re: [beagleboard] Re: How to Autorun application at the start up in BeagleBone

2018-04-14 Thread Yiling Cao
crontab log can be specified if your /etc/rc.local is not existent or executed. https://stackoverflow.com/questions/4883069/debugging-crontab-jobs depend on you linux distro also have a look like /etc/init.d/ On Sat, Apr 14, 2018 at 1:18 AM, Przemek Klosowski < przemek.klosow...@gmail.com> wro

Re: [beagleboard] Re: How to Autorun application at the start up in BeagleBone

2018-04-13 Thread Przemek Klosowski
On Fri, Apr 13, 2018 at 9:07 AM, wrote: > > /etc/rc.local directory not available It's a file, not a directory. Just try it: echo touch /tmp/testRClocal > /etc/rc.local and reboot the system. You should see the newly created file /tmp/testRClocal when you login into the running system. > also