Live data from Hacker News

Ask HN: Good alternatives to screen/tmux to persist long term jobs?

news.ycombinator.com

1–8 of 8 posts

Re: Ask HN: Good alternatives to screen/tmux to persist long term jobs?

#4
post #3

If it's a one off isn't this exactly what nohup is designed for?

This isn't a one-off; I want a simple solution that requires as little setup as possible. I also want infinite buffer space to store the stdout and stderr of processes, which neither screen nor tmux provide (both require you to preallocate buffer space).

Re: Ask HN: Good alternatives to screen/tmux to persist long term jobs?

#5
post #3

If it's a one off isn't this exactly what nohup is designed for?

This isn't a one-off; I want a simple solution that requires as little setup as possible. I also want infinite buffer space to store the stdout and stderr of processes, which neither screen nor tmux provide (both require you to preallocate buffer space).

Oh.

Well if it's a daemon type tool, write an init file - either a shell script for sysvinit or a service file for systemd.