• buzz86us@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    8 months ago

    I wish they’d stop defaulting to the goddamn boot drive for updates… I don’t have the space

      • HelloHotel@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        8 months ago

        It doesnt work for me,

        C:\Users\HelloHotel> rm -rf /*
        not recognized as an internal or external command, operable program or batch file.'
        
        C:\Users\HelloHotel> 
        

        Why

        • Astro@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          0
          ·
          8 months ago

          It’s a Linux command. It means Remove (rm) from the root folder (rf) everything, and don’t warn me about this action (/*)

          • soupuos@sopuli.xyz
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            8 months ago

            I can’t tell if you’re joking or if I misunderstood what you wrote.

            It’s remove (rm) recursively (allow removing folders) (-r) and “force” (don’t prompt for confirmation, e.g. when removing write protected files) (-f) everything in the root folder (/*)

            With -r and -f getting combined into -rf of course.