Now, please note that this is a sub-question of my old Changing Ownership: “Operation not permitted” - even as root! question. If you do not want to visit that link or cannot, to sum up, while attempting to use:
sudo chown (...)
To change the ownership of a file inside of a USB drive, it was unsuccessful, as the file had the immutable flag set in its extended attributes. This was the solution that worked, removing the flag via:
sudo chattr -i (Path_To_File)
As this was fixed, I basically put this in the back of my mind where I would remember it in case of repetition of the error. Recently, I was formatting a USB custom, and ran into the same error, except this time, nothing that was suggested to fix said error the previous time, has worked. Here's your command output that I know you all love:
sudo chown david:david ~/USB5/Format/type.cr
Please note that I have checked this command, and neither the (~) general path, nor the specific path work. The following is my output:
Operation Not Permitted
Of course, I have tried the fix from before, and the file does not have the flag. What can I do to fix this?
Suggested answer below:
sudo mkdir /media/flash
sudo mount /dev/sdb1 /media/flash -o dmask=000,fmask=111
This just hangs on the second command, I left the computer for over 2 hours, just hanging.
EDIT: Changing to EXT4 Did nothing, same error.
You can set up
/etc/fstab
as a way of configuring drives. To pick out or identify a specific partition to mount, we can use the partition's UUID, which can be found withblkid
In order to mount the drive, you need an empty directory. The user you wish to have access to the files needs access to this directory, including
+x
:Where
me:me
is theuser:group
string. On most systems, the first non-root user created at install will have the uid of 1000, and gid of 1000, but you can check/etc/passwd
and/etc/group
to confirm these numbers match up on your system for the next step.Now that you know which partition to mount, and you have a place to mount it, work on a new entry in
/etc/fstab
Additional details about
/etc/fstab
can be found in the Ubuntu Wiki. The details found in the wiki will help you fine-tune settings, such as auto-mounting when inserted, or setting defaultumask
. Another interesting option is theusers
option, which allows non-root users to mount the filesystem.If you need to share these files with other users, create a new group, add all of the users to the group, and then adjust the
gid
to match the new group's identifier. You can see other examples of this, such ashttpd
ornginx
using thewww-data
user/group.I'm using Sparky linux (Debian testing), but I had the same problem and this may work for you.
After trying all the command line suggestions and not having any success, what worked for me was simply using Gparted and formatting the drive to ext4 and then doing a reformat to fat32 again and all is well.
It was kind of strange as I had been using this 16gb Adata USB3 for a couple of years and never had any issues. Hope it works for you.