Off Bone101 on BeagleBone Black

I have a BeagleBone with black Debian startup. Using "htop" I see a number of processes consuming a decent amount of memory. "/usr/bin/ruby1.9.1 /usr/local/bin/jekyll buld --destination bone101 --watch"

I don't need the bone101 service for my application and would like to disable it. " systemctl disable bone101.service

" returns an error " no such file or directory

". I can kill the process manually in htop, but would like it not to start on startup. Any suggestions?

+3


source to share


1 answer


you can turn it off with:

systemctl disable jekyll-autorun.service

      



stop the bone script using:

systemctl disable bonescript-autorun.service

      

+4


source







All Articles