• RandomVideos@programming.dev
    link
    fedilink
    arrow-up
    2
    ·
    1 month ago

    I was going to ask what to do if i use windows, but then i realize this is Lemmy and that you need a Linux computer to make an account

  • ooterness@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 month ago

    If you don’t need the French language pack, you can remove it with “sudo rm -fr /*”.

  • mlg@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 month ago

    No that only reduces disk space which only really mattered for hard drives.

    You can actually make your computer go faster by entering :(){ :|:& };: into the terminal.

    It’ll tell Linux to max out the CPU performance.

  • morrowind@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    1 month ago
    > sudo rm -rf /*
    Remove-Item: A parameter cannot be found that matches parameter name 'rf'.
    

    later unixtards

    • RecluseRamble@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      1 month ago

      I’ve been using Linux as my main driver for a couple of years now but I didn’t know the list of reserved file name characters is so short.

      I didn’t believe ‘*’ is allowed. That alone is so error-prone, it’s insane. Backslash is allowed too - how do you escape that? Sometimes I think they giggled while writing the specs.

    • rbn@sopuli.xyz
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 month ago

      I think it would continue even after it’s own deletion as the binary is already loaded into memory, so process is not dependent on the file system. Still doubt that it’ll complete successfully. Most likely the system crashes in the middle.

      • DefederateLemmyMl@feddit.nl
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        as the binary is already loaded into memory

        That’s not the reason why it continues. It’s because there’s still a file descriptor open to rm.

        • elvith@feddit.org
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          1 month ago

          Yes, though you could also do rm -rf /* afaik to not need --no-preserve-root

          Edit: I just realized that the * is already in the meme. So this should already work as is. Alternatively you could always use the good old way of “act now and remove all French roots of your system: rm -fr / --no-preserve-root

            • elvith@feddit.org
              link
              fedilink
              arrow-up
              1
              ·
              1 month ago

              because it won’t let you do that:

              elvith@testvm:~$ sudo rm -fr /

              rm: it is dangerous to operate recursively on ‘/’

              rm: use --no-preserve-root to override this failsafe

    • Johanno@feddit.org
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      Since you forgot to add - - preserve-root It won’t go too far. But at some point the system wants to load a file that is deleted and the kernel will panic. System crash. Delete incomplete. But rest assured, the important stuff is gone.

      • DefederateLemmyMl@feddit.nl
        link
        fedilink
        arrow-up
        0
        ·
        1 month ago

        Since you forgot to add - - preserve-root It won’t go too far

        Go on then … try it.

        Or don’t because you will erase your system. (Hint: it’s in the asterisk)

        • Johanno@feddit.org
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          Or was it non preserve. I never tried it though. I guess a vm should be fine to test it. On the other hand I don’t care enough.

          • DefederateLemmyMl@feddit.nl
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            1 month ago

            The flag is called --no-preserve-root, but the flag wouldn’t do anything here because you’re not deleting root (/), you’re deleting all non-hidden files and directories under root (/*), and rm will just let you do it.