While you're here, please consider supporting GamingOnLinux on:
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Steam gets new tools for game devs to offer players version switching in-game
- GOG launch their Preservation Program to make games live forever with a hundred classics being 're-released'
- Sony say their PSN account requirement on PC is so you can enjoy their games 'safely'
- AYANEO 3 now officially announced with AMD Ryzen AI 9 HX 370 and HDR OLED
- Valve dev details more on the work behind making Steam for Linux more stable
- > See more over 30 days here
-
Inspired by SSX, arcade snowboarding game Tricky Madnes…
- Linux_Rocks -
Get a fresh look at Half-Life 2 RTX in a new video plus…
- const -
Hybrid gaming controller MoveMaster has a new website, …
- fabertawe -
Avowed from Obsidian gets a release date, and pre-order…
- Jarmer -
Get a fresh look at Half-Life 2 RTX in a new video plus…
- GOL_USER - > See more comments
- Does Sinden Lightgun work?
- Linas - What do you want to see on GamingOnLinux?
- Ehvis - Steam and offline gaming
- missingno - No more posting on X / Twitter
- Liam Dawe - Weekend Players' Club 10/11/2024
- Pengling - See more posts
First a little story, I just upgraded my computer a bit and decided to reinstall Windows 10 pro but my key is invalid now and I think maby because I changed my motherboard! So now I sitting here and I want to install Manjaro KDE (used it before and I like it and have experimenting with distros for many years but want to dip my whole body in it now), So my question! How do I partison it so that I have the OS and Steam games on my 1 TB nvme SSD and pictures, downloads, documents, etc on my 2 tb hdd?
Spec:
3700x
Gigabyte aorus 570x Pro
32Gb RAM
Gtx 1080 Ti
1 TB nvme
2 TB Hdd
PS: English are not my native language!
View PC info
I'm not familiar with installing Manjaro, but assuming you want to wipe Windows 10, you would probably just choose an option like "Guided --> Use the entire disk space" or something like that in the installer.
Edit:
Partitioning is only necessary if you want to install multiple operating systems alongside each other (such as in a dual-boot setup).
Last edited by s8as8a on 20 July 2020 at 9:08 pm UTC
However, that would have your Steam library on the "wrong" drive from what you've requested, so you'd need to get your hands a bit dirtier.
You can use that as your basis but still have your Steam library on your / partition either by creating a directory there and telling Steam to use that directory for your library, or directories at a time by moving particular game directories to somewhere on your / partition and then symlinking them back to your normal Steam library location. When I had the then-standard tiny SSD and big HDD, that's what I did: I had /home on the HDD but particular games that I wanted the faster read speed got moved to /usr/local/games and then symlinked back.
Another option is to have that partition for flat data, mounted wherever you like - something like /mnt/data, say. Then symlink subdirectories from there to wherever you want to access them from. That way your data will be preserved over reinstalls, but not your settings.
View PC info
100MB boot
rest ext4 /home
with 32GB RAM and nvme you dont need a swap
do you need the 2TB for anything else? if you wanna use it on windows too i would try BTRFS and WinBTRFS drivers for windows
if it is linux only you can use ext4
Last edited by mylka on 21 July 2020 at 3:07 am UTC
I wish I found that recommendation when I was looking to switch to Linux... Most recommendations I found were 20-30 Gb, and I ran out of space in 3 month... I ended up having to reinstall everything on a 60 Gb partition for / (root), like I used to for Windows.
You're using UUIDs, which is entirely sensible and the correct thing to do. It would probably be useful, in general, to also explain why you're using UUIDs when you're already doing a detailed explanation.
The /dev/whatever device descriptions can change between boots, depending on what else happens to be plugged in and the order in which devices perk up to be counted. You don't want your machine to not mount a partition because it happens to be sdc rather than sdb this time. The UUIDs don't change between boots, since they're a property of the partition rather than something that needs to be determined each time.
A bit much for a short post, but if you're doing a long post anyway people will understand the steps a bit better if they know the reasons for them.
View PC info
Also my catch-all advice for any novice is to read good quality, boring, stable documentation and lots of it. Only then you'll be able to process more volatile info and filter through what you don't need to know.
Thus asking what you are asking and asking it here is a poor start. But ppl prefer it this way ¯\_(ツ)_/¯
Thanks Thrash_Metal_Computers with the easy step by step and pictures!
View PC info
What I would personaly do (and actually done on my main computer), would be:
Install everything including /home on ssd just ignoring the hdd like it does not exist.
Then add the hdd partition (or partitions) to the fstab mounting them on positions like /storage (not in home).
Then create folder (or folders) for the user (users), so the folders have the desired privileges.
Then create symbolic links to desired positions in my home folder to these folders for easier access.
Last edited by lucinos on 21 July 2020 at 2:02 pm UTC
You don't actually need to do either.
sudo mount -a
will mount the filesystems listed in fstab.View PC info