164
dfox
7y

I use a lot of dev tools, but one of my favorites is the Linux screen utility. It's awesome to be able to keep shit running on servers whether my laptop stays connected tot he server or not. It's great for jobs that take a long time, can't get interrupted, etc.

If you haven't used screen definitely give it a try!

Comments
  • 5
    Well written sensei.
  • 28
    Tmux here ;)
  • 5
    You forgotten wk56 tag.
  • 5
    Whoops, thanks I added the tag.

    @dzil123 that looks pretty cool, I have to check it out some more.
  • 4
    Also used screen alot before I found tmux. Now I only use tmux :)
  • 2
    I use nohup...bc that's what I was taught to use many years ago by someone
  • 1
    @dzil123 so good if you use tor. Sounds like something a hacker would use 😁
  • 0
    @dzil123 tor keeps changing ips which I guess would be good for a hacker but with this, they wouldn't need to reconnect every time?
  • 1
    PREINSTALLED ON MACOS SUCKAS
  • 2
    If you need to keep some interactive command running on a server, screen/tmux is a good option.

    A better solution in many cases is often to create a systemd/launchd/upstart/openrc/etc service yourself, so you can start it on boot, and monitor more easily whether the process is still running.
  • 1
    I'm for tmux☝️
  • 0
    Doesn't sound a rant to
    me..
  • 3
    Poor man's daemon:
    Ctrl-Z
    bg
    disown

    :)
  • 1
    @dfox if you are working with screen you should definitily take a look at the tool named screenie. This removes the pain that comes by using long screen-names
Add Comment