this post was submitted on 17 Aug 2025
148 points (97.4% liked)

Ask Lemmy

34094 readers
1007 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

So like it says in the title. I'm looking to make a change. The only coding I ever did was like, some very light HTML on stuff like LiveJournal 20 years ago (because I'm ancient in internet years, haha) and even that I barely remember.

I've seen people talk about LinuxMint in other comment sections and how that one might be closest to something like Windows (in that a layman like myself can use it out of the box like buying a new laptop from Best Buy or whatever store). Is that actually a good one or is there something better for somebody like me?

I've seen enough people go 'NO UBUNTU!!!!' to steer me away from that one, but otherwise I have no clue what would actually be good for somebody in my shoes.

I have a laptop that still technically runs Windows 8 that I just use for downloads so I'd be trying it on there so that if something goes wonky I'm not fucked. After looking at the LinuxMint website, the specs on that laptop meet the requirements for it.

Thanks so much!

top 50 comments
sorted by: hot top controversial new old
[–] Nibodhika@lemmy.world 7 points 21 hours ago

Mint is a great distro for beginners. Coding is not required, but coders prefer Linux because it makes our lives easier in some ways.

I would like to take the opportunity to give you two advices that I think everyone who wants to use Linux should hear:

Install from package manager

In windows the way to install something is to look it up on a browser, open a sketchy website, downloading a binary and executing it on your machine. That is definitely NOT the way to do stuff on Linux. Think on Linux the same way you do Android (which is actually a Linux distro), if you want to install something you look it up on the play store, and only if it's not there you consider alternatives like downloading a random .APK from the internet. Linux should be the same, except there are several alternatives before downloading a binary from the internet, like adding a PPA in debian based distros (Mint is based on Ubuntu which is based on Debian, so this applies to you) which essentially gives extra packages to the package manager or using flatpak/snaps (two different technologies that try to do the same, i.e. a new way of packaging software for Linux)

Keep /home in a different partition

In Linux any folder can be in any hard-drive/partition. So it's possible when you're installing your system to have what you would normally think as C:\ (which is called / in Linux) in one partition and /home (i.e. the folder home inside /) in another. This is great because it allows you to reinstall or change your Linux distro without losing your personal data.

[–] Adderbox76@lemmy.ca 13 points 1 day ago

I haven't once in fifteen years needed to do any coding whatsoever to use my Linux computers day-to-day.

[–] swordgeek@lemmy.ca 48 points 2 days ago (2 children)

Mint is good. It might be worth trying a few different desktop environments to see what you like - you can probably run all of the major ones from a LiveBoot device.

BUT, and this is VERY important, ypu do not need to do any programming or coding on a Linux desktop. Ever.

If you're not a programmer then you are never forced to peel that onion. You can do EVERYTHING from a GUI if you want.

You'll lose the ability to run some games and software, but between alternatives and emulation, that list is getting smaller.

[–] Lumidaub@feddit.org 38 points 2 days ago (2 children)

You can do EVERYTHING from a GUI if you want.

Until you run into any sort of problem and all the solutions you can find are "do this command that i won't explain and that and paste this cryptic series of letters here and this there and chant this unspeakable spell to summon dread cthulhu and then run this command with these arguments. it's very human design."

[–] verdigris@lemmy.ml 24 points 2 days ago (2 children)

Using the command prompt is not coding. You sometimes need to use the command prompt in Windows to solve certain problems, the terminal in Linux is just easier to use and more powerful so it's often an easier way to solve problems or get information.

Also, they're all explained, you just don't care to read the explanations. One of the best things about the Linux terminal is that most commands have exhaustive and clear documentation.

[–] Ftumch@lemmy.dbzer0.com 8 points 2 days ago* (last edited 2 days ago) (1 children)

Using the command prompt is not coding.

Ackshually, whenever you write something into the command prompt and it works, you're writing valid Bash (or whatever shell you're using) code. Bash is a programming language, so technically you are coding.

For example, try typing the following into a terminal:

for ((i = 0; i < 10; i++)); do echo $i; done

You just counted to nine using a loop and a variable!

False, everyone knows that each program contains at least one branching, one loop and one bug. This "code" has only one loop. Therefore it is not a code, therefore it is not considered programing.

/s just in case

