Extend using another drive [duplicate]





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1
















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?










share|improve this question









New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











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


















1
















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?










share|improve this question









New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











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














1












1








1









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?










share|improve this question









New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













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






share|improve this question









New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 days ago









Pablo Bianchi

3,12521636




3,12521636






New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









AJ PinkAJ Pink

141




141




New contributor




AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






AJ Pink is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




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



















  • 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










2 Answers
2






active

oldest

votes


















0














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






share|improve this answer
























  • 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



















0














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.






share|improve this answer






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    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






    share|improve this answer
























    • 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
















    0














    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






    share|improve this answer
























    • 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














    0












    0








    0







    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






    share|improve this answer













    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







    share|improve this answer












    share|improve this answer



    share|improve this answer










    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



















    • 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













    0














    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.






    share|improve this answer




























      0














      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.






      share|improve this answer


























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        Elder GeekElder Geek

        27.5k1055130




        27.5k1055130















            Popular posts from this blog

            GameSpot

            connect to host localhost port 22: Connection refused

            Getting a Wifi WPA2 wifi connection