I solved the problem with this guide I found it here: How do I get permission to edit in my usb
Mount a FAT32 partition in a USB stick with write permissions for
everybody
Assumption: the pendrive is seen as /dev/sdx, replace the partition
device sdxn with the actual letters for the partition, for example
sdb1: /dev/sdxn ---> /dev/sdb1.
Explanation: x is the drive letter, and n is the partition number.
Text after # is a comment (not used as a command).
sudo mkdir -p /mnt/sd1 # only if you want a new mountpoint
sudo umount /dev/sdxn # general: only if already mounted (with bad permissions).
sudo umount /dev/sdb1 # example
sudo mount -o rw,users,umask=000 /dev/sdxn /mnt/sd1 # general: mount
sudo mount -o rw,users,umask=000 /dev/sdb1 /mnt/sd1 # example
chown
? – Sumeet Deshmukh Apr 29 '17 at 06:27and
sudo chgrp [username] /media/[username] '
– user3486308 Apr 29 '17 at 07:41sudo lsblk -f
andsudo parted -ls
– sudodus Apr 29 '17 at 07:42