No se puede eliminar de la partición UDF (SSD)

No se puede eliminar de la partición UDF (SSD)

Tengo Xubuntu 16.10 y hago arranque dual con Windows 10. Tengo una unidad SSD secundaria y quería elegir un sistema de archivos algo independiente del sistema operativo para poder usarlo tanto en Windows como en Linux, y después de investigar un poco, decidí intentarlo. UDF.

He añadido la siguiente entrada a /etc/fstab:

/dev/sda2 /mnt/e_drive udf   defaults,uid=1000,rw 0 0

Parece estar montado como debería estar:

adam@BC-LINPC-02:/$ mount |grep e_drive
/dev/sda2 on /mnt/e_drive type udf (rw,relatime,uid=1000,utf8)

Puedo agregar archivos nuevos y parece que puedo eliminar esos archivos nuevos:

adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ echo "hello world" > some_new_file.txt
adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ ls -lah some_new_file.txt 
-rw-rw-r-- 1 adam adam 12 Jan  6 03:14 some_new_file.txt
adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ rm -fr some_new_file.txt 

Sin embargo, parece que no puedo eliminar ningún archivo o directorio existente:

adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ sudo rm -fr dist.7z 
rm: cannot remove 'dist.7z': Operation not permitted
adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ ls -lah dist.7z
-rwxrwxrwx 1 adam nogroup 788K Dec 29 05:07 dist.7z

¿Hay algo que pueda hacer para que esto funcione? ¿Estoy haciendo algo mal?

Gracias

ACTUALIZAR:

En respuesta al comentario de George, debería haber mencionado que el chown tampoco funciona:

adam@BC-LINPC-02:/mnt/e_drive/src/project_test$ sudo chown -Rv adam:adam .tmp
[sudo] password for adam: 
chown: changing ownership of '.tmp/templateCache.js': Operation not permitted
failed to change ownership of '.tmp/templateCache.js' from adam:nogroup to adam:adam
chown: changing ownership of '.tmp/concat/scripts/scripts.js': Operation not permitted
failed to change ownership of '.tmp/concat/scripts/scripts.js' from adam:nogroup to adam:adam
chown: changing ownership of '.tmp/concat/scripts/vendor.js': Operation not permitted
failed to change ownership of '.tmp/concat/scripts/vendor.js' from adam:nogroup to adam:adam
chown: changing ownership of '.tmp/concat/scripts': Operation not permitted
failed to change ownership of '.tmp/concat/scripts' from adam:nogroup to adam:adam
chown: changing ownership of '.tmp/concat': Operation not permitted
failed to change ownership of '.tmp/concat' from adam:nogroup to adam:adam
chown: changing ownership of '.tmp/scripts/app.d.ts': Operation not permitted
failed to change ownership of '.tmp/scripts/app.d.ts' from adam:nogroup to adam:adam
...  (every file in that recursive tree) ...

información relacionada