Unable to copy using cp -R command

John Doe

When I am doing cp -R at my system

     cp -R  \[Bark\]\ Java/ /Volumes/Seagate\ Backup\ Plus\ Drive/

its throwing this message

      cp: /Volumes/Seagate Backup Plus Drive/Advanced: Read-only file system

      cp: [Bark] Java//Advanced:unable to copy extended attributes to /Volumes/Seagate Backup Plus Drive/Advanced: Read-only file system.

I guess I need to make the backup disk in write mode How to change the mode of the backup disk.

paxdiablo

Mounting on many UNIX systems is controlled by the etc/fstab file (see here). This usually specifies mount options for each device.

You need to change the mount options for the device you're interested in.

If you examine the /etc/fstab file on your system, you should see something along the lines of ro in the options column.

If you change that to rw and then remount it, it should be writeable.

You may want to change it back when you're done so as to protect the information on it.


For Mac OSX, fstab is still used but the file systems may also be under the control of automount - look up the man pages for automount and autofs.conf for information on how to configure those.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Difference between cp -r and cp -R (copy command)

From Dev

Problems using cp -r command

From Dev

How to silently copy large number of files using 'cp' command?

From Dev

Undo copy (cp) command action

From Dev

unable to understand docker cp command

From Dev

Is it possible to pipe the results of FIND to a COPY command CP?

From Dev

Linux cp command to copy a folder to current directory

From Dev

Copy command with `cp -f -R` strangely does not work on all OS X machines

From Dev

How to copy all files with the same name into another directory using cp command

From Dev

Recursively copy files using docker cp

From Dev

Error copying directories at command line using cp

From Dev

using wildcard character [xyz] in cp command

From Dev

Wildcard not working in cp command when using exec

From Dev

Specify directory when using cp command

From Dev

Using the output of if statement (cmp) in a cp command

From Dev

Problem using cp command with negation (!) on crontab

From Dev

Why won't my cp command copy whole directories?

From Dev

Linux cp command implementation to copy multiple files to a Directory

From Dev

copy command using JS

From Dev

sh recursive copy (cp -r) - How to exclude subfolder

From Dev

copy files modified after specific date using cp switches

From Dev

How to copy a folder recursively in an idempotent way using cp?

From Dev

Unable to copy img using canvas

From Dev

Copy to tmux copy buffer using command line

From Dev

Copy a folder using the command line?

From Dev

cp -r equivalent in windows command prompt without error code 1

From Dev

how to send output of 'ls-l' to cp command using pipes?

From Dev

Using command-line parameters as destination for cp and mv in bash script

From Dev

Cp does not copy file

Related Related

  1. 1

    Difference between cp -r and cp -R (copy command)

  2. 2

    Problems using cp -r command

  3. 3

    How to silently copy large number of files using 'cp' command?

  4. 4

    Undo copy (cp) command action

  5. 5

    unable to understand docker cp command

  6. 6

    Is it possible to pipe the results of FIND to a COPY command CP?

  7. 7

    Linux cp command to copy a folder to current directory

  8. 8

    Copy command with `cp -f -R` strangely does not work on all OS X machines

  9. 9

    How to copy all files with the same name into another directory using cp command

  10. 10

    Recursively copy files using docker cp

  11. 11

    Error copying directories at command line using cp

  12. 12

    using wildcard character [xyz] in cp command

  13. 13

    Wildcard not working in cp command when using exec

  14. 14

    Specify directory when using cp command

  15. 15

    Using the output of if statement (cmp) in a cp command

  16. 16

    Problem using cp command with negation (!) on crontab

  17. 17

    Why won't my cp command copy whole directories?

  18. 18

    Linux cp command implementation to copy multiple files to a Directory

  19. 19

    copy command using JS

  20. 20

    sh recursive copy (cp -r) - How to exclude subfolder

  21. 21

    copy files modified after specific date using cp switches

  22. 22

    How to copy a folder recursively in an idempotent way using cp?

  23. 23

    Unable to copy img using canvas

  24. 24

    Copy to tmux copy buffer using command line

  25. 25

    Copy a folder using the command line?

  26. 26

    cp -r equivalent in windows command prompt without error code 1

  27. 27

    how to send output of 'ls-l' to cp command using pipes?

  28. 28

    Using command-line parameters as destination for cp and mv in bash script

  29. 29

    Cp does not copy file

HotTag

Archive