How do I remount a filesystem as read/write?





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







154















I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3 in command line it returns not mounted or bad option. Any help would be appreciated.










share|improve this question































    154















    I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3 in command line it returns not mounted or bad option. Any help would be appreciated.










    share|improve this question



























      154












      154








      154


      59






      I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3 in command line it returns not mounted or bad option. Any help would be appreciated.










      share|improve this question
















      I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3 in command line it returns not mounted or bad option. Any help would be appreciated.







      mount filesystem






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 15 '18 at 6:29









      mook765

      4,47721333




      4,47721333










      asked Aug 14 '12 at 14:12









      AlkthreeAlkthree

      9672913




      9672913






















          5 Answers
          5






          active

          oldest

          votes


















          210














          The correct syntax is:



          sudo mount -o remount,rw /partition/identifier /mount/point


          Where mount/point is /partition/identifier's corresponding mountpoint, as listed by the following command:



          mount -v | grep "^/" | awk '{print "nPartition identifier: " $1  "n Mountpoint: "  $3}'




          For example, say that the above command gives this:



          Partition identifier: /dev/sda1
          Mountpoint: /

          Partition identifier: /dev/sda2
          Mountpoint: /boot

          Partition identifier: /dev/sda3
          Mountpoint: /test


          The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)



          sudo umount /test
          sudo umount /dev/sdb3
          sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled





          share|improve this answer


























          • Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

            – Alkthree
            Aug 14 '12 at 14:21











          • I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

            – Alkthree
            Aug 14 '12 at 14:32













          • Have you tried sudo mountall?

            – SirCharlo
            Aug 14 '12 at 14:42











          • Let's continue this discussion in chat..

            – SirCharlo
            Aug 14 '12 at 14:45






          • 1





            Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

            – SirCharlo
            Aug 14 '12 at 19:38





















          26














          for busybox/android users:




          you need to add a space (in contrast to normal usage) between 'remount' and 'rw':




          mount -o remount, rw /


          otherwise it won't work.






          share|improve this answer



















          • 2





            I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

            – wallyk
            May 9 '16 at 22:22








          • 1





            Had to do this on plain Ubuntu too.

            – DustWolf
            Sep 2 '16 at 18:01











          • what a strange syntax

            – Blauhirn
            Feb 27 '18 at 21:09











          • @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

            – coderofsalvation
            Mar 12 '18 at 9:37





















          4














          Running dmesg | grep hfs showed that the filesystem was unmounted incorrectly, which I was able to repair using



          fsck.hfsplus /dev/sdb3/





          share|improve this answer

































            1














            I have Dragonboard 410c
            I connecting via adb
            I wanted to mount the physical sdcard as RW.
            the following worked for me.



            adb root
            adb shell
            su
            mount -o remount,rw /storage/sdcard1 /storage/sdcard1


            So I can now access it in rw mode as /storage/sdcard1



            nb. /storage/sdcard0 is emulated and is /sdcard






            share|improve this answer































              1














              first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")



              sudo ntfsfix /dev/sda7


              before go to mount we need a Directory(file)



              mkdir ~/Desktop/disk


              now mount



              sudo mount /dev/sda7 ~Desktop/disk


              in this cause "sda7" is hard disk partition name,
              now you read and write dis






              share|improve this answer








              New contributor




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





















                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%2f175739%2fhow-do-i-remount-a-filesystem-as-read-write%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                5 Answers
                5






                active

                oldest

                votes








                5 Answers
                5






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                210














                The correct syntax is:



                sudo mount -o remount,rw /partition/identifier /mount/point


                Where mount/point is /partition/identifier's corresponding mountpoint, as listed by the following command:



                mount -v | grep "^/" | awk '{print "nPartition identifier: " $1  "n Mountpoint: "  $3}'




                For example, say that the above command gives this:



                Partition identifier: /dev/sda1
                Mountpoint: /

                Partition identifier: /dev/sda2
                Mountpoint: /boot

                Partition identifier: /dev/sda3
                Mountpoint: /test


                The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)



                sudo umount /test
                sudo umount /dev/sdb3
                sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled





                share|improve this answer


























                • Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                  – Alkthree
                  Aug 14 '12 at 14:21











                • I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                  – Alkthree
                  Aug 14 '12 at 14:32













                • Have you tried sudo mountall?

                  – SirCharlo
                  Aug 14 '12 at 14:42











                • Let's continue this discussion in chat..

                  – SirCharlo
                  Aug 14 '12 at 14:45






                • 1





                  Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                  – SirCharlo
                  Aug 14 '12 at 19:38


















                210














                The correct syntax is:



                sudo mount -o remount,rw /partition/identifier /mount/point


                Where mount/point is /partition/identifier's corresponding mountpoint, as listed by the following command:



                mount -v | grep "^/" | awk '{print "nPartition identifier: " $1  "n Mountpoint: "  $3}'




                For example, say that the above command gives this:



                Partition identifier: /dev/sda1
                Mountpoint: /

                Partition identifier: /dev/sda2
                Mountpoint: /boot

                Partition identifier: /dev/sda3
                Mountpoint: /test


                The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)



                sudo umount /test
                sudo umount /dev/sdb3
                sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled





                share|improve this answer


























                • Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                  – Alkthree
                  Aug 14 '12 at 14:21











                • I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                  – Alkthree
                  Aug 14 '12 at 14:32













                • Have you tried sudo mountall?

                  – SirCharlo
                  Aug 14 '12 at 14:42











                • Let's continue this discussion in chat..

                  – SirCharlo
                  Aug 14 '12 at 14:45






                • 1





                  Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                  – SirCharlo
                  Aug 14 '12 at 19:38
















                210












                210








                210







                The correct syntax is:



                sudo mount -o remount,rw /partition/identifier /mount/point


                Where mount/point is /partition/identifier's corresponding mountpoint, as listed by the following command:



                mount -v | grep "^/" | awk '{print "nPartition identifier: " $1  "n Mountpoint: "  $3}'




                For example, say that the above command gives this:



                Partition identifier: /dev/sda1
                Mountpoint: /

                Partition identifier: /dev/sda2
                Mountpoint: /boot

                Partition identifier: /dev/sda3
                Mountpoint: /test


                The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)



                sudo umount /test
                sudo umount /dev/sdb3
                sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled





                share|improve this answer















                The correct syntax is:



                sudo mount -o remount,rw /partition/identifier /mount/point


                Where mount/point is /partition/identifier's corresponding mountpoint, as listed by the following command:



                mount -v | grep "^/" | awk '{print "nPartition identifier: " $1  "n Mountpoint: "  $3}'




                For example, say that the above command gives this:



                Partition identifier: /dev/sda1
                Mountpoint: /

                Partition identifier: /dev/sda2
                Mountpoint: /boot

                Partition identifier: /dev/sda3
                Mountpoint: /test


                The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)



                sudo umount /test
                sudo umount /dev/sdb3
                sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Aug 15 '13 at 18:47









                Richard

                6,25183865




                6,25183865










                answered Aug 14 '12 at 14:15









                SirCharloSirCharlo

                30.5k75976




                30.5k75976













                • Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                  – Alkthree
                  Aug 14 '12 at 14:21











                • I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                  – Alkthree
                  Aug 14 '12 at 14:32













                • Have you tried sudo mountall?

                  – SirCharlo
                  Aug 14 '12 at 14:42











                • Let's continue this discussion in chat..

                  – SirCharlo
                  Aug 14 '12 at 14:45






                • 1





                  Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                  – SirCharlo
                  Aug 14 '12 at 19:38





















                • Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                  – Alkthree
                  Aug 14 '12 at 14:21











                • I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                  – Alkthree
                  Aug 14 '12 at 14:32













                • Have you tried sudo mountall?

                  – SirCharlo
                  Aug 14 '12 at 14:42











                • Let's continue this discussion in chat..

                  – SirCharlo
                  Aug 14 '12 at 14:45






                • 1





                  Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                  – SirCharlo
                  Aug 14 '12 at 19:38



















                Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                – Alkthree
                Aug 14 '12 at 14:21





                Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3

                – Alkthree
                Aug 14 '12 at 14:21













                I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                – Alkthree
                Aug 14 '12 at 14:32







                I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.

                – Alkthree
                Aug 14 '12 at 14:32















                Have you tried sudo mountall?

                – SirCharlo
                Aug 14 '12 at 14:42





                Have you tried sudo mountall?

                – SirCharlo
                Aug 14 '12 at 14:42













                Let's continue this discussion in chat..

                – SirCharlo
                Aug 14 '12 at 14:45





                Let's continue this discussion in chat..

                – SirCharlo
                Aug 14 '12 at 14:45




                1




                1





                Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                – SirCharlo
                Aug 14 '12 at 19:38







                Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!

                – SirCharlo
                Aug 14 '12 at 19:38















                26














                for busybox/android users:




                you need to add a space (in contrast to normal usage) between 'remount' and 'rw':




                mount -o remount, rw /


                otherwise it won't work.






                share|improve this answer



















                • 2





                  I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                  – wallyk
                  May 9 '16 at 22:22








                • 1





                  Had to do this on plain Ubuntu too.

                  – DustWolf
                  Sep 2 '16 at 18:01











                • what a strange syntax

                  – Blauhirn
                  Feb 27 '18 at 21:09











                • @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                  – coderofsalvation
                  Mar 12 '18 at 9:37


















                26














                for busybox/android users:




                you need to add a space (in contrast to normal usage) between 'remount' and 'rw':




                mount -o remount, rw /


                otherwise it won't work.






                share|improve this answer



















                • 2





                  I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                  – wallyk
                  May 9 '16 at 22:22








                • 1





                  Had to do this on plain Ubuntu too.

                  – DustWolf
                  Sep 2 '16 at 18:01











                • what a strange syntax

                  – Blauhirn
                  Feb 27 '18 at 21:09











                • @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                  – coderofsalvation
                  Mar 12 '18 at 9:37
















                26












                26








                26







                for busybox/android users:




                you need to add a space (in contrast to normal usage) between 'remount' and 'rw':




                mount -o remount, rw /


                otherwise it won't work.






                share|improve this answer













                for busybox/android users:




                you need to add a space (in contrast to normal usage) between 'remount' and 'rw':




                mount -o remount, rw /


                otherwise it won't work.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 11 '16 at 11:10









                coderofsalvationcoderofsalvation

                36933




                36933








                • 2





                  I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                  – wallyk
                  May 9 '16 at 22:22








                • 1





                  Had to do this on plain Ubuntu too.

                  – DustWolf
                  Sep 2 '16 at 18:01











                • what a strange syntax

                  – Blauhirn
                  Feb 27 '18 at 21:09











                • @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                  – coderofsalvation
                  Mar 12 '18 at 9:37
















                • 2





                  I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                  – wallyk
                  May 9 '16 at 22:22








                • 1





                  Had to do this on plain Ubuntu too.

                  – DustWolf
                  Sep 2 '16 at 18:01











                • what a strange syntax

                  – Blauhirn
                  Feb 27 '18 at 21:09











                • @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                  – coderofsalvation
                  Mar 12 '18 at 9:37










                2




                2





                I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                – wallyk
                May 9 '16 at 22:22







                I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....

                – wallyk
                May 9 '16 at 22:22






                1




                1





                Had to do this on plain Ubuntu too.

                – DustWolf
                Sep 2 '16 at 18:01





                Had to do this on plain Ubuntu too.

                – DustWolf
                Sep 2 '16 at 18:01













                what a strange syntax

                – Blauhirn
                Feb 27 '18 at 21:09





                what a strange syntax

                – Blauhirn
                Feb 27 '18 at 21:09













                @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                – coderofsalvation
                Mar 12 '18 at 9:37







                @wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.

                – coderofsalvation
                Mar 12 '18 at 9:37













                4














                Running dmesg | grep hfs showed that the filesystem was unmounted incorrectly, which I was able to repair using



                fsck.hfsplus /dev/sdb3/





                share|improve this answer






























                  4














                  Running dmesg | grep hfs showed that the filesystem was unmounted incorrectly, which I was able to repair using



                  fsck.hfsplus /dev/sdb3/





                  share|improve this answer




























                    4












                    4








                    4







                    Running dmesg | grep hfs showed that the filesystem was unmounted incorrectly, which I was able to repair using



                    fsck.hfsplus /dev/sdb3/





                    share|improve this answer















                    Running dmesg | grep hfs showed that the filesystem was unmounted incorrectly, which I was able to repair using



                    fsck.hfsplus /dev/sdb3/






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Aug 15 '12 at 17:26







                    user76204

















                    answered Aug 15 '12 at 13:49









                    AlkthreeAlkthree

                    9672913




                    9672913























                        1














                        I have Dragonboard 410c
                        I connecting via adb
                        I wanted to mount the physical sdcard as RW.
                        the following worked for me.



                        adb root
                        adb shell
                        su
                        mount -o remount,rw /storage/sdcard1 /storage/sdcard1


                        So I can now access it in rw mode as /storage/sdcard1



                        nb. /storage/sdcard0 is emulated and is /sdcard






                        share|improve this answer




























                          1














                          I have Dragonboard 410c
                          I connecting via adb
                          I wanted to mount the physical sdcard as RW.
                          the following worked for me.



                          adb root
                          adb shell
                          su
                          mount -o remount,rw /storage/sdcard1 /storage/sdcard1


                          So I can now access it in rw mode as /storage/sdcard1



                          nb. /storage/sdcard0 is emulated and is /sdcard






                          share|improve this answer


























                            1












                            1








                            1







                            I have Dragonboard 410c
                            I connecting via adb
                            I wanted to mount the physical sdcard as RW.
                            the following worked for me.



                            adb root
                            adb shell
                            su
                            mount -o remount,rw /storage/sdcard1 /storage/sdcard1


                            So I can now access it in rw mode as /storage/sdcard1



                            nb. /storage/sdcard0 is emulated and is /sdcard






                            share|improve this answer













                            I have Dragonboard 410c
                            I connecting via adb
                            I wanted to mount the physical sdcard as RW.
                            the following worked for me.



                            adb root
                            adb shell
                            su
                            mount -o remount,rw /storage/sdcard1 /storage/sdcard1


                            So I can now access it in rw mode as /storage/sdcard1



                            nb. /storage/sdcard0 is emulated and is /sdcard







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 28 '16 at 2:36









                            David JonesDavid Jones

                            111




                            111























                                1














                                first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")



                                sudo ntfsfix /dev/sda7


                                before go to mount we need a Directory(file)



                                mkdir ~/Desktop/disk


                                now mount



                                sudo mount /dev/sda7 ~Desktop/disk


                                in this cause "sda7" is hard disk partition name,
                                now you read and write dis






                                share|improve this answer








                                New contributor




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

























                                  1














                                  first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")



                                  sudo ntfsfix /dev/sda7


                                  before go to mount we need a Directory(file)



                                  mkdir ~/Desktop/disk


                                  now mount



                                  sudo mount /dev/sda7 ~Desktop/disk


                                  in this cause "sda7" is hard disk partition name,
                                  now you read and write dis






                                  share|improve this answer








                                  New contributor




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























                                    1












                                    1








                                    1







                                    first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")



                                    sudo ntfsfix /dev/sda7


                                    before go to mount we need a Directory(file)



                                    mkdir ~/Desktop/disk


                                    now mount



                                    sudo mount /dev/sda7 ~Desktop/disk


                                    in this cause "sda7" is hard disk partition name,
                                    now you read and write dis






                                    share|improve this answer








                                    New contributor




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










                                    first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")



                                    sudo ntfsfix /dev/sda7


                                    before go to mount we need a Directory(file)



                                    mkdir ~/Desktop/disk


                                    now mount



                                    sudo mount /dev/sda7 ~Desktop/disk


                                    in this cause "sda7" is hard disk partition name,
                                    now you read and write dis







                                    share|improve this answer








                                    New contributor




                                    user9860532 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 answer



                                    share|improve this answer






                                    New contributor




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









                                    answered Apr 18 at 17:39









                                    user9860532user9860532

                                    111




                                    111




                                    New contributor




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





                                    New contributor





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






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






























                                        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%2f175739%2fhow-do-i-remount-a-filesystem-as-read-write%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?