...a loop that breaks is technically has branching...

[–] Lumidaub@feddit.org 9 points 2 days ago* (last edited 2 days ago) (1 children)

The command prompt is not a GUI.

I WOULD have cared to read the explanations, there just weren't any or they sent me down a billion rabbit holes. Just yesterday in fact I did try Linux Mint (after having tried various Linux distributions over the years, ending in confusion every time). I hate (HATE) just following instructions without knowing why I'm doing what I'm doing so I tried very hard to understand every step. It was nothing but frustrating because my earlier post is only a slight exaggeration.

[–] Brkdncr@lemmy.world 7 points 2 days ago (1 children)

I relate. There's a lot of people on Lemmy that feel Linux is better in every way over MacOS or Windows and it's simply not true. I'm following some vague instructions right now to bring a device up-to-date that appear to be re-compiling kernel unexpectedly. I just wanted my display to rotate correctly, and be able to play some games.

[–] Lumidaub@feddit.org 10 points 2 days ago* (last edited 2 days ago) (1 children)

(sorry, rant incoming)

See, I'd be absolutely willing to learn that Linux is indeed "better" than Windows (in fact, I do suspect it probably is - once you know your way around it). What annoys me absolutely endlessly is how people go on and on about how eeeeasy it all is and modern distros are juuuust like your current OS, really, and there's absolutely zero need to be intimidated because it's all so very intuitive and you can't do anything wrong*! It isn't easy. And it doesn't have to be easy, I'd be okay with looking shit up - if explanations and guides didn't assume you already know your way around the OS ("do cryptic thing xYz, duh"), if they weren't out of date because they were published an entire month ago and if people didn't pretend.

* I almost broke my display tablet in my Mint experiment because while trying to get the driver to work, I followed a guide that explained nothing (so for every step I looked up another guide which lead to another guide to another guide to another guide.......). No I don't know what went wrong because I don't know what the guide was making me do. Luckily, I'm tech savvy enough to fix it on my own - under Windows.

[–] leave_it_blank@lemmy.world 4 points 2 days ago (1 children)

Thank god I'm not the only one. I was convinced it was me! i used Mint for two months, and when everything works it's good, but the second you encounter a problem it becomes a nightmare.

[–] LifeInMultipleChoice@lemmy.world 3 points 1 day ago (1 children)

It's been great for standard use, but yeah some things just get weird sometimes in every OS. 2 mint cinnamon OS's acted different, over and over with power and lid settings. pop-os had stupid shit with an old laptop that no matter what I did the airplane mode would enable when you opened the screen, not closed. I use RustDesk for remote access across my machines and phone, where you install from matters, if you install from the software manager their website or the flatpack... You will have different results/features. Run your own server for it, now the docker container is continuously restarting. Fix that and my file server, jellyfin server, Pihole server, or something else is doing something wonky. It's 100% my fault I'm trying to run to much off of one device, but once I get it all working I say hmm... What if I try to run a Piefed instance off of it, and realize no matter how I run the reverse proxy the incoming ports may have overlap. So I need to divide things up more.

[–] leave_it_blank@lemmy.world 3 points 1 day ago

That's all beyond my abilities :)

My main problem was just a printer. I did find a driver for Mint, and it worked flawlessly for a few days. And suddenly it stoped printing again. I tried to configure the driver, I uninstalled and reinstalled, it just does not work anymore. Getting help is difficult online because everyone seems to think much knowledge is a given, and the hints got more and more complicated until I just had no idea what I was doing. Reading up on the commands used got more and more overwhelming and intimidating, so I, at some point, just gave up. Same with gaming, if a game runs it's absolutely fine, but when it does not it's tough to find easy to understand documentation how to fix it.

I won't give up, but I reinstalled Windows 11 on my main PC again. Mint runs on my laptop that I use occasionally. Linux has come a long way, and it's amazing how the usability improved over the years, but, at least for me, it's not quite there yet. But until Windows 12 comes out I'm pretty sure it will improve much further, until then Win11 has to do. My first step is taken.

[–] SeekPie@lemmy.blahaj.zone 8 points 1 day ago* (last edited 1 day ago) (1 children)

Commands are usually just easier ways of doing the thing, so that is usually what is told to people with problems.

