The Windows filesystem: https://en.wikipedia.org/wiki/NTFS. Basically, don’t try to share the game drive with Windows.
The Windows filesystem: https://en.wikipedia.org/wiki/NTFS. Basically, don’t try to share the game drive with Windows.
If you have an AMD GPU (except for the very latest GPUs), you should be good out of the box. The AMD driver comes pre-installed with mesa.
Other than that… don’t use NTFS to store your games.
Edit: Maybe I misunderstood your question. I understood it as: What are some recommended changes to do after installing a Linux distro. Did you meant to ask about differences between distros?
Probably trying to share a Stream drive between Linux and Windows. Trying to run games from NTFS just didn’t work and resulted in all kinds of weird issues. I was close to giving up on Linux but after I switched to an ext3 partition things just started working :|
In Fedora, Discover shows this in the top right corner. It also shows the available package sources under Settings. Perhaps this is not yet available in the older Debian version of Discover. You could also just look at the version of certain software. E.g., if GIMP is version 3.x it’s a flatpak (or snap), otherwise it’s a Debian package.
The Linux Experiment recently looked into touchscreen support of different desktop enviromenents. His findings mostly align with your comment. However, this seems to be one of the rare cases where the distro matters for Gnome. Upstream Gnome (e.g., as shipped by Fedora) works fine with touch screens, but support on Ubuntu Gnome appears to be quite broken.
The Linux Experiment videos:
Yeah, the “Nvidia (GTX 9xx-10xx Series)” should be the correct driver for your GPU. It seems that both desktop and notebook GPUs used the same architecture in this case.
I think the difference is that Bazzite chooses the open source Nvidia kernel driver for the newer GPUs. That one doesn’t support the GTX 900 series, so you’ll get the older proprietary kernel driver.
Upon switching, what should I expect to change?
Many things are very similar on Linux compared to Windows (e.g. Browsing, Steam). One big difference is that people prefer using package managers to install software (instead of downloading and installing it manually).
I’m considering Pop!_OS seeing as its praised for its compatibility and easy switching.
Pop!_OS is a nice distro and it should work well for you if you like the UI. There also many other good distros if you want to play around a bit. You can easily test them using a Live ISO.
What’s the situation with gaming look like? I know gaming on Linux has been a HIGHLY discussed topic for a while, is it easy to play any (non triple-A) steam game? I’m nowhere near involved in computer science, I’d just consider myself more stubborn than most end-users so I can persevere through some basic problems.
I’d say that you can expect almost all games to work. The main exception are games with anti-cheat that decide not to support Linux. In my case, there has only been one game in the last two years that didn’t work (War Thunder crashes a lot more than on Windows). Playing AAA games is generally not an issue. You can check https://www.protondb.com/ for specific games.
Yeah, I also find it very annoying. I guess Youtube just can’t imagine that people exist who speak more than one language…
Having the option of automatic translations is fine but at least let me (globallly) disable it!
I think, currently, creators can disable it, so you can ask them to do that.
Both KDE Discover and Gnome Software offer similar functionality. You should also be able to use them without their respective shells.
I wanted to write the same thing. E.g., you can run this in bash to set the permissions for all .conf files to 600:
find /mnt/the/directory -iname "*.conf" -exec chmod 600 {} \;
Makes sense. But for an Arc B580 you’d probably want 6.12 or newer (according to https://www.phoronix.com/review/intel-arc-b580-gpu-compute). Unfortunately Linux Mint is not that great for running the very latest hardware (and especially GPUs).
Is there a particular reason that you want to update your kernel? Generally, the best idea as a new user is to stick with the default kernel that your distro provides What Stable Kernel Should I Use. Given your hardware, I’d expect that kernel 6.8 should work fine for you.
Linux Mint switched to the HWE kernel with version 22. Theferore, the kernel should be updated to 6.11 with the release of Ubuntu 24.04.2 (planned in a week).
Sorry to hear that Linux Mint is not working well for you. Unfortunately, things can sometimes still be rough when it comes to hardware support. I have personally also had issues with Nvidia GPUs and Bluetooth. Often this is because the manufacturers only provide drivers for Windows and Linux drivers need to be created by the community.
Regarding Nvidia and secure boot. I’ve had the same issue (on both Mint and other distros). After some frustrations (including a BIOS update) I finally gave up and disabled secure boot. Since then, I haven’t had any issues with my dual boot with Win 10 (but I probably won’t buy another Nvidia GPU). What makes you say that Windows requires Secure Boot?
No I didn’t. When I installed Linux mint the first time I was able to fix everything. I needed to reinstall it and that is where this controller issue started
This seems quite weird. Are you perhaps missing a package (e.g. steam-devices)?
Forgejo became a hard fork about a year ago: https://forgejo.org/2024-02-forking-forward/ And it seems that migration from Gitea is only possible up to Gitea version 1.22: https://forgejo.org/2024-12-gitea-compatibility/
Yes, I would recommend creating a backup (perhaps on your phone or a different computer over the network) and then upgrading to 21 and then 22. IMHO Mint has steadily gotten better and there is typically no reason to stay on an older version.
Currently, my favorite ways of running non-Steam games are the Heroic Games Launcher and Bottles. Heroic is especially nice if you have games from GOG or EGS. However, looking at ProtonDB, it seems that both DCS and Flight Sim 2024 don’t work too well on Linux. Overall it sounds like it might be challenging for you to switch to Linux, but you can always give it a try and see how much works.
Given that you installed Linux on a separate drive, it’s likely that the Windows bootloader is perfectly fine but your BIOS chooses to prioritize the Linux disk. I would check if you can still select the Windows drive / installation in the BIOS / boot media selection.
Typically, Fedora should also add the Windows installation to its bootloader (https://docs.fedoraproject.org/en-US/quick-docs/grub2-bootloader/#_adding_other_operating_systems_to_the_grub2_menu). It uses os-prober
to find other operating systems. Can you post the output of sudo os-prober
?
Edit: The output of lsblk -f
would also be useful (though you may want to anonymize it first).
This seems to be a limitation of Intel host controllers. The USB 2.0 specification (including 12 Mbps Full Speed) allows for up to 127 devices. Each of those devices can have up to 16 IN and 16 OUT endpoints, c.f. https://www.usbmadesimple.co.uk/ums_3.htm Depending on how you count, that would be a maximum of 2k to 4k endpoints in total. I guess Intel thought it wasn’t worthwhile supporting that many endpoints.
Some quick searching turned up this post that claims that USB3 controllers often support up to 254 endpoints (in total). https://www.cambrionix.com/a-quick-guide-to-usb-endpoint-limitations/ Other posters have also said that AMD appears to have higher limits. You could also consider adding more USB root hubs to your system (with PCIe cards).
I’m not quite sure what you’re trying to do here. Are you
If you’re trying to do the second one, there’s a useful guide on it here: https://omiid.me/notebook/25/move-docker-volume-to-bind-mount. The first one should be even simpler, you can just replace the volumes in the compose file by bind mounts (basically, just this step of the tutorial: https://omiid.me/notebook/25/move-docker-volume-to-bind-mount#modifying-docker-compose).