Basically the forced shift to the enshittified Windows 11 in october has me eyeing the fence a lot. But all I know about Linux is 1: it’s a cantankerous beast that can smell your fear and lack of computer skills and 2: that’s apparently not true any more? Making the change has slowly become a more real possibility for me, though I’m pretty much a fairly casual PC-user, I don’t do much more than play games. So I wrote down some questions I had about Linux.

Will my ability to play games be significantly affected compared to Windows?

Can I mod games as freely and as easily as I do on Windows?

If a program has no Linux version, is it unusable, or are there workarounds?

Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

Are GPU drivers reliable on Linux?

Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

And also, what distro might be best for me?

  • @DharkStare@lemmy.world
    link
    fedilink
    English
    1119 days ago

    I’m pretty much the same as you. A lifelong Windows user who got fed up with the direction windows is going. I just recently switched to Linux for my new gaming PC and I haven’t had any major issues. The only thing I still haven’t figured out how to do yet is modding.

    As for which distro to use, I would recommend something that comes with the graphics drivers already installed to reduce any initial setup difficulty.

    I use Bazzite on my machine. It’s a Linux gaming distro which comes with all the stuff you’ll need to get right into gaming. It’s an immutable distro so it’s pretty difficult to really mess it up but it also makes things a bit more difficult to install anything that isn’t a flatpak.

  • @ilinamorato@lemmy.world
    link
    fedilink
    10
    edit-2
    15 days ago

    I’m a newcomer to Linux (only about a year in), but here’s what I’ve got so far:

    Will my ability to play games be significantly affected compared to Windows?

    Mine wasn’t at all. Valve has done a lot of work to make this seamless so that more games can be played on the Steam Deck. Check the Proton DB to see what your games look like.

    Can I mod games as freely and as easily as I do on Windows?

    I have very little experience with this, but probably. Linux users tend to be tinkerers.

    If a program has no Linux version, is it unusable, or are there workarounds?

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    Same answer for both: There’s Wine, and a whole bunch of setup scripts that can get even stuff like Adobe Creative Suite working with it. Worst case scenario, there’s VirtualBox for the one or two apps you might need to run Windows for. But I find that the open source options, while they might have a learning curve, tend to be substantially better than either of those options.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    More or less, but you can pick and choose what updates you want to install and when. Most distros have a package manager that’ll let you update the kernel, the drivers, the middleware, the desktop environment, all your apps, and even the package manager itself on your schedule, from one interface. You can also just ignore it and never update anything, though I wouldn’t recommend that.

    How does digital security work on Linux?

    Very well. It’s much more locked-down by default, for one thing.

    Is it more vulnerable due to being open source?

    Quite the opposite. Open source projects are well known for being less vulnerable out of the box; Linux in particular is used by huge companies as a lightweight server OS, so it has a lot of highly-paid people committing security fixes back down to the open source project.

    Is there integrated antivirus software, or will I have to source that myself?

    Antivirus is a bandaid on Windows, provided because the OS was written with certain naive assumptions that let attackers get access they shouldn’t have. On Linux, those assumptions were not made. No application can be installed without your root password, for instance; downloaded files can’t even be executed without specifically making them executable; and access to edit system files is restricted by a very robust permissions system.

    All of that, plus Linux’s much lower market share, also means that no malware authors are really wasting their time trying to write Linux malware. The attack vector just isn’t worth the extra effort.

    So no, there’s no integrated antivirus; but for most users in most situations, it’s not needed at all.

    Are GPU drivers reliable on Linux?

    Your mileage may vary significantly, but anecdotally it seems like most architectures from AMD and Nvidia have good support.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    Maybe, but like with Windows, I assume you have to really go out of your way to do so.

    And also, what distro might be best for me?

    I’ve only used Ubuntu and Mint. Mint has so far been the easiest and most user-friendly of the two. It’s also regularly touted as the best for newcomers.

  • Atreides
    link
    fedilink
    1018 days ago

    I’m only responding to the lack of computer skills portion of the OP as I’m sure others have already answered points plenty and probably better than I could.

    If you’ve used Windows, you have enough basic computer skills to get you started. You’ll learn the Linux by using Linux just like you learned Windows by using Windows. There are plenty of mainstream distros that give you an out of the box working experience that is a great starting ground. It does take research and try things out instead of wanting someone to give you the perfect play book.

    • @nagaram@startrek.website
      link
      fedilink
      118 days ago

      This is something I tell people all the time. It’s just as easy to troubleshoot on Linux as it is on Windows the biggest issue is that most people are just kinda innately aware of Windows troubleshooting by virtue of the fact that they’ve been doing it for so long. Linux is probably just as complicated skill wise, but most people just aren’t used to it yet.

      And that’s especially true for gamers. If you’ve gone through the dance of tweaking BIOS settings or DDU removing drivers and reinstalling them, then you’re probably gonna do fine on Linux. The only difference is sometimes there won’t be a GUI you have to go hunt down. It will be like 3 commands someone has already written out for you that you copy/paste into the CLI. Which is WAY better in my opinion.

      • @tempest@lemmy.ca
        link
        fedilink
        218 days ago

        That’s true and not true at the same time. The one advantage Windows has in this regard is that everyone is working on the same “distro” as it were. With Linux the various components can vary enough to be confusing. I think that is why it’s important to choose a distro with a sizeable community.

        Something like Ubuntu, or an arch derivative like endeavouros are a good choice for that reason.

        I would also warm against the copy paste of commands that you don’t know what you are doing with. The one nice thing is that in 2025 you can drop a command into your choice of LLM assistant and get a pretty good description of what it does without breaking out the man pages.

  • @coolie4@lemmy.world
    link
    fedilink
    1020 days ago

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    This is known as a package manager. The package manager (along with some default settings and preinstalled packages) is what makes each Linux distro different. For instance, Debian uses apt, Arch uses pacman, Gentoo uses emerge.

    Each package manager uses a different way to upgrade software. For instance apt update refreshes the global list of available software and versions and apt upgrade finds differences between that list and what you have installed, and upgrades as needed.

    There also snaps and flatpacks, but I don’t support the use of those.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    Yes and no. Open source allows attackers to find vulnerability in code, but also means more eyes are on that same code and able to fix those vulnerabilities.

    Although permissions can largely be ignored on Windows, its critical to Linux. Its a little much to explain here, but a standard install is fairly secure because of permissions. The important thing to remember is to harden the root account (no remote login) and be very careful what you execute with the sudo command.

    Many people [incorrectly] don’t use AV because historically Linux hasn’t been much of a target due to low adoption. The trifecta of software I use are ufw as a system-level firewall, fail2ban to block an attacker who tries to bruteforce entry and repeatedly fails, and ClamAV for AV.

    Are GPU drivers reliable on Linux?

    Yup

    And also, what distro might be best for me?

    I think Mint is currently the recommended distro for new users. It used to be Ubuntu, but canonical has been doing some very anti-community things lately.

  • @Nibodhika@lemmy.world
    link
    fedilink
    1519 days ago

    Will my ability to play games be significantly affected compared to Windows?

    Depends on what you play. As a general rule I would say that unless you like competitive multiplayer games you’re probably going to be fine. That being said the vast majority of games don’t support Linux natively so you need to use workarounds. Steam has a workaround built-in, so if most of your gaming is through Steam it should be an almost seamless transition (all you need to do is enable a checkbook in the settings). But like I said, it depends on what you play, I recommend you check out https://www.protondb.com/ and look for the games you play to see how they run on Linux.

    Can I mod games as freely and as easily as I do on Windows?

    Same answer as before, if the game runs okay then modding it would also work okay, but if not it might worsen an already bad situation. Also be very careful here, because when you run Windows games on Steam they’re sort of sandboxed, i.e. they’re running isolated from other stuff, so installing mods is not as straightforward as it would be on windows where binaries are installed globally. It’s not a big deal, but just the other day someone was complaining that they installed a launcher needed for a game and the game wasn’t finding it and this was the reason.

    If a program has no Linux version, is it unusable, or are there workarounds?

    As a general rune there’s a workaround, it’s called WINE (which is an acronym for WINE Is Not an Emulator) which is an “emulator” for Windows (except it’s not really an Emulator as the name implies). Then there are some apps built on top of that like Proton (which is what Steam has embebed) that include other libraries and fixes to help. It’s not perfect, but unless the program is actively trying to detect it or uses very obscure features on Windows it should work.

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    Yes, you can use WINE like mentioned above to run Windows binaries that use .NET, but also .NET core is available for Linux.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    Oh boy, this is the big one, this is the Major difference for m Windows to Linux. Linux has a thing called a package manager, ideally everything you install gets installed via that package manager. This means that everything gets updated together. And here’s the thing, we’re not talking OS only stuff, new version of the kernel (Linux)? New version of the drivers? New version of Firefox? New version of Spotify? All gets updated together when you update your system. This is crucial to the way Linux works, since it allows Linux to have only one copy of each library. For example, if you have 5 different programs that use the same library, in Windows you’ll have 5 copies of that same library, because each program needs their own in the specific version, but in Linux since they will all update together it’s easier to have just one library that gets updated together with the programs. This makes maintaining Linux a piece of pie in comparison, just one command or one click of a button and you’re all up to date with everything you have installed.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    As a general rule open source programs are more secure than their counterparts. Closed source programs always remind me of Burns going through several security measures, that sort of thing is imposible in open source because if everyone can see all of the security measures, so someone would notice the gaping hole in the back, whereas in closed source only attackers might have found it. Like cyber security experts say: Security by obscurity is not security. As for Antivirus you don’t need to worry, Linux is inherently more secure than Windows, and also has a small enough user base (most of whom are security experts) so the number of virus written for Linux is extremely small. Also because you should install stuff through a package manager it’s very difficult to get someone to download a bad binary since there’s lots of security in the package manager to prevent this sort of thing. In short almost every antivirus program for Linux checks your computer for Windows viruses to avoid being used to store or transmit viruses to Windows computers, so it’s completely pointless in your home machine (it’s used for example in email servers).

    Are GPU drivers reliable on Linux?

    Yes… But actually no. It depends, if you have a relatively modern AMD GPU (as in last 10 years) the answer is a resounding YES, AMD currently has wonderful Linux support and their cards work excellently with drivers being fully open source and integrated into the Linux Kernel. For Nvidia the story is unfortunately not as nice. Essentially there are 2 drivers available, nouveau (open source driver written by the community and purposefully hampered by Nvidia) and nvidia (closed source driver written by Nvidia that has gaping incompatibilities with Linux). Since you game your only option is nvidia, while nouveau is great for several reasons it can’t match the performance of the nvidia driver. For 99% of stuff the nvidia driver should work fine, but I haven’t had good luck with getting Wayland to run on it, which means you’re probably stuck in X11 (I know this doesn’t mean much to you, but in short it means that you’re somewhat limited in your choice for graphical interface and have to use stuff that people are trying to deprecate but can’t because of Nvidia)

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    Technically yes, so can Windows by that matter. But realistically no, unless you’re writing your own kernel drivers you won’t be in any position to cause hardware damage.

    And also, what distro might be best for me?

    I would probably go with Mint, it’s beginner friendly and I’ve been recommending it for decades. One thing to bear in mind is that in your knowledge level the distro you choose won’t make that big of a difference, try to pick something beginner friendly and you should be fine, no need to overthink this.

    PS: some extra notes that you didn’t asked but I think are good to know:

    • Any Linux can look like any other, it’s just a matter of installing the right packages
    • You should keep your / and /home in separate partitions, this makes it possible for you to reinstall (or even change distros entirely) without losing your files and configuration. This is due to how Linux manages partitions, which in short is not like on Windows where you have a C and D drives but instead any folder can be a different partition or disk.
    • You can dual boot, i.e. have 2 OS and choose which one to use every time you turn on your computer.
    • You should probably install Linux on a virtual machine first to check it out safely. And do a backup before installing it on your computer just in case you make a mistake.
  • @afk_strats@lemmy.world
    link
    fedilink
    English
    60
    edit-2
    19 days ago

    Will my ability to play games be significantly affected compared to Windows?

    No. Thanks to Steam Deck, most popular windows games also work on Linux. See https://www.protondb.com/ for a complete list of 18,000 titles… Someone already mentioned that kernel level anti-cheat is the big, obvious blocker.

    Can I mod games as freely and as easily as I do on Windows?

    Im guessing that most moders target Windows users therefore, don’t think mods would be AS easy. Not saying modding wouldn’t exist or work at all. Edit: see sp3ctr4l’s reply to this comment. They know more than me

    If a program has no Linux version, is it unusable, or are there workarounds?

    There are workarounds. Linux has some great alternative software to popular paid stuff. See LibreOffice or Krita.

    There are also more advanced options to run Windows apps under Linux, see Wine or Virtual Machines

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    Yes. Similar to the above answer/ similar to aforementioned Proton. For .NET specifically, there is a Linux runtime.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    This can depend a lot on what distribution you’re running, but definitely, there are ones with easy buttons for whole-system updates.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    It’s different and probably overall better than windows. Most distros are much better out of the box than windows.

    Open source is ususually a security advantage because (long story short) security mistakes can be caught by more people.

    I don’t have a good answer for you on anti virus. I am very privacy and security conscious and I dont use one on linux. My personal opinion is that you don’t need one and shouldn’t need one if you’re not downloading sketch stuff.

    Are GPU drivers reliable on Linux?

    Totally. GPU drivers are much, much better than they used to be.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    Theoretically. You would have to try really hard, but for normal use, no. More likely, you could lose data or access to the system if you misconfigure stuff (just like with Windows)

    Distro recommendations. My personal opinions, don’t flame me.

    • Bazzite. hard to mess up, gamer focused, super simple updates, and targeted support for gamer hardware. Feels like a cross between steam deck and windows. Less support for tinkering but if you never want to touch the terminal, this is my choice.

    • Pop!OS. Simplified Linux with great driver and steam support with easy updates. More tinkering support than Bazzite

    • Linux Mint. Easy to start on but more traditional back-end. Much more support (forum posts) than the previous two. A lot of what works on Debian or Ubuntu works the same on Mint, so you’ll be able to do all kinds of fiddling

    • Aedis
      link
      fedilink
      20
      edit-2
      19 days ago

      Down vote cause no arch. (no I didn’t.)

      But in all seriousness, don’t use arch as a Linux noob.

      • IngeniousRocks (They/She)
        link
        fedilink
        219 days ago

        There is exactly one type of noob that should be using arch and that’s the kind that has already built an Exocar or at least understands why somebody would.

    • @sp3ctr4l@lemmy.dbzer0.com
      link
      fedilink
      English
      15
      edit-2
      19 days ago

      To add in about game modding on Linux:

      https://github.com/limo-app/limo

      https://flathub.org/apps/io.github.limo_app.limo

      Limo is a universal mod manager that is linux native.

      And I do mean universal. It’ll work with literally any game, you just have to take a bit of extra time to configure things for games that do not yet have a supported preset configuration out of the box… but at this point, that includes most games that are generally reliant on some kind of mod manager type program on Windows, to keep track of 10s or 100s of simultaneous mods.

      It works very much along the same lines as something like Mod Organizer 2, though there are some differences, read the wiki.

      It sets up a virtual file system that allows mods to be set up outside of the main game directory itself, and will override them such that the mods actually load, but they can be ‘undeployed’ to revert back to vanilla, you can set up different profiles of different mod configurations and deploy/undeploy what you like.

      It can also manage load orders, supports formats such as fomod and similar for games like Fallout New Vegas and Skyrim, you can set up tags and category groupings, and it also shows you conflicts between mods down to the specific files, showing you a chain of overwrites to the final file from the final loaded mod.

      It doesn’t support things like LOOT, which purport to autogenerate correct load orders… but frankly, thats fine, because shit like that doesn’t even work properly in situations you’d use it in on Windows 90% of the time.

      EDIT: Wow, apparently it does support LOOT now, it did not a few updates ago.

      I have successfully gotten FONV working using Limo to set up uh… there’s a variant of the Viva New Vegas mod setup guide aimed at Steam Deck users, but it tells you to set up Mod Organizer 2 on the Deck… which you can do, but its rather input laggy and there are other inconveniences…

      Here it is, Mirelurked Viva New Vegas:

      https://ashtonqlb.github.io/mirelurked-vnv/intro.html

      I had to alter a few steps from this to get it working with Limo, but they were basically just… set up Limo instead of MO2, and you have to handle NVSE a bit differently, because it literally replaces/overrides the entire main game exe.

      I have also used Limo to mod Cyberpunk 2077, works with more in depth frameworks like CET, RedExt, etc, as well as using the Decky Framegen plugin to insert FSR 3.1 Upscaling and Framegen into CP77, which gives better quality and fps than the official FSR 2 and 3 implementations that come with the vanilla game and are vanilla supported on a Deck.

      You basically just have to launch the vanilla game via the normal launcher first, check the ‘enable mods’ switch, fully load the game…

      Then you can set up the Framegen mod, which adds a custom command in steam to the launch parameters… and then you can also setup the ‘skip intro’ mod, which is reliant on both the mod being present, as well as additional command line parameters…

      There are a bunch of reddit posts complaining that the FrameGen mod doesn’t allow other additional launch arguments, but they are wrong.

      All you have to do is append those additional launch args … at the end of the FrameGen mod’s launch arg. This just doesn’t seem to be explicitly documented anywhere, by anyone… I may have been the first person to figure this out?

      Anyway, after that bit of silliness, setting up other mods for CP 77 using Limo is fairly straightforward.

      … I am doing all this on Bazzite on a Deck, but you could do it on… presumably any linux distro that supports flatpaks and proton (the translation layer that allows Windows games to run on Linux).

      There will always be a few ‘weird’ mods that are just totally reliant on a whole bunch of Windows specific things to work, or just cannot be made to work without actually overwriting some core game files in the main, real directory itself…

      And, some of these mods will require a windows component dependency, like vc_2017 or vc_2022, you set those up with something like ProtonTricks or SteamTinkerLaunch to modify the proton config per game, instead of trying to install the exe system wide as 99% of the windows oriented mods will tell you to do…

      But so far, I have found either my own solutions for these cases, or someone else already has, or someone has just made basically a linux compatible equivalent for such a windows reliant mod.

      … You can also just choose to run MO2 on Linux, it will work, its just… buggy, and overlycomplicated, imo, you’ve got to set up a custom wineprefix for the MO2 UI to not do dumbshit, give it thr dependencies it needs, and then you’ve got to do this for each different game you want to mod with MO2.

      I found that Limo is sufficiently capable and much less hassle to use once you take the time to understand its differences from MO2.

      EDIT:

      Also, for anti virus, ClamAV exists. I… think it is literally the only AV for linux?

      • @AlligatorBlizzard@sh.itjust.works
        link
        fedilink
        3
        edit-2
        19 days ago

        Ooh, Limo has a Flatpak? Nice. I’m running Bazzite on my laptop and have been wanting to play FNV for the first time but I’ve got it on Epic through Heroic Launcher. I’m guessing the file paths will be different but it should otherwise mod more or less the same as you said, I’ll have to try it. What kind of weird stuff did you have to do to get NVSE working?

        • @sp3ctr4l@lemmy.dbzer0.com
          link
          fedilink
          English
          219 days ago

          My FNV is through Steam… but… i think Limo does support GOG… I… would think you would, yes, have to set up your own filepaths, point it properly to where the game dir is, and it… should work?

          You can launch a game from Limo, like, I do test runs of that in desktop mode on my Deck…

          But the way the deployer system works is that you click deploy… and the even if you launch the game from some other way, like via Steam, in game mode on the deck, or… presumably via Heroic… it just now is the modded game. To revert, undeploy in Limo, and then either play vanilla, or swap to another modset profile and deploy that.

          For NVSE, I just literally did the old school method of go into the real game dir, rename the main exe to .exe.old, and then rename the NVSE exe to the proper FONV game exe’s name.

          That and manually install the dlls and other files that come with NVSE into the real dir.

          This isn’t much of a problem with older games, but with newer games, that method would potentially be undone by ongoing update patches.

          This is the kind of ‘some mods you just have to manually install’ thing… but in fairness… most of the time those mods are the same way on Windoes as well, unless some kind of mod manager goes far out of their way to specifically support that exact mod.

  • @megamaxsteele@lemmy.ca
    link
    fedilink
    English
    120 days ago

    So I’m going to caveat this that I’m not an expert so if I get some details wrong, people should correct me.

    Your ability to play games will be effected to some degree, but not as much as it used to be. Because of Valve’s work on Proton, about 80% of the games on steam work. You can usethis website to check a community maintained list. Most of the remaining games that don’t work are games that the developer went out of their way to not work on linux. This is usually by having an anticheat that doesn’t work with linux, or not enabling linux support for an anticheat that does. For playing games not on steam, it requires a bit more effort, but there is Lutris and Heroic for that. Feel free to look into them or ask for more information.

    For modding, I don’t have as much experience but I have done it and you can. I think how well it works varies game to game, but then again, modding is like that anyway. One piece of advice I’ve heard is that if you are going to be molded, make the folders not case sensitive. This is because on windows folder names aren’t case sensitive, but on linux they are. EG /Folder/ vs /folder/ are the same on windows, and by default different on linux.

    For software without a linux version, you can usually find an open source or web app alternative. Microsoft Word doesn’t have a linux version, but you can use Libre office, or use the browser version of it, or use Google Docs. For most intents and purposes, this is what you should do. However, you can use a program called WINE to run a lot of Windows software on linux. WINE is what Proton(see first paragraph) is derived from. Similar to Proton, there are limitations, but most come from the developer side these days from my understanding.

    The good news is the .NET is on linux, officially supported. I habent checked in a while but i dont think its at 100% parity yet. And a good amount of software frameworks are also available. I’ve never run into a library or framework that didn’t work on Linux that doesn’t have a good alternative that does, but I’m not the most avid programmer so someone more experienced can chime in.

    All versions of Linux have a program called a package manager, the specific one varies(apt, yum, etc), but they are the primary way you install software one linux. They are like an app store. It installs the software for you and updates it when you tell it to. Core system packages, like the kernel, are also updated through the package manager. Most of the time there is a GUI version or wrapper for package managers in case you aren’t fond of using the terminal.

    So this is another area where I don’t know too much on, but my understanding that linux has fewer viruses and it being open source is a double-edged sword. There are fewer viruses for desktop linix because of the smaller user base. Why would someone making software to harm people not aim for the platforms with larger user bases like windows and Mac? This being said, I think there are more viruses for servers that target linux because of the dominance of it in that space. As for being open source being a double-edged sword, this means security exploits are easier to find because there are more people looking at the code. Both by those who wish to patch them and those who want to exploit them. All my friends and I don’t use an anti-virus on our linux machines and just keep them up to date, but there does exist anti-virus for linux.

    GPU driver are reliable in my experience, but more so for AMD. NVIDIA has proprietary drivers that some distributions don’t let you install for ideological reasons, but they do work most of the time. My computer does run NVIDIA and while I have had issues getting started with the drivers its usually not a problem agyer you get past that stage. Again, AMD is better here and basically painless.

    Not to my knowledge, no limux can’t damage your hardware. But I’ll leave this for someone with more knowledge than me.

    The distro I tell beginners to start with is Mint. Installing NVIDIA drivers was easiest on that from my experience, and largely just works out of the box. It has a windows like UI but this is both a good and a bad thing. Good that it will be familiar; bad that you will sometime fall into windows behavior that doesn’t make sense on linux. In the past ubuntu filled this niche, and mint is based on ubuntu, but canonical, the company behind ubuntu, has made some questionable choices.

    Anyway wish you the best of luck and welcome to the linux community.

  • @PerogiBoi@lemmy.ca
    link
    fedilink
    3
    edit-2
    20 days ago

    Your questions will have different answers depending on which flavour of Linux you choose.

    A good chunk of windows programs can be run using a program called “WINE”. WINE is just a command line program but you can get a GUI version easily.

    Updates depend on your flavour but Debian based Linux (like Ubuntu) you just type “sudo apt get update” and then “sudo apt get upgrade” and bam everything is updated. No restart required.

    If a program doesn’t work in Linux there can be workarounds or alternatives but that really depends on what program you are talking about.

    You can play almost every game that exists on steam on Linux with the exception of games that have kernel level anti cheat like some competitive multiplayer games.

    You’re arguably safer security-wise on Linux. Most people are on windows so that’s the majority of all viruses. Your security updates are included in system updates. No antivirus required.

    I have never heard of Linux damaging hardware. I don’t think you need to worry about this.

    Recommendation: get Bazzite. It’s a special type of Linux that is closest to a windows experience than anything else. It won’t let you do dumb things and mess up your install. It has all NVIDIA drivers preinstalled as well as gamepad drivers and everything you’d need for gaming (including dock support). It’s a no configuration needed OS. Linux on easy mode. You don’t even need to use the command line ever. Updates and apps are installed through the Linux equivalent of the Microsoft App Store (except this time it is great and doesn’t suck). And I say this as someone who only used windows until 15 years ago I messed around with Ubuntu and other Debian based Linux distributions.

  • @slacktoid@lemmy.ml
    link
    fedilink
    English
    219 days ago

    Will my ability to play games be significantly affected compared to Windows?

    Most if not all single player games will work without an issue on steam thanks to its integration with proton, if you use something else you can use lutris to fill in the gaps there.

    Can I mod games as freely and as easily as I do on Windows?

    I see no reason why you can’t. Hopefully someone else can elaborate on that as I haven’t done that in forever.

    If a program has no Linux version, is it unusable, or are there workarounds?

    It can be unusable. There could be workarounds but that would depend on how dirty you want your hands to get. You can install windows on a docker container and use that to fill in the blanks if needed. There would also be some linux alternatives of some apps which would be worth investigating and learning.

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    I think dot net has been open sourced but you can get dot net apps using Mono.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    You use the package manager, which varies based on linux distro/flavor. It’s your best friend and you’ll get 90% of your apps that way too. Upgrading depends on whether you are using a stable distro which is like say windows 7 and you’ll have to upgrade to windows 8 (omg lol) you’ll have to follow the procedure of your distro, It’s usually well documented and should be fairly easy if your sticking to the flavor of Linux you’re using. If you’re using a rolling distro/flavor then you’ll just keep your packages up to date regularly via the package manager. Be warned sometimes you’ll have 300+ packages to upgrade so if internet is spotty may not be your thing. But it’s a great way to ensure you’re getting the most out of your new exotic hardware.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    Use clamav, make it watch the home directory /home as that’s where you as the user have the privilege to write data to. Never run as root unless you’re going to be extra careful. Also don’t run scripts you don’t understand or aren’t well maintained in a public repo (at that point you as a newbie would be relying on community to determine if something is good or bad think of it as the upvote and downvote system but with more transparency)

    Are GPU drivers reliable on Linux?

    Yes, even the nvidia drivers are reliable. Just a pain as you’ll have to reinstall the kernel module, the component that integrates the driver into your new kernel, after you upgrade kernel versions. Kernel is the thing that does all the low level handling of your devices.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    Most hardwares/processors now are designed with failsafes to throttle when there’s not enough cooling. Please elaborate a little on this. You can break software but I think hardware should not be. Hopefully someone can elaborate as well.

    And also, what distro might be best for me?

    Linux mint, it is well documented, doesn’t have the snaps that Ubuntu is pushing, its user friendly. Similarly fedora. You can try one of those immutable distros which may give you a more stable experience as it rolls back to a stable state on an update failure.

    • UnfortunateShort
      link
      fedilink
      English
      319 days ago

      Linux basically cannot damage hardware in any way that Windows couldn’t. The hardware/firmware decides what interfaces it offers and what you can configure. If any hardware puts these roadblocks only in the driver or some UI, and (for whatever reason) only the Windows version, I guess you could.

      Would be a really strange thing to do tho, since most just implement a generic driver that works everywhere and then at most an interface on top of that.

      • @slacktoid@lemmy.ml
        link
        fedilink
        English
        119 days ago

        Makes sense. That’s what I thought but unknown unknowns so didn’t wanna speak definitively

    • methodicalaspect
      link
      fedilink
      English
      219 days ago

      If you use a distro with the nvidia drivers preinstalled, or you get the drivers set up with dkms, you don’t need to reinstall the driver with every kernel update.

      Pop!_OS has the drivers in their repo and they get applied during system updates like any other package; I’m sure this is the case with Bazzite as well.

      I use AlmaLinux at home with the driver from nvidia’s site (yes, I’m aware that rpmfusion exists), and have never had to reinstall the drivers as the installer configures dkms to do it every time the kernel is updated. Same with my Plex server (Debian, Quadro P2200) and my office workstation (Arch, Quadro P600).

      • @slacktoid@lemmy.ml
        link
        fedilink
        English
        219 days ago

        Oh yes DKMS is a life saver. I need to get that setup for myself. Maybe push a slackbuild for it too.

        I’ve not used nvidia drivers on anything but Slackware so I have no idea how it works and honestly it doesn’t make sense to my simple head.

        A fellow selfhoster!! How’s the almaLinux parity with redhat going? (I’m rooting for both alma and rocky)

        • methodicalaspect
          link
          fedilink
          English
          219 days ago

          I’m self hosting a lot of things, but those services are mostly on Debian. I’m daily driving AlmaLinux on my main desktop. I do a decent amount of video editing using DaVinci Resolve Studio, and while I’ve consistently gotten it working on Pop!_OS and EndeavourOS, I couldn’t get the Micro Color Panel working on anything other than the CentOS successors. I tried manipulating udev rules, sniffing USB traffic, etc but it just wouldn’t go on anything else. The product was fairly new to market when I bought it so the body of knowledge may have changed since then.

          Blackmagic Design officially supports Resolve and Reaolve Studio on Linux, but only on their lightly preconfigured version of Rocky 8. Everything else is best-effort, so I started with the Blackmagic ISO, converted it to AlmaLinux 8.6, and then upgraded to 9, and the Micro Color Panel still works.

          I also love that my external disk array works with every kernel update because the kernel’s so old. I keep all my originals on an 8-disk ZFS array connected to a cross-flashed Dell PERC H810. Endeavour and Pop sometimes go beyond the kernel versions supported by zfsonlinux, and editing the source code of a file system is not something I’m particularly comfortable with.

          Also, every game I’ve played on it works, though I mainly play single-player titles.

          As for parity: I’ve got several hundred VMs at the office on Rocky, and maybe a dozen on Alma, and both are running flawlessly. They’ve been as solid as the RHEL physical machines. Quite happy with all of them, to be honest.

  • Eugenia
    link
    fedilink
    English
    -120 days ago

    Will my ability to play games be significantly affected compared to Windows?

    Not greatly. The games that have anti-cheat won’t work on Linux. Anti-cheat is a security problem anyway (because they circumvent the kernel policies) and so linux will never support these.

    Can I mod games as freely and as easily as I do on Windows?

    for the ones that work yes. There’s a list of how well games work on linux, there’s a website for that.

    If a program has no Linux version, is it unusable, or are there workarounds?

    For some “difficult” non-anti-cheat games there are some workarounds. If we’re talking about apps and not games, then it’s best to use the Linux equivalents, and forget the Windows ones.

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    While there’s WINE and .NET for Linux, Windows apps don’t really work well. They usually break on new wine versions, or they don’t work at all. For apps, use Linux native apps. Games generally work better than apps because they don’t use too many of the Windows APIs (they’re mostly 3D stuff, and not app apis).

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    It depends on the distro. Some distros have graphical front ends, some you have to use the terminal to update the OS.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    There’s ClamAV, and also you should be turning the firewall On (some distros come with it, others you have to install it manually). Don’t downloads random binary packages, only from the distro itself, or official packages.

    Are GPU drivers reliable on Linux?

    Overall, yeah… but it does depend on the version of the driver, distro you’re using, hardware etc. I use Intel graphics cards (dedicated) because I find their drivers to be more mature than nvidia’s, for example.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    Very unlikely, near zero.

    And also, what distro might be best for me?

    Everyone is recommended to start with Linux Mint, because it’s the distro with the most GUI front-end tools to do stuff. Yes, there are some distros that are more game-oriented, but they expect the user to know what they’re doing. Start with Mint.

  • @GeraltvonNVIDIA@lemmy.ml
    link
    fedilink
    119 days ago

    If you have any App you used before and isnt available on Linux: You can try to install the .exe-file with a Tool named “Bottles”.

    Each Programm you run with that tool gets its own virtual Space, so if you mess something up, you can throw that one bottle away and just create another in its fresh New environment.

    It has a clean UI and you can play with all kinds of different configs to get your Bottle to run. You can choose between different Windows Versions for example.

    Under the hood it uses Wine and Proton.

    Pro-Tip: Start Programms via the UI in “Terminal-Mode” so you can See potential Error-Messages which you would normally not see, if you just run the Programm.

  • oni ᓚᘏᗢ
    link
    fedilink
    -1
    edit-2
    19 days ago

    The are plenty answers already, but also I will respond in order to give you more opinions, so, you can have a more open view about what users do think about linux.

    Will my ability to play games be significantly affected compared to Windows?

    Yes. In windows you put the .exe in some folder and then double click to play it, easy. Nowadays games come with a client, like Rockstar Social Club, or the Ubisoft launcher that handles your account and manages game updates. In linux, even if you had only the .exe you still had to make an uncertain number of tweaks to achieve running the game, but, with the clients, you need to do both, find the correct tweaks to run the client and do the correct tweaks to run the game next. Even with modern solutions, like Proton, we strugle with games running in Linux. See there are no silver bullets.

    Can I mod games as freely and as easily as I do on Windows?

    If you find trouble modding games on Windows, you also will have a bad time in linux.

    If a program has no Linux version, is it unusable, or are there workarounds?

    You can use WINE to give it a shot. There is a probability that works very well. But, like games, you will need to make tweaks to work properly. I had this problem with Rufus, there is not linux version, so you can run it with WINE, the problem is that Rufus under WINE doesn’t reconogize your usb pendrives. Till this day I do not know how to fix that.

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    Thankfully we have dotnet core now, the thing is that the library or software must have been compiled with it to work in linux. There is also Mono.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    If you use a distro, like Linux Mint, there will be a job that will check for updates and then warn you. Normally, updates are done manuallly (sudo apt-get update, for example). The other thing is doing your own update script job that runs automatically weekly or monthly.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    This is a computers knowledge concern, most linux distribution have this disabled by default. Your resposability as linux administrator is set up your own security metrics. I use fail2ban, ufw, clamav and openssh. Very basic, if you ask me.

    Are GPU drivers reliable on Linux?

    With AMD hell yes. But, since I have never used Nvidia before my answer here could not be the most valuable, empirically speaking.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    The most probably thing that can happen to you is break your boot system. Hardware will be fine and you can always reinstall Linux/Windows with its default boot.

    And also, what distro might be best for me?

    As you want to play games, and, I do imagine that you also want linux as you main PC, I would recommend Linux Mint to start, all the documentation avaible for debian easily apply for Linux Mint, I mean, if you can’t find some specific solution in the Linux Mint documentation.

    My last two cents are the next ones: if you can, use windows just to play things and use linux for everything else. It works for me and may work with you. Cheers.

  • @Briaaahn@lemm.ee
    link
    fedilink
    English
    115 days ago

    I just made the swap the other day. I figured there would be a huge learning curve but theres really not. I been on the steam deck for a couple years now and I realized all the games I play run on linux. Im using bazzite and its set up for gaming comes with steam and lutris for non steam stuff.

  • @Geodad@lemm.ee
    link
    fedilink
    English
    320 days ago

    #1 was true more in the late 90s to early 00s. The operating system has matured quite a bit since then.

    I love Debian, but I hear a lot of people suggesting Linux Mint for new users. If you’re afraid of committing to a change, grab a cheap used system to try it out. Just know that if you have better hardware, itbwill really shine.

  • IHave69XiBucks
    link
    fedilink
    0
    edit-2
    20 days ago

    Will my ability to play games be significantly affected compared to Windows?

    Not significantly as long as you are on the right distro for it.

    Can I mod games as freely and as easily as I do on Windows?

    no. mod managers can work but its definitely not as easy. If you use steam workshop it works great usually, but something like vortex is gonna be a pain in the ass.

    If a program has no Linux version, is it unusable, or are there workarounds?

    You can run windows programs with wine. It’s not that difficult to do. Its how games work on Linux that dont have linux support.

    Can Linux run programs that rely on frameworks like .NET or other Windows-specific libraries?

    Usually you can get it to work. I have run across some specific programs for my job that simply wont work with wine, but they barely work on windows as it is. It may need fiddling with tho.

    How do OS updates work in Linux? Is there a “Linux Update” program like what Windows has?

    Sometimes. It depends on the distro. Mint has an updater where you click update and ur done basically. Others you go in and do a terminal command which changes by package manager. For like OS version jumps if your not on a rolling release distro then it can be a bit of a bigger job. I recently updated my computer from Debian Bookworm to Debian Trixie. I went into the sources replaced bookworm with trixie, and ran the full upgrade command. Then rebooted and had to ctl alt f4 into terminal nuke gnome and reinstall that. Which is expected in that case. It can be a bit techy at times for something like that but for a normal update on a distro with a GUI updater its a button click. Usually no reboot needed either.

    How does digital security work on Linux? Is it more vulnerable due to being open source? Is there integrated antivirus software, or will I have to source that myself?

    Dont download shit you shouldnt download. If your not sure if something has a virus or not you can get tools to scan for them, but windows is similar in that your main protection is just not doing something dumb. You can keep regular backups and if somehow you mess something up or get a virus just restore from it. PikaBackup works well.

    Are GPU drivers reliable on Linux?

    AMD is flawless usually. Nvidia i dont use but hear it can be more of a hassle. With AMD the drivers will come preinstalled with your distro usually. Some do Nvidia too some dont. There is an open source and proprietary nvidia driver you have to pick which one you want. Id research it for your specific card.

    Can Linux (in the case of a misconfiguration or serious failure) potentially damage hardware?

    No more than windows can. If you try to overclock without proper cooling or something for example. Thats BIOS stuff usually tho not an OS thing.

    And also, what distro might be best for me?

    Maybe Nobara since you like gaming? Or Linux Mint its beginner friendly.