Like you can browse through 5 menus and find the thing or paste the command and be done. If you don't want to paste the command, then just look through settings/menus.

[–] Lumidaub@feddit.org 3 points 1 day ago (1 children)

Cool, I'm not against that. It's just the opposite of beginner-friendly.

Like you can browse through 5 menus and find the thing

I sure would've appreciated a guide on how to do that for, I don't know, something so exotic und unusual like installing my tablet driver, just to get the thing working. So that next time I can find things on my own, learn the structure of the system by exploring stuff and see what else there is, instead of just mindlessly copy pasting some command. Efficiency in doing things can come later, after I'm settled in.

[–] Tuuktuuk@sopuli.xyz 1 points 18 hours ago* (last edited 18 hours ago)

The "mindlessly copypaste this command" culture is dangerous anyway. It's easy to insert some malicious commands there. You can be simply devious and make the user delete all their files. Or, they can make you do something that installs a backdoor for criminals to use for remotely using your computer. Then the Russia or somebody else does a cyber attack against some power plant that gets severely damaged and people die, and the police come to your home suspecting you of manslaughter because your computer had been used for the attack...

load more comments (1 replies)
[–] dajoho@sh.itjust.works 2 points 1 day ago (3 children)

Do:

  • Mint if you're coming from Windows
  • Ubuntu if you want lots of help online
  • Fedora if you want strong and stable
  • Bazzite Gnome if you want indestructible, grandma-safe and Apple-like.
[–] Tuuktuuk@sopuli.xyz 1 points 18 hours ago* (last edited 18 hours ago)

Regarding the lots of help online:

Linux Mint is made so that they take the most recent Ubuntu, make certain alterations to it and then ship it as Linux Mint.

Because of this, over 95 % of advice for Ubuntu works on Linux Mint out of the box. But of course, sometimesthe few changes Linux Mint has done causes the advice to not work. So, first look for

Computer physically explodes killing me when I launch Solitaire Linux mint

But, sometimes that doesn't work and you find no solutions. Then try

Computer physically explodes killing me when I launch Solitaire Ubuntu

...and you almost surely find a solution that solves the problem.

Just remember, it is impolite to go ask for help on Ubuntu forums if you're using some other distribution, such as Mint. But, sometimes it could be the only good option. In those cases begin with something akin to "I am running Linux Mint which is based on Ubuntu and nobody on the Mint forums was able to help, so I'm trying my luck here."

[–] seralth@lemmy.world 1 points 22 hours ago (2 children)

Telling someone to use gnome feels like a hate crime.

We are trying to help people use a PC the way they want. Not just give them a different boot heel to grovel under.

[–] dajoho@sh.itjust.works 5 points 21 hours ago

So we can't suggest it because you don't like it? Check.

Won't happen again, sir.

[–] princessnorah@lemmy.blahaj.zone 2 points 19 hours ago

I was with you in the first half, Bazzite GNOME seems like a wild recommendation over the KDE build which is far more Windows-like. But seriously, calling GNOME a boot-heel? I assume because of Red Hat contributing heavily, but you know the GNOME Foundation is a fully independent non-profit entity, right? The closest thing to a boot-heel on that list is Ubuntu/Canonical and even that is a stretch. Grow up.

[–] princessnorah@lemmy.blahaj.zone 0 points 19 hours ago

If gaming isn't a priority, Bazzite's cousins Project Silverblue (GNOME) or Aurora (KDE) are pawbably better choices. Much more grandma-safe in my opinion, both having automatic updates enabled by default.

https://universal-blue.org/#images

[–] hperrin@lemmy.ca 15 points 1 day ago* (last edited 1 day ago) (1 children)

You don’t need to know how to code to use Linux. It helps to know how to use the terminal, but you don’t even really need to know that anymore either.

Mint is a great choice. Fedora is another great choice, and it’s what I use. IMHO, Cinnamon (Mint) and KDE are easier to use coming from Windows than Gnome (Fedora). So yeah, I’d agree with the sentiments you’ve read and cited in your post. You can also use Cinnamon or KDE on Fedora if you like though.

Agree with everything you're saying. I'm using Mint for a year now and never had to open the terminal. It's a great distro.

[–] rozodru@lemmy.world 6 points 1 day ago (2 children)

