Linux
Welcome to c/linux!
Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!
Rules:
-
Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.
-
Be respectful: Treat fellow community members with respect and courtesy.
-
Quality over quantity: Share informative and thought-provoking content.
-
No spam or self-promotion: Avoid excessive self-promotion or spamming.
-
No NSFW adult content
-
Follow general lemmy guidelines.
view the rest of the comments
I do have 2 M.2 slots available.
Is there any hardware specification I should be pay attention to when buying for exclusive Linux use?
If I was to install one more home partition from the LMDE installation USB, would it automatically fix things for me in Grub or would I have to fix things myself before or after?
If I understand you right, you want to install two additional SSDs, one for Linux root (system), probably ext4 formatted, and one 'home' for your personal data?
If that's the case, the boot loader GRUB is going to be installed onto the system SSD and will usually automatically detect the Windows boot loader on your current, Windows only, hard drive. If it didn't, you need to toggle an option in GRUB's configuration file and run
update-grub
again.For your home-partiotion on the other SSD, there exist two options:
The home partition is Linux exclusive, probably ext4 formatted (this doesn't work with NTFS), and all your data will be stored there. Yet, afaIk, you need to install an ext4 driver in Windows to access the data when you're on Windows.
The home partition is mutually accessible. (This the setup on my wifes laptop). There it's NTFS formatted and the respective folders (
Documents
,Downloads
,Pictures
,... ) are mounted one by one usingbind
in/etc/fstab
to their Linux counterpart.Edit: I've forgot to mention that, first I created folders named Documents, Downloads,... on the new partition before being able to mount them in Linux.
After copying the data in Windows from the old folders to the new ones, the old folders can be deleted and replaced by hardlinks to their new counterparts using the Windows command line or PowerShell.
Just a possibility: Check if the m2 slot is for disk. There are many boards where there are WiFi exclusive m2 ports. For disks there are also m2 sata and m2 nvme port variations. You need to find out what yours are. Consult your motherboards technical documentation if in doubt. If the BIOS can boot from it, Linux can too.
Edit: that beeing said I never encountered problems with a similar setup ( I boot from Linux on nvme m2 then there is a combined windows /data disk)