So i really wanted to ditch windows once and for all so i’ve tried Linux for a week trying different distros (debian, manjaro, ubuntu, opensuse, mint) and first of all why? Why are there so many distros out there? What’s the difference between debian + kde and manjaro + kde? They look the same, they work the same. I don’t get it. Also why do things have to be complicated? I’ve installed debian, installed calibre to manage my ebooks, created a library from an existing library on my hard drive (not the one with debian installed), ERROR! All the files are read-only. What??? I’ve followed multiple guides on how to change permissions and finally solved the problem. Now let’s restart my pc. files on the hard drive are read only WHAT??? Fuck debian, let’s go on manjaro. No problems at all on calibre. Managed to create the library as easy as i did on windows. My question is: where’s the fun in this? It’s just problems, after problems, after problems and i didn’t even start gaming. I mean i tried installing retroarch and importing my saves but of course nothing works. Read this guide, read that guide. Nope. Nothing works. Ok, fuck retroarch let’s customize the appearance of my desktop: move some icons on the panel, center this, adjust height, move this on the left, spent 30 minutes tweaking, very nice… kde crashes, all back to default. Let’s download some apps. I want as many apps that i already know as possible. Let’s see if jdownloader is available for linux. Yep there’s one. Nope, not for manjaro (officially). There’s a AUR package available. Nice. What do i need to do to install a AUR package? A wall of text on the wiki, 20 minutes videos, yay. Ok let’s call it a day. Do i need to live another life to make linux work?

  • Linux isn’t for you. Trust me, as someone who doesn’t really like using Linux all that much.

    If you stick with it, pick one. Stick with it. Use its documentation, not online forums.

    You can’t use online forums because CLI on how to do things varies from distro to distro. So a command for Ubuntu is useless somewhere else, most of the time.

    That results in following guides and having it stop working part way through. You will never get anywhere like this. When you eventually do get somewhere, you’re going to take some time away, or you’re going to break something on accident. Then you’ll have to set it all up again and likely will have lost some data if you weren’t careful.

    I built a server PC for Plex and a few other programs, after a number of years running various temporary projects, like Raspberry Pi servers I felt semi-confident. It was going for about 7 months and now it is stuck in a grub menu and if I am able to get into the desktop everything is fucked up anyway.

    Tl;Dr, you are having issues because you went with the most complicated distros. Run some normal ones like Mint in Virtual Machines, get a feel for the process to install a program – 1) manually, 2) from the “Linux store” (package manager) 3) from GitHub.

    Anything else is just asking for a frustration headache

  • First of all, welcome.

    Don’t try to install many different distros in a short span unless you are a distro-hopper. Just pick one and do everything on that. Manjaro would cause problems especially if you enable AUR. If you want cutting-edge and still want to use GUI for management, I suggest OpenSUSE Tumbleweed.

    For hard disk read-only situation, that happens with NTFS partitions for safety reasons. You can change that with Gnome Disks by setting auto mount and user options. Know that NTFS is a Windows file system and runs on a compatibility system on Linux.

    It’s better to start with beginner friendly distros. Some people even settle with one distro and use it without changing ever. Unless you want to discover under-the-hood features, most distros will look the same.

    Also, things work differently on Linux. Once you get used to them, you’ll find them more straightforward comparing to Windows. However, getting used to them might be a challenge for some people. Get ready to read Wikis.

    Don’t be hasty. Continue to use Windows until you feel ready while creating your ideal workspace.

    Go for functionality before starting customization anything, you can do that anytime.

  • Why are there so many distros out there? What’s the difference between debian + kde and manjaro + kde? They look the same, they work the same. I don’t get it.

    They visually look similar because both are running KDE with pretty much all the defaults, as it happens both Debian and KDE don’t diverge too much from the recommended defaults as long as they work well. But under the hood, Debian and Manjaro work completely differently: one uses apt, the other uses pacman. The way those packages are maintained, compiled and distributed is vastly different, with different kinds of QA testing.

    Ubuntu is a derivative of Debian, so it doesn’t look that much different but Canonical does tend to provide newer packages than Debian does. But Ubuntu also has a lot of flaws so spinoffs like Mint and Pop_OS! take on Ubuntu as a base and “fix” it to their liking and hopefully the user’s too, which, given how popular Mint is I’d say they’re pretty successful in that goal.

    Also why do things have to be complicated?

    It doesn’t, but the amount of options and choices in how to do basically anything on Linux can certainly look very overwhelming. You can click on it in your file manager, you can add it to /etc/fstab, you can use a systemd mount unit. They’re different ways of automating and configuring what ends up being mostly the same: mounting a filesystem and setting permissions on it, and they come with different defaults.

    You’re running into the particular area of trying to mount an NTFS Windows partition on Linux, which is nothing like what Linux expects to it fakes a few things to make it work, and that makes everything owned by the same user by default. If you do it from your file manager, it’ll get a temporary mountpoint in like /run/user/1000/media/YOUR DRIVE but is mostly intended for when you plug in a USB or something. You probably found /etc/fstab but then that made all the files owned by root, and you can temporarily change that with chmod and chown but once you reboot and it gets mounted again, it’ll revert back because it doesn’t actually store those fake permissions as to not break Windows.

    It’s just problems, after problems, after problems and i didn’t even start gaming.

    Yeah, some people end up particularly unlucky in that department. Eventually, over time, it feels as easy or easier than on Windows. It’s just, you have years of experience on how to make Windows do the thing, and Linux is completely new to you. I had a very similar experience a couple years ago when I was forced to learned macOS because the job would only issue MacBooks. Everything felt way overcomplicated and eventually you start thinking the Apple way and it goes more smoothly, you understand better how it works. I mean, how alien is it to just open disk images and copy .app files to /Applications and that’s how you “install” things?? And you get used to it and now I wield the macOS terminal like I do on Linux.

    What do i need to do to install a AUR package? A wall of text on the wiki, 20 minutes videos, yay. Ok let’s call it a day.

    So, this is why people don’t like recommending Manjaro. It’s ArchLinux with a coat of paint, but still relies on Arch’s infrastructure for the AUR. ArchLinux is well into advanced Linux: it’s a box of legos you have to assemble in the shape of a Linux distro yourself. So yes they do expect you to do a fair bit of reading, but Manjaro doesn’t, and it’s a real problem that has caused a fair bit of drama at its time. The AUR is great, but to make another analogy, the AUR is more like a recipe book: you don’t download premade meals, you have to bake them yourself (compiling source code into binary) to have your meal (the generated package file). Sending beginners that route is a recipe for a bad experience.

    Ironically, yay is the name of one of the tools that helps install AUR packages.

    Do i need to live another life to make linux work?

    No, but it does take some initial commitment to get to the nicer part of the learning curve. The first install is always pretty rough, you will destroy it, that’s fine, you have to learn first.

    Ok let’s call it a day.

    Honestly by the post you should have done that earlier. As with anything, when you’re frustrated with it you stop learning, you start making it much harder than it needs to be.

    It’s fine to take a step back and reboot into Windows and try again the next day. It doesn’t have to be all or nothing, plenty of people have started by using Linux for just one task that’s easier to do on Linux, and eventually you start thinking of migrating more workloads to Linux over time. You’re restarting your computer learning journey from pretty close to the start, give yourself a break, computers aren’t worth getting pissed off at.

    •  frengo   ( @frengo@lemm.ee ) OP
      link
      fedilink
      Italiano
      31 day ago

      So, this is why people don’t like recommending Manjaro. It’s ArchLinux with a coat of paint, but still relies on Arch’s infrastructure for the AUR.

      I have another question about this. I’ve tried Arch but realized was too much so i’ve chosen Manjaro because i thought i could learn about linux faster than using another beginner friendly distro. Let’s say for example i decide to hop on Mint. Would that be that easy that i don’t learn anything important?

      •  Max-P   ( @Max_P@lemmy.max-p.me ) 
        link
        fedilink
        6
        edit-2
        23 hours ago

        I’ve been on Ubuntu from 7.04 to 11.04, and only then went to Arch out of desire for more control.

        Some people like to dive headfirst, and it’s doable and those people are successful with Linux, sometimes. But you also have to factor in the morale factor in there, are you trying to learn the deep ends of how Linux works or are you just trying to migrate from Windows?

        It’s totally fine to use the noob distros for the sake of, you know, getting used to using Linux things in general instead of trying to take it all in at once. Things are so vastly different than on Windows, there’s so much to learn, focus on learning how to use it the easy GUI way before you worry about what’s under the hood.

        There’s nothing about Ubuntu or Mint that really stops you from popping the hood open and having a peek every now and then either. You can change whatever you want in /etc the same on Mint as you could on Arch, the default configs that will be there will be just different but you don’t have any less control. The only real difference is a distro like Arch is hands off and ships the bare default, whereas in the Debian family it will usually come with a reasonable default ready to go. Oh you install Samba to share files? Done, on Debian it will automatically start and you can just log in and access your home folder. On Arch, nothing happens, you have to configure it, enable it and start it, open firewall ports if enabled, and so on. Debian, again, all done automatically. Best case, you don’t have to change it. Worst case, you have to read the manual anyway but the default got you a base to start off of. As an Arch user, I see it more as crap that’s in my way that I have to delete because I will provide my own config. The difference here is perspective and expectations.

        Kind of ties back in the why so many distros: because there’s users for all of them. You pick a distro that works best for you, not the distro everyone else says is the best. The best start with Linux is trying a few distros and see which you vibe the best with. You, personally. It’s called a software distribution because that’s what it really is: a distro just takes a whole bunch of software from many projects, compile it all and bundle it all into nice packages and then make an installer to install and configure all of it. You can just download and install all the little pieces yourself, that’s what Linux From Scratch is. Distros are fundamentally opiniated, their take on how to mash all that software together such that everything works correctly.

        Circling back to Mint, nothing there stops you from compiling your own kernel, or your own packages. You can strip out all the Mint parts to the point it’s bare Ubuntu and then strip out the Ubuntu parts until it becomes bare Debian. You’re just changing your starting point. You get to see how they made it work, you can to see and explore how the magic works. You can always install Arch in a VM or container, or slowly build an LFS yourself in a VM just to learn it without it blocking you.

        To me that’s what’s truely so cool about Linux. It’s not a singular thing or product. It’s an ecosystem and a community, It’s a collection of independent software, in all shapes and colors, all coming together to give the end user experience we have. People can help eachother and make distributions that does one thing well (Kali, Dragon, Ubuntu Studio, SteamOS, Bazzite) so you don’t have to set it all up yourself. Freely replace any component with another. You can collect patches you like that the author won’t implement in the official release. A lot of people spent a lot of time on all of this, so might as well appreciate all the effort and enjoy the easy mode until you itch for more.

        And also, we learn so much better when we enjoy ourselves doing so. All you’ve learned so far is that Linux can be really frustrating very quickly, and no reward for it.

        •  frengo   ( @frengo@lemm.ee ) OP
          link
          fedilink
          Italiano
          121 hours ago

          Yeah, i think that’s it for me for now. Can’t create a simple shortcut to an .appimage in two steps. I need to manually look for the icon. Going back to windows 10 until they discontinue it. It’s been a pleasure (not)

          • I would avoid AppImages and use Flatpak instead. They’re pretty notorious for their lack of integration, and the author of AppImage is severely against progress and is actively sabotaging Wayland support in them which leads to other bad experiences on Wayland desktops. The shortcuts is merely the surface of the problems with AppImage.

            I wouldn’t give up so easily, just come back to it every now and then even if you spend most of your time on the Windows partition.

  • I doubt this is a real post, but on the off chance it is, sorry you’re having issues, but Linux probably isn’t for you.

    You’re obviously very enraged and not really interested in actually getting help for any issues you’re having. You started your post screaming at Linux for not making sense to you, you haven’t described what hardware you are trying to use.

    You only described your issues with Debian and Manjaro, neither of which are beginner-friendly distros and aren’t often suggested to brand new Linux users.

    If you want to describe your issues in more detail, one at a time, with info about your hardware, your distro and version, and what the exact errors you are getting are, you might get some folks chiming in to help. But coming on here, posting a rage-filled wall of text ranting about how angry Linux has made you, that’s not productive for anybody.

    If that seems like too much work, then sad to say, Windows will be your home for the time being.

      • It gets better!

        I took a deep dive on fonts my first week(they were fuzzy). I now know a lot about things I almost never use or set, but every win will give you a piece of the whole thing.

        Eventually you figure out the “core” (that stays the same everywhere and you don’t have to do near as much work to tack on the extras.

        It’s big and complicated because you’re replacing windows with the hundred individual things windows does, each were made by someone else, in some cases decades apart.

        Somehow it all works pretty well, but we stand on the shoulders of some giants.

        Edit: I also don’t like manjaro, but someone here has covered why better than I would have. I run endeavouros and would recommend if you want arch with less config, but it is arch. Mint is where I have been pointing people to start recently.

  • Do i need to live another life to make linux work?

    No, but do bear in mind that switching to Linux will have a learning curve, and it sounds a bit like you’re expecting to be able to do everything you did on windows on linux without having to change your behaviour.

    My advice is to start off with all the defaults of whatever distro you are using, and only installing packaged software for it, and just getting to a point where it is comfortable.

    Most problems on linux (that I’ve found) either come from hardware being faulty ir unsupported, or that the user doesn’t understand how it works, but is trying to force it to work how they want it to. Both can be fixed with becoming more familiar with how Linux works.

    This would also help you to understand why there are so many different distros (I do recommend distrowatch.com to quickly look up details about distros), as most differ in ways that require a bit of Linux knowledge to understand.

    so tldr just stick with it and try and learn how it works meow :3