oriond@lemmy.ml to Asklemmy@lemmy.ml · 10 months agoWhat is the most destroying command you can type in the Linux terminal?message-squaremessage-square27fedilinkarrow-up13arrow-down10
arrow-up13arrow-down1message-squareWhat is the most destroying command you can type in the Linux terminal?oriond@lemmy.ml to Asklemmy@lemmy.ml · 10 months agomessage-square27fedilink
minus-squareLKC@sh.itjust.workslinkfedilinkarrow-up1·10 months agoIf you allow root privileges, there is: sudo rm -rf --no-preserve-root / If you want to be malicious: sudo dd if=/dev/urandom of=/dev/sdX or sudo find / -exec shred -u {} \;
minus-squareKecessa@sh.itjust.workslinkfedilinkarrow-up1arrow-down1·10 months agoYes, you enter that in the terminal 🙃
minus-squareShadow@lemmy.calinkfedilinkarrow-up0·10 months agoLet’s extend a little and really do some damage for x in /dev/(sd|nvme)*; do dd if=/dev/urandom of=$x bs=1024 & ; done
minus-squarerattking@lemmy.mllinkfedilinkarrow-up1·10 months agoI think we can do that faster! dd if=/dev/urandom bs=1m | tee /dev/(sd|nvme)*
If you allow root privileges, there is:
sudo rm -rf --no-preserve-root /
If you want to be malicious:
sudo dd if=/dev/urandom of=/dev/sdX
or
sudo find / -exec shred -u {} \;
JFC. That’s terminal.
Yes, you enter that in the terminal
🙃
Let’s extend a little and really do some damage
I think we can do that faster!
dd if=/dev/urandom bs=1m | tee /dev/(sd|nvme)*
Nice idea!