• 0 Posts
  • 5 Comments
Joined 1 year ago
cake
Cake day: July 13th, 2023

help-circle

  • amyipdev@lib.lgbttoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    that’s because we’ve understood there’s a line between what is reasonable for most users to implement - cron - and what is more reasonable for the OS to implement - systemd timers.

    you don’t want a user who doesn’t know what they’re doing to accidentally brick a key OS timer (for instance, when they’re setting up their own), so systemd helps to segregate while still allowing experienced users to easily stop timers.

    meanwhile, for users, cron is much easier to work with…



  • Tmux is essentially an extension of the concept of running ideas in the background. Like 0xtero mentioned, you use a sort of “virtual terminal” that is persistent (unlike the jobs system you might be familiar with on your shell).

    Now, some people do just use it to split the screen. The idea is it can have multiple terminals, show them, and manage them - it is thus a “multiplexer”, which is where it gets its name (tmux = terminal multiplexer). If you’re on a terminal-only system, this isn’t that bad of a usage.

    Say you’re compiling a large program, like the Linux kernel, and you want to step away, maybe even close the terminal and come back later. Tmux is great for this. You can start the compile in tmux, “detach” (stop viewing it) from it, and it’ll still run full-speed in the background. When you want to look at it again, or check the status, you just re-attach.