Yes yes, I REALLY want to terminate that process and I am very sure about it too, ty.

  • Xylight@lemdro.id
    link
    fedilink
    English
    arrow-up
    0
    ·
    6 days ago

    both OS ask a process to end nicely? Then force closing in windows is with task manager or kill -9 in linux

  • Laura@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    6 days ago

    btw funny story since many comments mention NFS/CIFS:

    I have a share mounted at /smb and the server sometimes just dies so when I want to unmount it I run umount /smb but my shell (zsh) hangs after typing umount /sm and the b doesn’t even show

    I guess zsh does a kind of stat() on everything you type but bash came to save the day

    • rtxn@lemmy.worldM
      link
      fedilink
      English
      arrow-up
      0
      ·
      6 days ago

      I don’t know if clean ZSH does it, but if you have the zsh-syntax-highlighting plugin, it tests if the path you’re typing exists every time you edit the line.

  • mlg@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    6 days ago

    Actually no, it’s just that the programs on Linux usually accept SIGINT, SIGTERM, etc pretty gracefully. Some are even smart enough to handle it on a thread hang. SIGKILL is last resort.

    Lots of Windows applications like to ignore the close request because Windows doesn’t have signals and instead you can only pass a window name to request exit which is the same as clicking the close button.

    So any hung software won’t respond and you have to terminate it.

  • LesserAbe@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    6 days ago

    Is there some Linux equivalent to “ctrl + alt + del?” I get that killing a process from the terminal is preferred, but one of the few things I like about windows is if the GUI freezes up, I can pretty much always kill the process by pressing ctrl+alt+del and finding it in task manager. Using Linux if I don’t already have the terminal open there are plenty of times I’m just force restarting the computer because I don’t know what else to do.

    • phlegmy@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      ·
      6 days ago

      Ctrl+alt+F1/F2/F3 etc.
      It lets you switch to another terminal session, where you can use something like top/htop for a commandline equivalent to task manager.

      • RecluseRamble@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        0
        ·
        6 days ago

        That’s what I don’t get about what they said above. If the Windows desktop freezes up, Task Manager won’t open either (happened to me quite some times over the years - less so since they moved to the NT kernel though). What you mentioned always works short of kernel panic.

        • LesserAbe@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          6 days ago

          I’d say it’s been over a decade since I’ve had an issue where windows task manager didn’t work. Maybe I’m not using exciting enough programs.

      • fleabomber@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        6 days ago

        I’ve heard those quick keys a thousand times but my brain has determined that it is not necessary information for me to retain.

  • katy ✨@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    0
    ·
    6 days ago

    you forgot that you have to spend about 2 minutes with windows “searching for a solution” (who knows what that does??) and then another minute reporting it to microsoft

  • ArbitraryValue@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    6 days ago

    My problem with Windows is that when I want to eject a USB drive, Windows refuses to do so, refuses to tell me what program is apparently still using the drive, and certainly refuses to kill that program. I am removing the drive. I can’t just not remove it!

    • zea@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      6 days ago

      KDE can murder windows instantly (you have to set a shortcut), or you can also just send SIGKILL to the process

      • Fushuan [he/him]@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        6 days ago

        Open the process list in your system monitor of choice, right click, signal, sigkill.

        You can also open a monitor and use top or any variant to detect the process number and manually kill -KILL number

        • Zozano@lemy.lol
          link
          fedilink
          English
          arrow-up
          0
          ·
          6 days ago

          I really want the convenience of binding xkill to a key, which I can use to double tap programs like the undead zombie they’ve become.

          • Fushuan [he/him]@lemm.ee
            link
            fedilink
            English
            arrow-up
            0
            ·
            6 days ago

            Dunno, create a script that uses a program to get the process number of the current active window or the window the mouse is hovering, and then kill that? Bind that script inor a key with whatever program and voilá.

            It’s more involved sure but there’s your option.

              • Hawk@lemmynsfw.com
                link
                fedilink
                arrow-up
                0
                ·
                6 days ago

                What’s your desktop environment? I’m pretty sure hyperland and sway will give a json output of open Windows.

                You could parse that with jq and pipe it into fzf or dmenu?

                Not quite the same as the clicking but probably just as quick.

        • Zozano@lemy.lol
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          6 days ago

          I don’t know if you heard, but the Nvidia issues are solved (mostly).

          The issue most people had was with Explicit Sync, which was patched in the proprietary Nvidia driver 555 which is upstream on most distros.

  • henfredemars@infosec.pub
    link
    fedilink
    English
    arrow-up
    0
    ·
    6 days ago

    It even kills threads currently executing a system call! The brutality!

    Never even returned to userspace…