The only time you might have issues with Ubuntu is when it comes time to update/upgrade it. I've seen people on Mastodon, every time an update rolls out, say that its broken something. But I think those cases are few and far between.

Mint is a good choice to get your feet wet. Install it with KDE Plasma so it will at least feel familiar to you. Cinnamon is fine but I always found it a little bit wonky. When I first started on linux I got kinda carried away with customizing Cinnamon and it totally just wrecked my install.

There's a lot of documentation and support for Mint/Ubuntu so you can pick up stuff pretty quickly. Once you get comfy with it you can always switch your distro to something else. But yeah there's nothing wrong with starting on Mint to get a feel for it.

[–] Tuuktuuk@sopuli.xyz 1 points 18 hours ago

I think the reason there are so many messages about Ubuntu update problems is that Ubuntu is by far the most used desktop distro. When you have mire users, even the rarest problems are likely to occur on someone's computer at least.

[–] defuse959@lemmy.dbzer0.com 2 points 21 hours ago

Just lost a Mint install to a bad kernel update. I don’t bother to fix my OS failures anymore. I just load ventoy through refind and start over.

It’s not a common occurrence but I’m just not precious about my OS installs anymore. Keep a script around to backup anything important to a network share and let it rip.

[–] OboTheHobo@ttrpg.network 17 points 2 days ago* (last edited 2 days ago)

Mint is a good option, yeah. Should feel familiar if you're coming from windows.

Note that coding experience isn't really relevant. Only the most advanced users ever really need to write code for their system. 99% of linux users, including the experienced and power users, don't have to regularly code, per se. Note that I'm referring to actually writing programs, not terminal use. Using a terminal isn't coding but that may be what you were thinking of, it's similar but imo not the same. If you wanna do more advances stuff, you'll definitely want to learn the terminal, but for most stuff you'll get by just fine with GUIs like you're probably used to. Mint is particularly good at keeping stuff to GUIs.

Something to note: coming from windows, you'll be used to getting programs by finding downloads on the internet. On linux, that's generally best avoided - you should always look on your distro's package manager first. On mint is believe it's called something like "software center" or "software manager," can't remember off the top of my head but it will be preinstalled for you.

[–] Libb@piefed.social 9 points 1 day ago* (last edited 1 day ago)

