Problem / Symptom
I delete files from my hard drive (it can be linux partition or it can be NTFS partiont) yet the space on hard drive remains the same as it was before deleting the files.
Solution
What happens when you delete a file in GUI is that Linux moves the files to a Trash folder instead of actually deleting the file,
For Linux Partition i would suggest you open the terminal go to
Code:
cd /home//.Trash
Code:
cd /home/baqai/.Trash
Code:
ls -a
now for deleting the files
Code:
rm
Code:
rm -R
Say you have a windows partition mounted and the volume of that drive is "Downloads" you can follow the same principals as above with slight twist
First lets go to your partition
Code:
cd /media/Downloads
Code:
cd .Trash-
Code:
cd .Trash-baqai
Code:
ls -a
On windows partitions you will also have another directory by name of .Trash-root which you should also check just in case you deleted some files by your root account and they are there, For most of the new users like me it should not be a case normally
1 comment:
In windows use if you are using Windows Explorer then use SHIFT+Del, it won't move file to Trash folder.
Post a Comment