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.
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.
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.