The only coding I ever did was like, some very light HTML on stuff like LiveJournal 20 years ago (because I'm ancient in internet years, haha) and even that I barely remember.

Hi,

Fear not: I switched to Mint when I was already in my 50s... and before that I had been a lifelong Apple user (got my first Apple computer back in the early 80s).

I tried a few distro before settling on Mint and the only reason I picked it up was because, back then at least, it was the only one that would let me use my... Airpods, seriously. Fast forward a few years, to this very day, and you can be assured I would not want to go back to Apple. And I still am using Mint, as I never had any issue with it, not a single one (beside me doing stupid things, but hey that's how one learns :p). It works perfectly well for me.

Not saying that as way to push you to use Mint. I mean, like others have already suggested there are plenty excellent GNU/Linux available and Mint is just one of them, but to let you know there is no need to be an expert in order to use it.

BTW, Mint is based upon Ubuntu (which is based upon Debian), the hate towards Ubuntu is because they force certain tools/choice onto their users which, unlike with Apple or Microsoft, is not something a lot of people in the Free Software world will agree with (I certainly don't, as that's the main reason I quit using Apple ;). Ubuntu is still an excellent distribution, just their policy doesn't sit well with the freedom & choice Linux is supposed to be promoting.

[–] Eldritch@piefed.world 23 points 2 days ago

Linux mint is a good compatible baseline yes.

[–] rowinxavier@lemmy.world 15 points 2 days ago

First and foremost, you don't have to stay on the distro you start with. You can try a few, spend a week running it, and then reinstall with something else. Distro hopping is the process if changing distro frequently and is in my opinion a very useful start for learning Linux.

Second, Ubuntu is a perfectly fine distro. I don't like or use it, but I also don't really like chocolate but love licorice, it really is a matter of preference. If you never try it you will never know if it is good for you.

I think the best path would be to either use virtual machines on your main system or try a few distros out on your Windows 8 machine. I would recommend trying a few of the most popular distros including Ubuntu, Mint, Fedora, EndeavourOS, elementary, and maybe Pop!OS. That should cover most of the different desktop environments, packaging systems, and overall design methodologies and give you a really rounded sense of what is out there. It should also give you opportunities to have things break a little and for you to try to solve those problems. I find that different distros present failures a little differently and their solutions also work differently, so finding one that works well for you is key.

I personally ended up switching from a vanilla Arch install to EndeavourOS a year or two ago because it had great sane defaults, good packaging, and fantastic performance. The clarity of the logs was better in my mind than what was available in Ubuntu based distros and while I love Arch it was a bit too demanding of my time to figure out each and every choice of package. EndeavourOS gave me good solid defaults and reduced my work load.

Just remember, your choice of distro is like your choice of underwear. You have to wear it, make it comfortable for you and your junk, not for someone else's.

[–] junkthief@lemmy.blahaj.zone 11 points 2 days ago

I don’t understand coding either and I’ve installed different Linux distributions before! You can do it! Are you perhaps confusing coding with running commands in the command line? Because even running commands may not be necessary for a graphical installations like the aforementioned Linux Mint, Pop OS or similar.

I will say the nice thing about picking a popular distribution like Ubuntu, Mint, or Pop! OS, is that it’s easier to find solutions to problems, because it’s more likely that someone has posted about it online and found a solution

[–] gedaliyah@lemmy.world 9 points 2 days ago

I think the Ubuntu haters are overly enthusiastic. It's perfectly fine. Actually pretty good.

Mint is extremely popular as a recommendation for good reasons as well.

Both have excellent support communities, which is important. Linux in general has become a lot more "plug and play" in recent years, meaning that it will do more of what you want right out of the box. In all likelihood, you will want to do something with it that requires help, so having a robust community makes a big difference.

[–] recursive_recursion@piefed.ca 11 points 2 days ago (4 children)

Linux Mint is a solid place to start I'd say.

Ubuntu/Canonical has..issues to say the least.

  • A primary concern being the ever eternal cursed Snap packages.
  • Second being the replacement of existing tools with Rust alternatives without the proper FOSS licenses, so Ubuntu becomes less reciprocal over time and more proprietary over time.

anyways, choosing Linux Mint is a great place to start🤗👍 and I say this as someone that's tried:

  • Ubuntu Server
  • Raspberry Pi OS
  • Linux Mint
  • Arch Linux
  • NixOS
  • Kali Linux
[–] omxxi@feddit.org 2 points 1 day ago

Well, that's true in my case. Years of using Ubuntu, and finally I decided to move to Mint when they FORCED firefox to run via snap. I followed some guides to download firefox with apt and disable the snap version, and somehow Ubuntu ended up using snap again without my authorization. Also snap was not able to read/write /tmp folder, which I used a lot. Flatpak doesn't have that problem.

So, yes, I recommend mint, for me it has the best of Ubuntu and fixes exactly what I didn't like.

The Ubuntu user base is huge and helpful, and almost all of that applies directly to Mint.

load more comments (3 replies)
[–] BananaTrifleViolin@lemmy.world 9 points 2 days ago* (last edited 2 days ago)

You don't need to do any coding or have any experience in coding. Linux is for everyone and doesn't need any special skills or knowledge to use it. Everything can be done with a mouse and keyboard just like Windows.

You can install Linux exactly as you would Windows - stick in a USB stick and follow the prompts. You can even try Linux using live USB sticks although it'll be a little slow to load compared to an actual install (as USB sticks are generally slower than hard drives).

Linux Mint is a good place to start. It's user friendly and stable, and there are lots of guides out there if you need help, even just to install it.

[–] SpaceNoodle@lemmy.world 9 points 2 days ago (1 children)

Pop! OS is also a good beginner distro.

load more comments (1 replies)
[–] Iceblade02@lemmy.world 4 points 1 day ago

Mint is a great starting point. I might also recommend having a look at KDE (the desktop environment) which will feel very familiar coming from windows and is available on quite a few distributions. I use it with OpenSUSE Tumbleweed - less beginner friendly than Mint, but still an ok plafe to start.

[–] bubblewrap@piefed.ca 6 points 2 days ago

I'll go against the grain here and suggest Kubuntu. It's an official variant of Ubuntu which swaps out the GNOME desktop environment for KDE Plasma. KDE feels much more Windows-like than GNOME, so it's a great migration option for Windows users.

KDE also really focuses on creating a cohesive desktop environment, much more than other DEs. There are over 200 applications built specifically for KDE (https://apps.kde.org/) which try to maintain a common look and feel. You can of course run any Linux application on KDE, but there's something quite nice about having applications built specifically with the DE in mind.

[–] Apocalypteroid@lemmy.org 2 points 1 day ago

I have zero coding skills and recentky switched to Linux. From what I can tell the difference between different distros is completely negligible unless you're a developer or a hardcore gamer. I settled on Kubuntu because out of the dozen or so distros I tried, it worked best on my machine and was similar enough to Windows for me to get to grips with very quickly.

[–] Notamoosen@lemmy.zip 6 points 2 days ago

Some great responses here. One thing I'd add is while Mint is considered "beginner friendly", it's still a Linux based os. If you decide you want to get into more advanced topics in the future (programming, networking, etc.) you can absolutely do those things with Mint if it's the distro your comfortable with. You wouldn't be stuck with an os with limited functionality in that regard.

My 80+ year old mom has been using Debian for over 2 decades now. She is very much not a coder. Just pick whatever distro and try it out, as others have said.

[–] rapchee@lemmy.world 1 points 1 day ago

depending on how complicated it is to swap out the hard disk, i'd swap out the windows drive and put in a new one (preferably an ssd, they make a big difference even in older computers) - this way you'll keep the option to put it back if you're really lost, you can back up stuff there
mint is a good place to start, no need for coding.
you do need to get adjusted a bit, the complaints about "how difficult it is to do things on linux" is often because people try doing stuff exactly like they did on windows, and sure, you can do exactly the same thing but you need to set up, sometimes compile tools for it - or you can search in the software manager or search on the web for "xy linux alternative"
for instance file sharing - yeah linux supports samba (the windows file sharing protocol), it works, but imo it kinda sucks (but tbf it sucked on windows too), so i started looking for alternatives and just allowing an ssh connection allows you to directly connect to machines with your username, and also allows sftp file transfers, and it works so much better

[–] kbal@fedia.io 6 points 2 days ago

I got the chance to install Mint recently for a couple of people who were totally new to Linux. It went pretty smoothly, seems to work for them so far.

[–] paddythegeek@lemmy.ca 6 points 2 days ago (1 children)

I have several older laptops that would not perform well on windows 11 running Linux mint, Debian, Ubuntu with no problem. If you stick with distributions that let you try the os from a bootable usb first, this should increase your comfort level and help you feel better about your decision.

One note, depending on your laptop BIOS, you may have trouble booting a live USB. I experienced this with Ubuntu and Pop-os, but the issue is solved by creating the bootable USB with a GPT partition instead of the default MBR. The only reliable way I have found to do this is using Rufus on Windows, so keep in mind you may need a Windows machine around for this purpose.

Good luck and have fun!

load more comments (1 replies)
[–] RedGreenBlue@lemmy.zip 5 points 2 days ago

You won't run in to coding.

Having decision paralysis? Best to just pick an option and do it. Expect it to go wrong and be pleasantly surprised when it diesn't. Don't try to plan it all out. Doing is the best learning. Unsure about something? Press enter and see what happens. Start over if you have to.

Pick Mint. It's a good start. load it to a USB, reboot, find the boot menu, boot the USB, let the installer guide you. Have another device handy for internet searches if something confuses you. At this point, If for some reason you wanna try another distro, go ahead! Doesn't hurt to reinstall and try out.

[–] zxqwas@lemmy.world 2 points 1 day ago

Ubuntu or mint is a good beginners choice.

Once you get annoyed with snap packages or something else you can change it.

I would say Ubuntu, Mint or Debian. They have a lot of documentation online and years worth of forum posts and stack overflow threads answering various questions a user might have.

If you have a seperate computer or hard drive to install on, you can go wild trying out anything you like. In my case, I had one laptop so I needed something stable with good hardware detection and online resources.

(For context, I've tried Mandrake Linux, SUSE, Gentoo, Slitaz and a few others. I keep going back to Ubuntu / Debian.)

load more comments
view more: next ›