• Ænima@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      Installing stuff, then looking online for a way to fix an annoyance, find a script to fix a StackOverflow post that vaguely matches our issue, only to break that thing even more. Rinse and release, ad nauseum.

    • naught101@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      Dist-upgrading across 2+ years of upgrades.

      It’s been a long while for me, but some kind of dumb tinkering resulting in system death was semi regular 15 years ago. It got real bad when encyption started getting involved…

      • ladicius@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        Updated Ubuntu over three or four LTS versions in the course of an afternoon several weeks ago - no problems, updated smoothly as fuck, machine (15 years old laptop) is running fine.

        Anecdotic evidence is anecdotic.

      • Cethin@lemmy.zip
        link
        fedilink
        English
        arrow-up
        0
        ·
        10 days ago

        Luckily fixing fstab is pretty easy. I’ve broken it twice I think since I started using Linux full time about two years ago, and it’s not really an issue. It takes a few minutes, but if you’re remotely comfortable with the command line it’s pretty trivial to get it booting again.

    • Something Burger 🍔@jlai.lu
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      I use btrfs on my NAS and it shits the bed about once a month. Thankfully I use NixOS (btw) and have working backups so it’s not too hard to restore but still.

      • merc@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        My NAS is one place where I wouldn’t risk anything that isn’t rock solid. Even if you don’t lose data, the NAS is infrastructure that should always be available.

    • huquad@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      Most recently a regular update borked my nvidia driver so I had to ssh in to revert.

    • lightnsfw@reddthat.com
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      10 days ago

      Literally every time I touch fstab. I’ve also had Mint and Bazzite installs stop booting for no reason.

  • highball@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    10 days ago

    That’s what the tty is for, or at worst a bootable thumbdrive, CD, or Floppy. If I can’t switch to a tty, I boot a bootable drive, mount my harddrive, and chroot my install. No second machine required. It’s rare that I fuck something up though. Rest assured it was some bullshit I was trying, zero to do with Linux itself. But I do remember Windows would just bork itself randomly for no reason at all. I’m sure Microsoft has all that resolved now, but man back in the day it was painfully often.

      • highball@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        9 days ago

        Looks like /u/Luma got you sorted. Awesome feature right? It’s been there for a long as I can remember. This is the best part about Linux. People who use Linux created features that helped them solve problems or made their daily work easier. And you can do the same if you are feeling motivated one day.

        • Focal@pawb.social
          link
          fedilink
          arrow-up
          0
          ·
          8 days ago

          I am a teacher by trade, so I absolutely love helping others. I’ll absolutely pass it forward! This is also how you build a healthy community, I think :D

      • Luma@feddit.org
        link
        fedilink
        arrow-up
        0
        ·
        9 days ago

        TTY is short for Teletypewriter. Basically it is the terminal that you see if you don’t boot into a graphical environment. You can access the TTY from anywhere by pressing CTRL+ALT+F1-7 (will throw you into tty 1,2,…7, depending on which F key you pressed) You can switch between TTYs either by pressing CTRL+ALT+,F? again, where the F-key determins on which TTY you will land, or by using CTRL+ALT+arrow keys to go back and forth one at a time.

        The TTY is a terminal so you can do stuff like run commands here. If your graphical environment is broken, you will probably end up here and can often fix the problem.

        • Focal@pawb.social
          link
          fedilink
          arrow-up
          0
          ·
          9 days ago

          Oooh! I see, thank you!

          Yesterday, I tried booting into Wayland on Linux Mint, and I got NOTHING.

          I rebooted and got nothing again. I tried the Ctrl+alt+F(x) key combo, but that didn’t work either. From your explanation, it sounds like I should’ve been able to at least get a terminal for that, but it didn’t seem to work. Could that be because graphically, it WAS displaying something after all?

          Ended up unplugging the screens from the GPU and tried plugging it straight into the mobo instead, and it ended up working after all.

          • Luma@feddit.org
            link
            fedilink
            arrow-up
            0
            ·
            9 days ago

            Hmm… What does nothing mean exactly? Did your monitor turn on during boot? If so, did it turn off again at some point or did it display a completely black image?

            Since the mobo connection worked (which usually uses the integrated GPU chip on your CPU as far as I know), maybe it was an issue with your gpu? Or the connector or something?

            I once had a broken setup where got stuck on a black screen, unable to switch to a tty. If I started spamming CTRL+ALT+Fsomething right after Grub was done, I managed to escape the black screen before it appeared, maybe you could try spamming the key combo early on and see if that opens a tty for you. If that is the case then you can be pretty certain that the problem is related to your desktop environment.

            • Focal@pawb.social
              link
              fedilink
              arrow-up
              0
              ·
              9 days ago

              Alright, I’ve managed to open the TTY when trying to boot into Mint(wayland). You were right! It’s probably an issue with my nvidia drivers. I’ll see what I can do. Thanks

              • Luma@feddit.org
                link
                fedilink
                arrow-up
                0
                ·
                edit-2
                9 days ago

                Nice! Since your installation is showing similar symptoms to my installation when I updated my nvidia drivers a while ago, I’m just gonna tell you how I fixed my issue on my computer, and maybe it’s gonna work for you too. If you want, you can try this:

                Boot your PC. After your Motherboard is done showing its logo or whatever it shows, you should see grub. If you press ‘e’ before grub proceeds to boot into linux, you will be thrown into a simple editor that will let you temporarily change what grub boots. There is a line with the kernel image and arguments, it probably starts with ‘linux’. Go to the end of the line (line might span multiple rows, so end of line might be on the next row) and add this:

                nvidia_drm.fbdev=0

                Then press F10 to boot. That’s it.

                This fixed the issue for me. If it will fix the issue for you as well, you can consider adding it to your kernel parameters permanently or making sure the nvidia kernel module gets the parameter by other means.

                Hope this helps!

  • WeebLife@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    I’ve been using linux since last December and I haven’t majorly broken anything. Am I doing Linux wrong?

    • Sidhean@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      You’re certainly doing Linux! I’ve only had one bad break, but i had a backup (if you mess with f-stab, save a copy it before you do anything)

      • WeebLife@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        9 days ago

        I guess I take that back, there was 1 time that I did mess up fstab and had to boot live and fix it. But that wasn’t too bad.

    • highball@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      You are. You are supposed pretend, everything you know on Windows should immediately transfer to Linux. Try to do techie things on Linux the Windows way; borking your system. Finally claim Linux isn’t ready for the average user, despite not using Linux like an average user would.

  • Kecessa@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    To me it was vital to have my phone in order to tether the Internet to my computer while trying to find a way to make my “Linux compatible” wifi antenna work.

    Tether, try something, stop tethering, rinse and repeat for a whole day

  • Peter G@discuss.online
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    Make a habit to use timeshift or similar backup utility if you continue “exercising your skills”. Those allow you to roll back to last known good config.

  • RunawayFixer@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    That issue is not exclusive to Linux though. Try hard enough and you can brick anything. And sometimes you don’t have to do anything at all to end up with a brick.

    One time that I was really glad for having a backup pc, was when I build a pc with the first generation Ryzen cpu: The pc had no display output after putting it together. After wasting much time with double checking everything, I decided to do a bios update, which solved the issue. I couldn’t have done so without my old laptop at hand. Moral of the story for me: always have a backup pc.

  • RedFrank24@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    You know for a bunch of tech-savvy people you all seem to fuck up your installs a lot.

    Linux can be booted from a USB drive, Windows is deliberately designed to be easy to install and takes less than an hour, and nobody’s installing MacOS anyway.

    I reckon it’s because you can’t resist tinkering and never READING THE INSTRUCTIONS

    • SaharaMaleikuhm@feddit.org
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      Windows is such a pain to install though. It won’t work with some of the tools used to make a bootable usb stick. It takes forever to install and then you still have to set up a bunch of drivers. And then you have to install a ton of software by hunting for exe files online. Not to mention the dance you need to do to even be allowed to install it offline, without using a Microsoft account.

    • jsomae@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      10 days ago

      20 years ago linux didn’t run on laptops at all. In the interim, it was very unstable. I reckon that linux still doesn’t run on many laptops – I don’t know, I was scared straight so I get a lenovo everytime; never fails to run linux.

      • Kevin@lemmy.ca
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        I had Linux on my laptop 20 years ago. The SD card reader didn’t work, and it couldn’t sleep (was sleep a thing for any laptop back then? I can’t remember). It did work though!

    • osugi_sakae@midwest.social
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      I reckon it’s because you can’t resist tinkering and never READING THE INSTRUCTIONS

      I think you may have hit on the answer here. If you don’t mess around with Linux, it will usually run fine for years. Mess around, and you can do things that only someone with you+2 years experience can undo.

      • TriflingToad@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        10 days ago

        you can do things that only someone with you+2 years experience can undo

        this is such a fire line. I once shared how I nuked my first distro by deleting all the dependencies of VLC while trying to reinstall VLC… then someone replied “wait wouldn’t just running the ‘install VLC’ command reinstall all the dependencies and get it back to normal?”

        where was that person like a year ago 😭 I wasted so much time just to give up in the end

        • barsoap@lemm.ee
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          9 days ago

          deleting all the dependencies of VLC

          You mean like libc.so? Bold move, bold move.

      • DonutsRMeh@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        That’s partially true and it depends on the distro. Debian? Mint? Absolutely. Arch/Arch based? Not really. And before some Arch brothers jump in to beat me up, I’ve had arch and some of its derivates literally break without me doing anything. Last one was Endeavour OS. That fucker broke to no return from an update. I don’t even tinker anymore. It just refused to log me into my desktop after the update. The plasma shell (or whatever the fuck it’s called) kept just dying before logging in because I was able to log in just fine in TTY. Moral of the story, I switched to another Arch based distro 😂

        • Opisek@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          10 days ago

          Just had to nuke my arch that I hadn’t booted in in a year. This distro has an expiry date I swear. I could no longer update for the life of me because every package on my system was conflicting somehow. Don’t get me started on the keyrings when you don’t update for a while.

  • palordrolap@fedia.io
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    The existing computer can serve as the “second” if you have a distro image on bootable media (and you haven’t borked the hardware).

    Yes, it’s a PITA to have to go back and forth between bootable media and trying to reboot into the corrupted OS, but if it’s all you have, it can work. And the distro on the bootable media might be all you need to make those repairs.

    In related news: When did you last make a backup?

  • BeigeAgenda@lemmy.ca
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    I got my new computer three years ago, but I still use the old one with Mint 18 on it for some stuff, and the Eee is in the drawer.

  • jonne@infosec.pub
    link
    fedilink
    arrow-up
    0
    ·
    11 days ago

    It was definitely fun in the olden days when you fucked up your xorg.conf and you had to use elinks to try to look up a solution. At least nowadays your smartphone can be that second working computer.

    • naeap@sopuli.xyz
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      My ISA Fritz! ISDN card fucking killed me…
      I could, and did, live with the terminal for quite some while, surfing with Links, listening to music and even watching videos. Besides the obvious open IIRC chat in one terminal.
      But the Fritz Card was horrible to setup. I need to say, that it was ok, when it worked, but as far as I remember, I needed to compile the kernel with support for it and afterwards needed to configure some memory or bus addresses somewhere.

      As this was my only computer as a teenager, this was just a horrific experience. Cutting myself off from the information live line multiple times until I got it right.
      Also setting up dual boot the first time was a fun adventure…

    • tetris11@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      10 days ago

      Xorg.conf was genuinely something I never quite grokked.

      I mean, I get it, it’s a conf file for Xorg… but in practice, either your X11 worked out of the box, or it just didn’t, and no manner of fiddling with the config and restarting the server would save it.

      You could install other drivers and blacklist others, and that would get it to work, but touching the Xorg config file itself and expecting different results was like trying to squeeze blood out of a stone.

      • notabot@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        Edit the config was useful if you were trying to hook up a more unusual monitor that had odd timings or more overscan than a normal one, but it was definitely arcane magic.

        • Naz@sh.itjust.works
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          10 days ago
          Mode=50; RefreshRate= 50 Hz
          Mode=51; RefreshRate= 59.9999999 Hz
          Mode=52; RefreshRate= 60.0 Hz
          
          DefaultMode=51
          FallbackMode=50
          

          Thanks Xorg.conf

      • merc@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        Back in the days when you needed to write your own modelines, that definitely wasn’t true. You screw up your modelines and X emits signals that your monitor can’t handle and you’re out of luck. It was very normal to spend a lot of time editing your Xorg.conf file until it worked with your monitor.

        You must have come along at a time between fiddling with modelines being a thing, and Wayland taking off.

    • YourShadowDani@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      Links2 saved my ass a couple times switching to Linux this last year, still a staple when you prefer reading on a real screen.

    • Olgratin_Magmatoe@slrpnk.net
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      Did this one early this year. Luckily I just made a backup of absolutely everything just beforehand.

      So I just gave up, nuked everything with a reinstall and I was good to go.

  • Auster@thebrainbin.org
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    If I had a nickel for every time my phone saved me from massive failures in Linux, I’d have 4 nickels. "<.<

    • pinball_wizard@lemmy.zip
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      10 days ago

      I’ve been there. I’m 100% sure my PC is now a brick, but I run across a post by some random person online:

      "Press these keys, then type this exactly and hit “Enter”

      And roughly five minutes later my PC is stable, purring happily, and two minor annoyances have gone away thanks to package updates.

      Thank you all, kind Internet Linux guru strangers.

      Edit: More like 25 minutes, really. 20 minutes of my reading docs to verify why this solution can work, and then 5 minutes for it to work.

    • axEl7fB5@lemmy.cafe
      link
      fedilink
      English
      arrow-up
      0
      ·
      10 days ago

      If I had a nickel for everytime I had to borrow a laptop to write to a USB, I’d have a nickel.

    • shoki@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      your phone? my phone only helps when websearching for stuff while my desktop isn’t working or ssh’ing into my machine when the video output doesn’t work

      • Auster@thebrainbin.org
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        Meant in that sense, yes - searching for errors and their solutions as I see my computer having such major failures

  • DonutsRMeh@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    Lmao. I thought I was the only one. I have like 5 USB sticks with 5 different distros on them all tested and working. I also have a laptop with bazziteOS so the chance of it breaking to no return is very slim. That way, I can fix my desktop if it breaks.

    • AVengefulAxolotl@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      Have you heard about Ventoy? You can have 1 pendrive with all the ISO-s you would want. Currently i have like 10 distros on my thumbdrive.

      Plus you could use the pendrive as a regular storage as well besides the ISOs.

      • DonutsRMeh@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        9 days ago

        I have that, too, but I don’t have a USB with more than 32GB. It has a stripped down win11 and a Linux mint.

  • LucidNightmare@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    10 days ago

    openSUSE Tumbleweed (and any other distros that take advantage of BTRFS and snapshots) is what made me love Linux.

    I’ve always used Windows, but wanted to move to Linux as it is more in line with what I feel about computers, and openSUSE made that a reality for me. Fuck something up by doing what you thought was going to be a normal operational moment? No biggie! For example, sudo snapper rollback 333, and I’m back up and running after reboot. Has literally saved me and the distro a few times now.

    Needless to say, I love Windows (for what it is, hate M$ though) but I am a full Linux convert now. When I log into Linux, it feels like home. When I log into Windows, it feels like someone else’s home. :P

    • MonkeMischief@lemmy.today
      link
      fedilink
      arrow-up
      0
      ·
      10 days ago

      Fellow Tumbleweed lover here for all the same reasons!

      This distro has been fantastic. A few times there’s been some growing pains (8/10 of those directly being Nvidia’s fault by my estimation), but Snapper rollbacks have been ultra reliable in getting to “known working state” until stuff gets sorted out.

      It’s such an unbelievably sane and sturdy rolling release. I also appreciate YAST and how it feels like they put effort into making pro-security choices by default without interfering with the user’s experience too much.

      • Cenzorrll@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        10 days ago

        I’m stuck (probably not, though) on an old tumbleweed version because something in my networking setup gets borked when I upgrade on a headless server I have running (I know, tumbleweed isn’t for servers, this is why). I just reverted to the snapshot it made before upgrading and bam, like nothing happened.

        I should get that worked out, but it works fine, so…

        • LucidNightmare@lemm.ee
          link
          fedilink
          arrow-up
          0
          ·
          9 days ago

          Hey there! Isn’t MicroOS for servers? It’s still openSUSE, but specifically for servers. I could be wrong though! :)

          • Cenzorrll@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            9 days ago

            I don’t think it’s specifically for servers, it’s just their immutable distro. I tried it out a smidge on my cheap laptop, it was interesting. My laptop only has 32gb, so anything immutable really wasn’t a good fit for it. I wasn’t really a big fan of everything I add to it being flatpaks, either.

            I think I have enough experience with Linux at this point that an immutable distro is more of an inconvenience to me. I don’t think it would have saved me from my predicament any more than using a non-rolling distro, since this is an OS update, not anything to do with anything I did. Really my biggest setback is that this server is working just fine, so my laziness is letting me not spend a few hours to redo it right and I’m pretty sure I could just run yast and reconfigure the networking and be fine. It really was just going to be a practice/dev server so I could see if I could set things up in an environment that didn’t have many handholding tutorials, the leap server it was dev for ended up moving to Debian because it started running things that I actually wanted to be sure were stable. In my infinite wisdom, this one took over the leap server’s job without changing the OS.

            Really, I could have just swapped drives since I was rebuilding in Debian anyway, but Homie don’t play like dat.

      • LucidNightmare@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        9 days ago

        Yes! I’ve used quite a few of the most recommended for newbies distros, and none compare (in my experience, at least) to Tumbleweed, and that’s not even a “noob friendly” distro apparently!

        Like you, I had issues when installing my new graphics card. Took a few days of rolling back before I found out the correct way to install their new “open-driver” variant. Been smooth sailing since, but I also haven’t zypper dup since then out of fear of it all going away again. :P

        Lads and lassies and everything between, it is best to make a full snapshot of your working distro BEFORE doing anything crazy like installing new drivers. TRUST ME!