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).
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.
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).
Yield is the percentage of chips that are functional. Roughly, you can think of it as the probability of a chip having 0 defects. The bigger the chip, or the higher the defect density, the lower this probability becomes. Chip designers will also include mitigation techniques (e.g. redundancy) to allow chips to work even with some defects.
Talking about the “yield” of a process doesn’t make any sense. Yield is a metric for a specific chip fabricated on a given process. This depends heavily on the size of the chip and mitigation techniques.
The “correct” metric to compare processes is defect density (in defects per square cm). Intel claims that their defect density is below 0.4 defects/cm²: https://www.tomshardware.com/tech-industry/intel-says-defect-density-at-18a-is-healthy-potential-clients-are-lining-up. This would be relatively high but not much worse than what TSMC has seen for their recent nodes: https://www.techpowerup.com/forums/threads/intel-18a-process-node-clocks-an-abysmal-10-yield-report.329513/page-2#post-5387835).
Unfotunately, I can help you with that. The machine is not running any VMs.
It’s possible, but you should be able to see it quite easily. In my case, the CPU utilization was very low, so the same test should also not be CPU-bottlenecked on your system.
I’m seeing very similar speeds on my two-HDD RAID1. The computer has an AMD 8500G CPU but the load from ZFS is minimal. Reading / writing a 50GB /dev/urandom file (larger than the cache) gives me:
What’s your setup?
With version 2.3 (currently in RC), ZFS will at least support RAIDZ expansion. That should already help a lot for a NAS usecase.
We use Alma Linux at work and it’s fine, I suppose. I see two main reasons why you’d choose an EL linux distro:
Apart from those, it’s a competent distro, Red Hat know what they’re doing. If you want the equivalent to an Ubuntu LTS / Debian in the Fedora world, it get’s the job done. I quite like their approach of keeping the core OS stable while updating drivers, tools, and compilers (e.g., the kernel version number has very little meaning in RHEL).
Is the experience very different from Fedora?
Yes. the age of the core packages is very noticeable. The number of fully supported packages is also very small and you need to go to EPEL very quickly (at which point you’re no longer getting enterprise support…). On the plus side, it’s much more stable than Fedora in my experience.
Edit: My main recommendation for a stable distro would probably be Debian unless one of the above points applies.
That system also sounds a lot more capable than mine. How did you end up with 25 VMs?
I’m running it in a regular mATX case (Node 804) but I think you can also get AM5 motherboards in rack-mount cases.
Perhaps my recent NAS/home server build can serve as a bit of an inspiration for you:
I don’t think it’s more efficient to separate processing and storage so I’d only go for that if you want to play around with a cluster. I would also avoid SD cards as a root FS, as they tend to die early and catastrophically.
It sounds like Proton VPN (or its repo) is causing issues for you. Given that it’s a paid service, you can probably contact their support.
Alternatively, you can also look for the repo file in /etc/yum.repos.d
, something like /etc/yum.repos.d/file_name.repo
, for Proton VPN. You can then disable it by renaming it to .repo.disabled
and try again (sudo dnf upgrade
in the terminal). Note: This is not really a permanent solution, as it will disable updates for Proton VPN.
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 {} \;