We asked our readers what they think of Windows 11's forced Microsoft account requirement, and the answer is clear. Too bad it's not on the official list of improvements coming to the OS in 2026.
Since all of the “Linux is easy” folk are here I’ll ask a question even though I’m not near my PC:
I’m dual booting W11 and ZorinOS, I have 3 drives and only the OS drive mounts at boot. The other 2, games SSD and a storage HDD, have to mounted manually. An online search yielded that this was “expected behaviour” and “how it’s designed to work” but unfortunately it confuses Steam each time I boot because as far as Steam is concerned the drive ceases to exist.
Has anyone else had the same issue? I think I could use crontab to mount the drives at boot but it seems like something that shouldn’t be happening at all.
Not sure what you searched for to get those answers, all I had to search was “Linux mount at boot” to get this answer with directions for editing /etc/fstab or using the gnome disk utility gui based on your preference
this was the only confusing thing I found withWheb I started using Linux, but once I got my drive mounting at boot at startup.
I don’t have any problem with doing it anymore but why don’t beginner friendly distros have like a gui version or something easier to do that with for new users?
You can mount your drives on boot in fstab (/etc/fstab). This is only a low-key pain in the ass, and it’s probably a good thing your internally installed drives won’t change very often.
If whatever method you use to mount them outright requires using the full mount command, possibly with a shitload of parameters attached, you can also do it on boot as a cron job that fires on boot (crontab -e) by prefacing the command with @reboot rather than the usual set of time parameters. This is how I handle e.g. mounting complicated network shares on my servers. This will fire before you even get to your login screen, so the drives ought to be accessible by the time Steam has to do whatever it does.
I had to figure this out the hard way because everywhere I asked the question I’d get told how I was wrong and it’s good actually. So good luck finding anything helpful for your specific install. I will share with you some links that kinda got me there. I had to figure out most of the steps individually and piece them together from multiple sources.
I’m not sure sure how relevant those links will be as I was trying to do the same on bazzite and not zorin but hopefully they help. If you are able to install gnome disks (if you haven’t already) there is a checkbox to do it for you but I forget where it is. I have a little document typed up on my PC at home that I can share with you as well when I get there later on the off chance that it is helpful.
If you have questions, ask away I’m not sure I will be helpful but I’ll do what I can.
FYI, linux seems to hate NTFS partitions and that may be a contributing factor here.
Since all of the “Linux is easy” folk are here I’ll ask a question even though I’m not near my PC:
I’m dual booting W11 and ZorinOS, I have 3 drives and only the OS drive mounts at boot. The other 2, games SSD and a storage HDD, have to mounted manually. An online search yielded that this was “expected behaviour” and “how it’s designed to work” but unfortunately it confuses Steam each time I boot because as far as Steam is concerned the drive ceases to exist.
Has anyone else had the same issue? I think I could use crontab to mount the drives at boot but it seems like something that shouldn’t be happening at all.
I mentioned previously the I had a little document written up, keep in mind this is how I did it on Bazzite so your mileage may vary but here it is.
To auto mount drives on Bazzite with KDE open terminal and type
(if you are using Gnome or already have Gnome disks installed you can skip to “open disks”)
sudo rpm-ostree install gnome-disk-utility
Wait for-ev-er…
Reboot
Open “disks”
Select your disk you want to auto mount
You’ll see an icon that looks like a window with a play symbol in it that is “Additionaal Partition Options”
Click on it and select “Edit Mount Options”
You may or may not have to toggle user session defaults
Check the box that says mount on startup
Enter your password if asked and reboot to verify.
Not sure what you searched for to get those answers, all I had to search was “Linux mount at boot” to get this answer with directions for editing /etc/fstab or using the gnome disk utility gui based on your preference
Not sure, but I’ll give that a go this weekend when I have some time to play around with it. Many thanks!
this was the only confusing thing I found withWheb I started using Linux, but once I got my drive mounting at boot at startup.
I don’t have any problem with doing it anymore but why don’t beginner friendly distros have like a gui version or something easier to do that with for new users?
The hard part is knowing exactly what language to search to get the result you want.
You can mount your drives on boot in fstab (/etc/fstab). This is only a low-key pain in the ass, and it’s probably a good thing your internally installed drives won’t change very often.
If whatever method you use to mount them outright requires using the full
mountcommand, possibly with a shitload of parameters attached, you can also do it on boot as a cron job that fires on boot (crontab -e) by prefacing the command with@rebootrather than the usual set of time parameters. This is how I handle e.g. mounting complicated network shares on my servers. This will fire before you even get to your login screen, so the drives ought to be accessible by the time Steam has to do whatever it does.I had to figure this out the hard way because everywhere I asked the question I’d get told how I was wrong and it’s good actually. So good luck finding anything helpful for your specific install. I will share with you some links that kinda got me there. I had to figure out most of the steps individually and piece them together from multiple sources.
https://discussion.fedoraproject.org/t/mounting-permanently-a-storage-unit-in-fedora-kde-automount-at-boot-no-password-all-users-can-see-and-edit-files/148030/15?replies_to_post_number=16
https://www.youtube.com/watch?v=Eoq_cgAWMmQ
https://universal-blue.discourse.group/t/auto-mounting-secondary-drives/970
I’m not sure sure how relevant those links will be as I was trying to do the same on bazzite and not zorin but hopefully they help. If you are able to install gnome disks (if you haven’t already) there is a checkbox to do it for you but I forget where it is. I have a little document typed up on my PC at home that I can share with you as well when I get there later on the off chance that it is helpful. If you have questions, ask away I’m not sure I will be helpful but I’ll do what I can.
FYI, linux seems to hate NTFS partitions and that may be a contributing factor here.