Kieran wrote:even when attempting to perform the action as a superuser.
Are you sure you are performing the action as root? On a unix system, root should have full access to every folder, everywhere on the system. Thats the point of a superuser!
Use
- Code: Select all
su
to switch to root, and input the password when asked. Then all command run will be run as root, such as, for example:
- Code: Select all
mv \source\folder\*.* \usr\dest\*.*
Hope it helps!
Rob