What’s the best way to use a 256 GB SSD and 1 TB HDD with Fedora?

0
5
Asked By MellowCedar27 On

I'm moving from Windows 11 to Fedora and want to use my two drives efficiently. I have a 256 GB SSD and a 1 TB HDD. Previously, Windows and frequently used applications were installed on the SSD, while the HDD contained my documents, downloads, work files, and large games. The HDD was divided into separate data and work partitions. Do I need a similar partition layout in Linux, or would another arrangement be better? Ideally, I'd like Fedora and frequently used applications on the SSD, with larger files, games, and less frequently used data on the HDD. What partition and mount-point setup would be practical for a beginner?

4 Answers

Answered By QuietMaple34 On

Fedora commonly uses compressed RAM swap (zram), so you usually do not need to create a traditional swap partition on the HDD. If you later need hibernation, swap has to be configured specifically for that, and putting it on a hard drive will be slow. Also, do not manually move random system directories to the HDD; keep the operating system files together on the SSD and use a mounted data filesystem for large personal files.

Answered By PixelHarbor42 On

Use the SSD for Fedora, applications, and games where loading speed matters. Use the HDD for documents, media, backups, downloads, and games you do not play often. Modern games can run from an HDD, but loading times and asset streaming may be noticeably worse. Keep some free space on the SSD so system updates and applications have room; filling it completely can cause problems. You can choose the HDD as the library location inside game launchers instead of moving the whole operating system there.

MellowCedar27 -

I was worried that installing games on the SSD would leave too little space for Fedora. I’ll keep free space available and put the largest or least-used games on the HDD.

Answered By CobaltLynx61 On

You can create a separate /home partition on the HDD, but it is not required and it makes the system depend on that drive for user settings and files. A safer beginner layout is to keep /home on the SSD and create a separate HDD data partition, then store large folders there or use symbolic links for directories such as Games, Videos, or Downloads. If the HDD fails or is disconnected, the operating system will still boot normally. Back up important files regardless of the layout.

Answered By RiverQuill8 On

During Fedora installation, put the EFI system partition and the main system filesystem (/) on the SSD. You do not need Windows-style drive letters or several partitions just to separate ordinary files. Fedora can use the HDD as a separate filesystem mounted somewhere such as /mnt/storage, or you can mount it as /home if you want most personal files there. Mount points are the Linux equivalent of telling the system where a partition belongs. For a beginner, the simplest setup is usually Fedora on the SSD and one large data partition on the HDD, then save or move large folders and game libraries there.

MellowCedar27 -

That sounds simpler than recreating separate C:, D:, and E: drives. I mainly want the system on the SSD while keeping documents, downloads, and large installations on the HDD.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.