How can I increase storage space for my /home directory?

0
4
Asked By TechWhiz93 On

I'm trying to figure out how to transfer storage from the / directory on one drive to my smaller /home directory on a different drive. Any suggestions on how to go about this?

2 Answers

Answered By LinkWizard88 On

Why not try setting up a symbolic link? You can use the *ln* command to point to your files elsewhere. For example, if you want to link files from /opt/share/godzilla to /home/fred/monsters, you would run:

*cd ~*
*ln -s /opt/share/godzilla monsters*

This creates a link so when you go to /home/fred/monsters, you see the contents of /opt/share/godzilla instead!

CuriousCat11 -

What exactly does that do? Does it actually move the files or just create a link?

Answered By StorageSeeker77 On

Have you thought about using Logical Volume Management (LVM)? It’s a great way to manage disk storage and could help you combine space from both drives efficiently.

DriveGuru44 -

Considering LVM is a solid choice; you could also just mount additional storage into a subdirectory within /home for a quick fix.

FileMaster22 -

Just a heads up, this isn't a virtual machine setup!

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.