Permission Denied To Delete File

Solution 1:

See this line?

 dr-xr-xr-x 2 nathan nathan 4096 Aug 10 11:36 images

You have no writing permissions for images directory.

This can be fixed by

chmod +w -R images

from the parent directory.