Languages

Menu
Sites
Language
running process as a deamon (sth like nohup)

I can connect to Tizen (Kiran version) device as a root.

I need to run my bash script that will still be running even if I disconnect from my sdb shell session.

How to do this since AFAIK there are no such tools like nohup or screen on Tizen?

Edited by: Tomasz Toczyski on 23 Apr, 2015

Responses

4 Replies
John Ixion

Hi Tomasz,

which device do have ?

Tomasz Toczyski

I have Samsung Z1.

daniel kim

Hi,

According to this link, there is a way to run nohup from busybox.

    http://unix.stackexchange.com/questions/169703/how-to-keep-running-a-process-in-android-when-disconnecting-adb-terminal-comman

 I could find busybox for Gear as below.

  http://www.tizenexperts.com/2014/06/developers-install-busy-box-on-your-root-tizen-samsung-gear-smartwatch/ 

So I think below folder has the busybox of mobile. 

  http://download.tizen.org/snapshots/2.3-mobile/common/latest/repos/target/packages/armv7l/

Regards,

 

Tomasz Toczyski

Hi Daniel,

I have installed busybox as you suggested.

But nohup seems not to be available in this busybox instance. When I execute

busybox nohup

I got

nohup: applet not found

PS. I have applied another approach to my problem so nohup is not necessary for me at the moment. Thanks.