this post was submitted on 27 Mar 2024
787 points (98.5% liked)

linuxmemes

22706 readers
2454 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old
    [–] [email protected] 1 points 10 months ago

    Truly the "Linux Roulette".

    [–] [email protected] 3 points 10 months ago (1 children)

    Hmm I thought you only spin once so there’s eventually a guaranteed shot. The 6 should decrement after each execution.

    [–] [email protected] 2 points 10 months ago

    That's not how randomness works. You would want to randomize once, saving the number of steps remaining until the bullet is the next shot, decrementing the number of steps for each try.

    [–] [email protected] 20 points 10 months ago

    Cowards version:

    [ $[ $RANDOM % 6 ] == 0 ] && echo 'rm -fr /... you crazy dude? NO' || echo 'Keep your french language pack, you will need it'
    

    [–] [email protected] 3 points 10 months ago (1 children)

    Does "rm /" include external drives under /media/$USER/* or /run/media/ ?

    [–] [email protected] 2 points 10 months ago
    [–] [email protected] 7 points 10 months ago (1 children)
    [–] [email protected] 4 points 10 months ago (1 children)

    You're using btrfs on prod?!

    Man, you're crazier than I thought... /s

    [–] [email protected] 1 points 10 months ago

    Oh shit that was too controversial, wasn’t it? s/btrfs/ LVM/g

    [–] [email protected] 19 points 10 months ago
     HISTCONTROL=ignorespace
     unset RANDOM
     RANDOM=4
     clear
    ...
    

    If RANDOM is unset, it loses its special properties, even if it is subsequently reset.

    HISTCONTROL If the list of values includes ignorespace, lines which begin with a space character are not saved in the history list.

    RTFM can save your server AND your bet ;-)

    it is cheating of course if the predefined rules tell us about such requirements and if these are not met any more when unsetting RANDOM ahead of it.

    [–] [email protected] 5 points 10 months ago (2 children)

    Jokes on you, I use zsh, your silly bashisms have no power here.

    [–] [email protected] 4 points 10 months ago (1 children)

    Are you sure it doesn't work on zsh? It's valid POSIX shell code, and like bash, zsh is a superset of POSIX, at least if I remember correctly.

    This is not to goad you into destroying your filesystem. Replace the rm with something relatively harmless like echo "BANG! You're dead!" if you decide to test it.

    [–] [email protected] 1 points 10 months ago* (last edited 10 months ago)

    Key here is the outer [] and interaction of $[], test doesn't have == by default in standard posix, so no this isn't posix shell or bourne compatible. Tis but another bashism. I could probably force zsh into a more bourne mode to try it but its definitely not portable bourne shell its bash.

    $ [ $[ $RANDOM % 6 ] == 0 ] && echo rm || echo ok
    zsh: = not found
    $ zsh --version
    zsh 5.9 (x86_64-pc-linux-gnu)
    

    == should be -eq for this to be posix/bourne portable, you could use = but -eq is for numeric comparisons so not quite right.

    [–] [email protected] 1 points 10 months ago* (last edited 10 months ago) (1 children)

    fish and nu are the superior shells

    [–] [email protected] 1 points 10 months ago (1 children)

    Is fash like that fish shell only more fetch? zsh is obviously the best, its the omega end to shell names with the z (in latin alphabets so there).

    [–] [email protected] 1 points 10 months ago

    yeah i meant fish

    [–] [email protected] 61 points 10 months ago (5 children)

    This really isn't dangerous unless you already screwed up badly. If it wipes, you just restore from backup/DR.

    You do have backups and a DR plan for your prod servers, right?

    [–] [email protected] 4 points 10 months ago

    the backup was connected via /media/backups so that's gone too!

    [–] [email protected] 21 points 10 months ago* (last edited 10 months ago) (1 children)

    Didn't some company have a script running that would randomly kill stuff to always test redundancies?

    I vaguely recall someone telling me that about netflix

    Edit: https://github.com/Netflix/chaosmonkey

    [–] [email protected] 12 points 10 months ago (2 children)

    that's like starting fires on random properties to make sure your firefighters stay on their toes

    [–] [email protected] 1 points 10 months ago

    I vaguely remember reading a news story about a firefighter that did that a while ago.

    [–] [email protected] 10 points 10 months ago

    Ferb, I know what we're gonna do today

    [–] [email protected] 19 points 10 months ago* (last edited 10 months ago)

    Sure do! They're on the prod servers and were one of the first things deleted!

    [–] [email protected] 0 points 10 months ago

    Not sure, do I?

    [–] [email protected] 17 points 10 months ago (1 children)

    What is right clicking on terminal going to do?

    [–] [email protected] 23 points 10 months ago (1 children)

    maybe they have it mapped to enter, you never know with laptop linux users.

    [–] [email protected] 8 points 10 months ago (1 children)

    Right click increase the temp of the touchpad, which the user has macroed as an "Enter"input, letting him press enter with all fingers on home row and just resting the palm on the touch pad

    [–] [email protected] 2 points 10 months ago

    Ultimate ergonomics at the cost of entry speed.

    load more comments
    view more: next β€Ί