Couldn't Copy Few Files from Reactor Directory
-
I am trying to backup the Reactor directory from my Rpi to my NAS. I am running this command
sudo cp -r /home/arman/Documents/reactor /home/arman/backup
and this the output:cp: cannot create symbolic link '/home/arman/backup/reactor/node_modules/.bin/esparse': Operation not supported cp: cannot create symbolic link '/home/arman/backup/reactor/node_modules/.bin/esvalidate': Operation not supported cp: cannot create symbolic link '/home/arman/backup/reactor/node_modules/.bin/js-yaml': Operation not supported cp: cannot create symbolic link '/home/arman/backup/reactor/node_modules/.bin/mime': Operation not supported cp: cannot create symbolic link '/home/arman/backup/reactor/node_modules/.bin/uuid': Operation not supported
Comparing the Reactor directory to the newly backed up directory it looks like those 4 files above weren't copied. Is this something I can ignore? Or should I stop reactor then copy the files?
-
They are symbolic links. My understanding is that cp is trying to copy the target of the link.
You can force by using the -P option but if you're using a different base to restore to, you might find those targets have moved.
My guess would be that on rebuild you do the reactor install and then copy over your current backup. The symbolic links would then be automatically created correctly. I could be wrong.C
-
They are symbolic links. My understanding is that cp is trying to copy the target of the link.
You can force by using the -P option but if you're using a different base to restore to, you might find those targets have moved.
My guess would be that on rebuild you do the reactor install and then copy over your current backup. The symbolic links would then be automatically created correctly. I could be wrong.C