How to resize partition via command line?












1















I have Ubuntu installed on a VirtualBox VM.
How can I resize the Linux partition (not the virtual drive)?



I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.










share|improve this question



























    1















    I have Ubuntu installed on a VirtualBox VM.
    How can I resize the Linux partition (not the virtual drive)?



    I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.










    share|improve this question

























      1












      1








      1








      I have Ubuntu installed on a VirtualBox VM.
      How can I resize the Linux partition (not the virtual drive)?



      I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.










      share|improve this question














      I have Ubuntu installed on a VirtualBox VM.
      How can I resize the Linux partition (not the virtual drive)?



      I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.







      command-line partitioning resize






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 17 '18 at 2:11









      JakeJake

      1113




      1113






















          1 Answer
          1






          active

          oldest

          votes


















          0














          If you use LVM:



          1) Expand physical volume (sda3 replace by your partition name):



          sudo pvresize /dev/sda3


          2) Check free space:



          sudo vgdisplay


          3) Add space to logical volume (VG00/share replace by your LV name):



          sudo lvresize –L -r 100G VG00/share


          4) Check changes:



          sudo lvdisplay


          If you don't use LVM:



          All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).



          1) Change partition size: sudo fdisk /dev/sda3:




          • remove old partition (d)

          • create new one, bigger (n)

          • write changes (w)


          2) Expand file system:



          sudo e2fsck -f /dev/sda3
          sudo resize2fs /dev/sda3


          3) Reboot system, boot as usual.



          4) Check partitions:



          df





          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1047249%2fhow-to-resize-partition-via-command-line%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            If you use LVM:



            1) Expand physical volume (sda3 replace by your partition name):



            sudo pvresize /dev/sda3


            2) Check free space:



            sudo vgdisplay


            3) Add space to logical volume (VG00/share replace by your LV name):



            sudo lvresize –L -r 100G VG00/share


            4) Check changes:



            sudo lvdisplay


            If you don't use LVM:



            All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).



            1) Change partition size: sudo fdisk /dev/sda3:




            • remove old partition (d)

            • create new one, bigger (n)

            • write changes (w)


            2) Expand file system:



            sudo e2fsck -f /dev/sda3
            sudo resize2fs /dev/sda3


            3) Reboot system, boot as usual.



            4) Check partitions:



            df





            share|improve this answer




























              0














              If you use LVM:



              1) Expand physical volume (sda3 replace by your partition name):



              sudo pvresize /dev/sda3


              2) Check free space:



              sudo vgdisplay


              3) Add space to logical volume (VG00/share replace by your LV name):



              sudo lvresize –L -r 100G VG00/share


              4) Check changes:



              sudo lvdisplay


              If you don't use LVM:



              All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).



              1) Change partition size: sudo fdisk /dev/sda3:




              • remove old partition (d)

              • create new one, bigger (n)

              • write changes (w)


              2) Expand file system:



              sudo e2fsck -f /dev/sda3
              sudo resize2fs /dev/sda3


              3) Reboot system, boot as usual.



              4) Check partitions:



              df





              share|improve this answer


























                0












                0








                0







                If you use LVM:



                1) Expand physical volume (sda3 replace by your partition name):



                sudo pvresize /dev/sda3


                2) Check free space:



                sudo vgdisplay


                3) Add space to logical volume (VG00/share replace by your LV name):



                sudo lvresize –L -r 100G VG00/share


                4) Check changes:



                sudo lvdisplay


                If you don't use LVM:



                All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).



                1) Change partition size: sudo fdisk /dev/sda3:




                • remove old partition (d)

                • create new one, bigger (n)

                • write changes (w)


                2) Expand file system:



                sudo e2fsck -f /dev/sda3
                sudo resize2fs /dev/sda3


                3) Reboot system, boot as usual.



                4) Check partitions:



                df





                share|improve this answer













                If you use LVM:



                1) Expand physical volume (sda3 replace by your partition name):



                sudo pvresize /dev/sda3


                2) Check free space:



                sudo vgdisplay


                3) Add space to logical volume (VG00/share replace by your LV name):



                sudo lvresize –L -r 100G VG00/share


                4) Check changes:



                sudo lvdisplay


                If you don't use LVM:



                All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).



                1) Change partition size: sudo fdisk /dev/sda3:




                • remove old partition (d)

                • create new one, bigger (n)

                • write changes (w)


                2) Expand file system:



                sudo e2fsck -f /dev/sda3
                sudo resize2fs /dev/sda3


                3) Reboot system, boot as usual.



                4) Check partitions:



                df






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 18 '18 at 6:52









                NadiaNadia

                11




                11






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1047249%2fhow-to-resize-partition-via-command-line%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?