Tinkering is all fun and games, until it’s 4 am, your vision is blurry, and thinking straight becomes a non-option, or perhaps you just get overly confident, type something and press enter before considering the consequences of the command you’re about to execute… And then all you have is a kernel panic and one thought bouncing in your head: “damn, what did I expect to happen?”.

Off the top of my head I remember 2 of those. Both happened a while ago, so I don’t remember all the details, unfortunately.

For the warmup, removing PAM. I was trying to convert my artix install to a regular arch without reinstalling everything. Should be kinda simple: change repos, install systemd, uninstall dinit and it’s units, profit. Yet after doing just that I was left with some PAM errors… So, I Rdd-ed libpam instead of just using --overwrite. Needless to say, I had to search for live usb yet again.

And the one at least I find quite funny. After about a year of using arch I was considering myself a confident enough user, and it so happened that I wanted to install smth that was packaged for debian. A reasonable person would, perhaps, write a pkgbuild that would unpack the .deb and install it’s contents properly along with all the necessary dependencies. But not me, I installed dpkg. The package refused to either work or install complaining that the version of glibc was incorrect… So, I installed glibc from Debian’s repos. After a few seconds my poor PC probably spent staring in disbelief at the sheer stupidity of the meatbag behind the keyboard, I was met with a reboot, a kernel panic, and a need to find another PC to flash an archiso to a flash drive ('cause ofc I didn’t have one at the time).

Anyways, what are your stories?

152 points

source ~/.bash_history

permalink
report
reply
51 points

Dear god

permalink
report
parent
reply
40 points

That’s the scariest horror story in 2 words I’ve seen so far

permalink
report
parent
reply
14 points

I’m genuinely having a chuckle at how shocked people are at my submission, made my day xD

permalink
report
parent
reply
12 points

I mean, it’s simple, elegant, and destructive AF given the right circumstances. Basically a chaos grenade we didn’t realize existed

permalink
report
parent
reply
13 points

Can a linux noob get an explanation of this?

permalink
report
parent
reply
33 points

source is a bash shell built-in command that executes the content of the file passed as argument, in the current shell.

~/.bash_history contains all the commands you ever executed in bash (the default shell in most Linux systems)

permalink
report
parent
reply
19 points

To add on to this explanation, you generally use source ~/.bashrc to reload your shell whenever you want to make changes to your user config. Tab completion weakens the barrier to destruction significantly (esp. in my case)

permalink
report
parent
reply
6 points

Thanks for the explanation

permalink
report
parent
reply
9 points

New fear unlocked

permalink
report
parent
reply
7 points
*

Reminded me of this: https://github.com/jtroo/kanata/issues/595

Same concept, different granularity!

permalink
report
parent
reply
7 points

i never thought i had a nuke that i can launch using one command

permalink
report
parent
reply
3 points

Oh no. That fits the bill perfectly lol.

permalink
report
parent
reply
3 points

“Oh My…” thought in a George Takei voice

permalink
report
parent
reply
2 points

Jesus Christ. It would be a good idea to format that file to have an exit as first line to avoid this

permalink
report
parent
reply
90 points

Perhaps not the same definition of “broken” that you’re looking for, but when I first started using Linux, I was using Kubuntu as my first distro have some brief experimenting with Manjaro.

Anyway, back then, I for some reason had the Skype snap installed. Can’t recall why I had it to begin with, but I decided later on that ofc I didn’t need Skype, and of course uninstalled the snap.

A few days later, I was met with some storage issues, where I had a limited amount of storage left on my SSD. I’m sitting there a little confused since I swore I was using less storage, but I did a thorough cleaning of my computer by deleting files I didn’t necessarily need, and uninstalling any programs that I hardly ever used. That seemed to do the job, even if it was less storage space…

Until the next day, when the storage was full again. After getting some help from someone, I found that Skype, despite being uninstalled, was still running in the background, and found that there were residual files. The residual stuff running in the background was trying to communicate with what I had uninstalled, and logged multiple errors per second in a plaintext file that ended up being 176GB.

Whether I did something wrong or if there was something up with the snap, I still don’t know as this was over a year ago and I was still learning the ropes of Linux at the time.

permalink
report
reply
41 points

Least broken snap

permalink
report
parent
reply
13 points

I agree in blaming Snap for that 😂 good ol apt would have done a better job, I guess.

permalink
report
parent
reply
3 points

I had this problem before as well. Something was spamming log messages and filled up the boot drive. No snap needed.

permalink
report
parent
reply
7 points

I would blame Skype itself for being a corporate-owned closed-source flaming pit of doom in this case, not your actions or the snap.

permalink
report
parent
reply
64 points
*

Many many years ago I wanted to clean up my freshly installed Slackware system by removing old files.

find / -mtime +30 -exec rm -f {};

Bad idea.

permalink
report
reply
53 points

Not me, but one I saw… dude used chmod to lock down permissions across the board… including root… including the chmod command.

“What do I do?”

🤔

“Re-install?”

permalink
report
reply
30 points

You could boot on an USB, mount the filesystem and change the permissions. But if the dude changed a whole lot of permissions, reinstalling might be the smart thing to do…

permalink
report
parent
reply
10 points

Yeah, a very unfortunate one: probably, the most painful to recover from. I’d just reinstall, honesty 😅 At least with mine I could simply add the necessary stuff from chroot or pacstrap and not spend a metric ton of time tracking all the files with incorrect permissions

permalink
report
parent
reply
5 points

There’s got to be other tools though that could change the file permissions on chmod, right? Though I suppose you’d need permission to use them and/or download them.

permalink
report
parent
reply
8 points

You can dump the permissions from the working system and restore them. Quite useful when working with archives that don’t support those attributes or when you run random stuff from the web 😁

permalink
report
parent
reply
5 points
*

Many distros offer a automated file/directory ownership restore feature on their liveOS

permalink
report
parent
reply
4 points

I managed to do that back when I was new. Luckily it was a fresh install, so I didn’t lose much when I had to reinstall.

So far, that has been the only time I really screwed something up outside of a virtual machine.

permalink
report
parent
reply
4 points

oh… uh…

permalink
report
parent
reply
3 points

@jordanlund @fl42v I *think* this one could be recoverable if they had a terminal still active by using the dynamic loader to call chmod — or by booting from a liveCD and chmodding from there.

That’d likely get you to a ‘working’ state quickly, but it’d take forever to get back to a ‘sane’ state with correct permissions on everything.

permalink
report
parent
reply
2 points
*

Exactly. There’s no way to even know what the previous permissions were for everything.

They were TRYING to recursively change permissions in a single directory, accidentally hit the whole system. :(

permalink
report
parent
reply
46 points

Tried to convert Ubuntu to Debian by replacing the repos in sources.list and apt dist-upgrading. 💣 Teenagers…

permalink
report
reply
13 points

I thought about trying something like this the other day and quickly reconsidered

permalink
report
parent
reply
5 points

I’m as nerdy as they come, but… I don’t think you did teenage rebellion right.

permalink
report
parent
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 9.8K

    Monthly active users

  • 5.8K

    Posts

  • 162K

    Comments