0

My Windows 8.1 doesn't boot anymore, so I want do a backup of the files contained on Windows to an external hard disk by using an Ubuntu live distro.

Before doing that I need more free space on the external drive without formatting it, so I'm trying to delete some files and folders. When I delete them, they don't appear anymore but the size of the free space on the external disk doesn't change.

When I deleted a larger folder, a message said it was too large and would be deleted permanently, and then the size of the free space in the external disk increased.

For I need more free space on the externaal disk, I suppose I should look for a Recycle Bin and clear its content...

Where may I find this Recycle Bin on the external drive (to completely delete the selected files) from Linux?

franz1
  • 101

1 Answers1

0

sometimes when you delete files on a usb drive they get put in a hidden file .trash or something like that. Do a ls -a on the usb drive and see what hidden files there are. If there is a .trash do a rm -rf to that file.

If you are navigating to the directory from the gui you should be able to right click and select "open in terminal" and execute the ls -a and rm -rf "filename" from the terminal that way. Sometimes its easier to navigate via gui than try and get to a mounted usb drive.

JesseMP
  • 21