Extend using another drive [duplicate]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
This question already has an answer here:
How to set up multiple hard drives as one volume?
3 answers
I have a very small drive holding my OS. it's built in to my device, so I can't swap it out for a better one.
I would like to do something like use symbolic links, but rather than replacing them, basically merge the two disks, if possible. I've tried using symbolic links and that didn't work at all. is there something similar, but that will treat two directories as the same one?
symbolic-link
New contributor
marked as duplicate by Pablo Bianchi, WinEunuuchs2Unix, karel, Fabby, Charles Green 11 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to set up multiple hard drives as one volume?
3 answers
I have a very small drive holding my OS. it's built in to my device, so I can't swap it out for a better one.
I would like to do something like use symbolic links, but rather than replacing them, basically merge the two disks, if possible. I've tried using symbolic links and that didn't work at all. is there something similar, but that will treat two directories as the same one?
symbolic-link
New contributor
marked as duplicate by Pablo Bianchi, WinEunuuchs2Unix, karel, Fabby, Charles Green 11 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
1
Just agreed with the above duplicate with one difference: keep your/boot/
on the tiny internal disk.
– Fabby
yesterday
add a comment |
This question already has an answer here:
How to set up multiple hard drives as one volume?
3 answers
I have a very small drive holding my OS. it's built in to my device, so I can't swap it out for a better one.
I would like to do something like use symbolic links, but rather than replacing them, basically merge the two disks, if possible. I've tried using symbolic links and that didn't work at all. is there something similar, but that will treat two directories as the same one?
symbolic-link
New contributor
This question already has an answer here:
How to set up multiple hard drives as one volume?
3 answers
I have a very small drive holding my OS. it's built in to my device, so I can't swap it out for a better one.
I would like to do something like use symbolic links, but rather than replacing them, basically merge the two disks, if possible. I've tried using symbolic links and that didn't work at all. is there something similar, but that will treat two directories as the same one?
This question already has an answer here:
How to set up multiple hard drives as one volume?
3 answers
symbolic-link
symbolic-link
New contributor
New contributor
edited 2 days ago
Pablo Bianchi
3,12521636
3,12521636
New contributor
asked 2 days ago
AJ PinkAJ Pink
141
141
New contributor
New contributor
marked as duplicate by Pablo Bianchi, WinEunuuchs2Unix, karel, Fabby, Charles Green 11 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Pablo Bianchi, WinEunuuchs2Unix, karel, Fabby, Charles Green 11 hours ago
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
1
Just agreed with the above duplicate with one difference: keep your/boot/
on the tiny internal disk.
– Fabby
yesterday
add a comment |
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
1
Just agreed with the above duplicate with one difference: keep your/boot/
on the tiny internal disk.
– Fabby
yesterday
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
1
1
Just agreed with the above duplicate with one difference: keep your
/boot/
on the tiny internal disk.– Fabby
yesterday
Just agreed with the above duplicate with one difference: keep your
/boot/
on the tiny internal disk.– Fabby
yesterday
add a comment |
2 Answers
2
active
oldest
votes
From: How to merge multiple hard drives?
Use LVM (Logical Volume Management) on Linux.
You can think of LVM as "dynamic partitions", meaning that you can create/resize/delete LVM "partitions" (they're called "Logical Volumes" in LVM-speak) from the command line while your Linux system is running: no need to reboot the system to make the kernel aware of the newly-created or resized partitions.
First of all you can use fdisk
with -l
option to get info about your current "Disks", then use it to partition your "Disks" and setting the system type of those partitions to "Linux LVM", after you finish the partitioning of the "Disks", use pvcreate
to prepare your new partitions for "LVM".
For more info: https://www.howtoforge.com/linux_lvm
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
add a comment |
Unless you truly need to treat two directories as the same one (unlikely) there's no need to use symbolic links or even LVM for that matter to accomplish your goals as the `nix filesystem is designed in such a way that any storage device partition can be mounted to any place on the tree. For instance you can mount /dev/sdb1 directly to /home, /boot, /home/Videos or anywhere where you are running out of space.
You will need to move the existing content to the new storage location prior to mounting but other than that it's a snap. I recommend using live media to boot from to perform the move.
Here's a general overview of Linux filesystem (Unix is the same or at least very similar).
Here's some more useful info from the official documentation. It details the steps necessary to move home to another device or partition. The same approach can be taken for any folder on the tree. Usually what's required is to identify the directory that's hogging the majority of your space , copy it's contents to another more roomy device, and mount that device on the previous location.
If anything about this answer is unclear, please drop me a comment and I'll clarify to the best of my ability.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
From: How to merge multiple hard drives?
Use LVM (Logical Volume Management) on Linux.
You can think of LVM as "dynamic partitions", meaning that you can create/resize/delete LVM "partitions" (they're called "Logical Volumes" in LVM-speak) from the command line while your Linux system is running: no need to reboot the system to make the kernel aware of the newly-created or resized partitions.
First of all you can use fdisk
with -l
option to get info about your current "Disks", then use it to partition your "Disks" and setting the system type of those partitions to "Linux LVM", after you finish the partitioning of the "Disks", use pvcreate
to prepare your new partitions for "LVM".
For more info: https://www.howtoforge.com/linux_lvm
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
add a comment |
From: How to merge multiple hard drives?
Use LVM (Logical Volume Management) on Linux.
You can think of LVM as "dynamic partitions", meaning that you can create/resize/delete LVM "partitions" (they're called "Logical Volumes" in LVM-speak) from the command line while your Linux system is running: no need to reboot the system to make the kernel aware of the newly-created or resized partitions.
First of all you can use fdisk
with -l
option to get info about your current "Disks", then use it to partition your "Disks" and setting the system type of those partitions to "Linux LVM", after you finish the partitioning of the "Disks", use pvcreate
to prepare your new partitions for "LVM".
For more info: https://www.howtoforge.com/linux_lvm
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
add a comment |
From: How to merge multiple hard drives?
Use LVM (Logical Volume Management) on Linux.
You can think of LVM as "dynamic partitions", meaning that you can create/resize/delete LVM "partitions" (they're called "Logical Volumes" in LVM-speak) from the command line while your Linux system is running: no need to reboot the system to make the kernel aware of the newly-created or resized partitions.
First of all you can use fdisk
with -l
option to get info about your current "Disks", then use it to partition your "Disks" and setting the system type of those partitions to "Linux LVM", after you finish the partitioning of the "Disks", use pvcreate
to prepare your new partitions for "LVM".
For more info: https://www.howtoforge.com/linux_lvm
From: How to merge multiple hard drives?
Use LVM (Logical Volume Management) on Linux.
You can think of LVM as "dynamic partitions", meaning that you can create/resize/delete LVM "partitions" (they're called "Logical Volumes" in LVM-speak) from the command line while your Linux system is running: no need to reboot the system to make the kernel aware of the newly-created or resized partitions.
First of all you can use fdisk
with -l
option to get info about your current "Disks", then use it to partition your "Disks" and setting the system type of those partitions to "Linux LVM", after you finish the partitioning of the "Disks", use pvcreate
to prepare your new partitions for "LVM".
For more info: https://www.howtoforge.com/linux_lvm
answered 2 days ago
WinEunuuchs2UnixWinEunuuchs2Unix
47.7k1192185
47.7k1192185
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
add a comment |
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
LVM is typically set up upon installation. You may want to link an ubuntu wiki article for converting existing system to lvm
– Sergiy Kolodyazhnyy
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
@SergiyKolodyazhnyy I voted along to close as dup instead...
– WinEunuuchs2Unix
2 days ago
add a comment |
Unless you truly need to treat two directories as the same one (unlikely) there's no need to use symbolic links or even LVM for that matter to accomplish your goals as the `nix filesystem is designed in such a way that any storage device partition can be mounted to any place on the tree. For instance you can mount /dev/sdb1 directly to /home, /boot, /home/Videos or anywhere where you are running out of space.
You will need to move the existing content to the new storage location prior to mounting but other than that it's a snap. I recommend using live media to boot from to perform the move.
Here's a general overview of Linux filesystem (Unix is the same or at least very similar).
Here's some more useful info from the official documentation. It details the steps necessary to move home to another device or partition. The same approach can be taken for any folder on the tree. Usually what's required is to identify the directory that's hogging the majority of your space , copy it's contents to another more roomy device, and mount that device on the previous location.
If anything about this answer is unclear, please drop me a comment and I'll clarify to the best of my ability.
add a comment |
Unless you truly need to treat two directories as the same one (unlikely) there's no need to use symbolic links or even LVM for that matter to accomplish your goals as the `nix filesystem is designed in such a way that any storage device partition can be mounted to any place on the tree. For instance you can mount /dev/sdb1 directly to /home, /boot, /home/Videos or anywhere where you are running out of space.
You will need to move the existing content to the new storage location prior to mounting but other than that it's a snap. I recommend using live media to boot from to perform the move.
Here's a general overview of Linux filesystem (Unix is the same or at least very similar).
Here's some more useful info from the official documentation. It details the steps necessary to move home to another device or partition. The same approach can be taken for any folder on the tree. Usually what's required is to identify the directory that's hogging the majority of your space , copy it's contents to another more roomy device, and mount that device on the previous location.
If anything about this answer is unclear, please drop me a comment and I'll clarify to the best of my ability.
add a comment |
Unless you truly need to treat two directories as the same one (unlikely) there's no need to use symbolic links or even LVM for that matter to accomplish your goals as the `nix filesystem is designed in such a way that any storage device partition can be mounted to any place on the tree. For instance you can mount /dev/sdb1 directly to /home, /boot, /home/Videos or anywhere where you are running out of space.
You will need to move the existing content to the new storage location prior to mounting but other than that it's a snap. I recommend using live media to boot from to perform the move.
Here's a general overview of Linux filesystem (Unix is the same or at least very similar).
Here's some more useful info from the official documentation. It details the steps necessary to move home to another device or partition. The same approach can be taken for any folder on the tree. Usually what's required is to identify the directory that's hogging the majority of your space , copy it's contents to another more roomy device, and mount that device on the previous location.
If anything about this answer is unclear, please drop me a comment and I'll clarify to the best of my ability.
Unless you truly need to treat two directories as the same one (unlikely) there's no need to use symbolic links or even LVM for that matter to accomplish your goals as the `nix filesystem is designed in such a way that any storage device partition can be mounted to any place on the tree. For instance you can mount /dev/sdb1 directly to /home, /boot, /home/Videos or anywhere where you are running out of space.
You will need to move the existing content to the new storage location prior to mounting but other than that it's a snap. I recommend using live media to boot from to perform the move.
Here's a general overview of Linux filesystem (Unix is the same or at least very similar).
Here's some more useful info from the official documentation. It details the steps necessary to move home to another device or partition. The same approach can be taken for any folder on the tree. Usually what's required is to identify the directory that's hogging the majority of your space , copy it's contents to another more roomy device, and mount that device on the previous location.
If anything about this answer is unclear, please drop me a comment and I'll clarify to the best of my ability.
answered yesterday
Elder GeekElder Geek
27.5k1055130
27.5k1055130
add a comment |
add a comment |
Symbolic links are the way to go here. Why do you say it didn't work at all?
– Jos
2 days ago
because It didn't work for replacing /bin...
– AJ Pink
2 days ago
1
Just agreed with the above duplicate with one difference: keep your
/boot/
on the tiny internal disk.– Fabby
yesterday