How to change read-only permission of external hard drive

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:



chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system


What do I do in order to be able to save to it? I have data on there, so formatting is not an option.







share|improve this question
















  • 2




    Please post the output of mount | grep FreeAgent while it is mounted.
    – Ned64
    Feb 17 at 12:24











  • mount | grep FreeAgent GoFlex Drive/ gives no output
    – matsuo_basho
    Feb 17 at 22:08














up vote
0
down vote

favorite












I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:



chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system


What do I do in order to be able to save to it? I have data on there, so formatting is not an option.







share|improve this question
















  • 2




    Please post the output of mount | grep FreeAgent while it is mounted.
    – Ned64
    Feb 17 at 12:24











  • mount | grep FreeAgent GoFlex Drive/ gives no output
    – matsuo_basho
    Feb 17 at 22:08












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:



chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system


What do I do in order to be able to save to it? I have data on there, so formatting is not an option.







share|improve this question












I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:



chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system


What do I do in order to be able to save to it? I have data on there, so formatting is not an option.









share|improve this question











share|improve this question




share|improve this question










asked Feb 17 at 12:19









matsuo_basho

101




101







  • 2




    Please post the output of mount | grep FreeAgent while it is mounted.
    – Ned64
    Feb 17 at 12:24











  • mount | grep FreeAgent GoFlex Drive/ gives no output
    – matsuo_basho
    Feb 17 at 22:08












  • 2




    Please post the output of mount | grep FreeAgent while it is mounted.
    – Ned64
    Feb 17 at 12:24











  • mount | grep FreeAgent GoFlex Drive/ gives no output
    – matsuo_basho
    Feb 17 at 22:08







2




2




Please post the output of mount | grep FreeAgent while it is mounted.
– Ned64
Feb 17 at 12:24





Please post the output of mount | grep FreeAgent while it is mounted.
– Ned64
Feb 17 at 12:24













mount | grep FreeAgent GoFlex Drive/ gives no output
– matsuo_basho
Feb 17 at 22:08




mount | grep FreeAgent GoFlex Drive/ gives no output
– matsuo_basho
Feb 17 at 22:08










2 Answers
2






active

oldest

votes

















up vote
1
down vote













This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).



Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.






share|improve this answer



























    up vote
    1
    down vote













    Viola mount -o remount,rw /path/to/remount






    share|improve this answer




















    • sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
      – matsuo_basho
      Feb 17 at 22:10











    • It might have a hardware switch that needs to be flipped, have you looked at the user manual?
      – jas-
      Feb 18 at 6:07










    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    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',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );








     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424783%2fhow-to-change-read-only-permission-of-external-hard-drive%23new-answer', 'question_page');

    );

    Post as a guest






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote













    This could work:
    Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).



    Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.






    share|improve this answer
























      up vote
      1
      down vote













      This could work:
      Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).



      Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.






      share|improve this answer






















        up vote
        1
        down vote










        up vote
        1
        down vote









        This could work:
        Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).



        Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.






        share|improve this answer












        This could work:
        Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).



        Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 17 at 12:32









        Fido-X

        1225




        1225






















            up vote
            1
            down vote













            Viola mount -o remount,rw /path/to/remount






            share|improve this answer




















            • sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
              – matsuo_basho
              Feb 17 at 22:10











            • It might have a hardware switch that needs to be flipped, have you looked at the user manual?
              – jas-
              Feb 18 at 6:07














            up vote
            1
            down vote













            Viola mount -o remount,rw /path/to/remount






            share|improve this answer




















            • sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
              – matsuo_basho
              Feb 17 at 22:10











            • It might have a hardware switch that needs to be flipped, have you looked at the user manual?
              – jas-
              Feb 18 at 6:07












            up vote
            1
            down vote










            up vote
            1
            down vote









            Viola mount -o remount,rw /path/to/remount






            share|improve this answer












            Viola mount -o remount,rw /path/to/remount







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 17 at 12:43









            jas-

            71038




            71038











            • sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
              – matsuo_basho
              Feb 17 at 22:10











            • It might have a hardware switch that needs to be flipped, have you looked at the user manual?
              – jas-
              Feb 18 at 6:07
















            • sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
              – matsuo_basho
              Feb 17 at 22:10











            • It might have a hardware switch that needs to be flipped, have you looked at the user manual?
              – jas-
              Feb 18 at 6:07















            sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
            – matsuo_basho
            Feb 17 at 22:10





            sudo mount -o remount,rw FreeAgent GoFlex Drive/ gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
            – matsuo_basho
            Feb 17 at 22:10













            It might have a hardware switch that needs to be flipped, have you looked at the user manual?
            – jas-
            Feb 18 at 6:07




            It might have a hardware switch that needs to be flipped, have you looked at the user manual?
            – jas-
            Feb 18 at 6:07












             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424783%2fhow-to-change-read-only-permission-of-external-hard-drive%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay