4

I had deleted an important file once and later i had changed the permissions of a file which i am not able to revert now. Is there any way through which i can undo delete or revert permissions on files while working with terminal?


And one more question about Ubuntu ... Why do we never get a dialog box asking 'are you sure you want to delete' as compared to windows.I see it as a flaw in Ubuntu GUI. Once you press delete,there it is in the trash but never prompts to ask if we really want it to be deleted and ofcourse, I know ppl would be like -- why you want reassurance before deleting...it is a part of HCI and should be implemented(I am sorry,just a beginner).

jrg
  • 60,611
bebojoor
  • 597
  • 2
  • 5
  • 20
  • 1
    As far as I know nautilus will prompt for confirmation when you empty the trash/rubbish bin but not when you 'delete' a file. If you use a terminal then rm -i will ask for confirmation. http://askubuntu.com/questions/8590/delete-confirmation-missing-when-i-hit-the-delete-key – 23 93 26 35 19 57 3 89 Apr 25 '12 at 10:33
  • @forestpiskie Ya i know abt the terminal thingy btw i am using 10.10 Lucid not nautilus. – bebojoor Apr 25 '12 at 10:35
  • @forestpiskie And if i use rm -i , It is like asking the terminal to prompt me ... which is not a good interface. It should prompt for all automatically. – bebojoor Apr 25 '12 at 10:44
  • If you want delete prompts in the command line add this alias to your .bashrc http://askubuntu.com/questions/17536/how-do-i-create-a-permanent-bash-alias – RobotHumans Apr 25 '12 at 12:02

3 Answers3

4

If deleted the file in a terminal with rm then it will not go to the trash, do it in filemanager and it will.

You 'might' be able to restore the file, but all the time you're using the system the area the file was in could be overwritten.

https://help.ubuntu.com/community/DataRecovery

You should be able to revert permissions on files.

https://help.ubuntu.com/community/FilePermissions

  • I donot know what were the earlier permissions set. I want to rollback not change again. and Data recovery... is it that tedious to retrieve a deleted file ? Can you suggest some alternatives? – bebojoor Apr 25 '12 at 09:04
  • It would I think be rather tedious, if it's that important though it would be worth it. You don't need to know what the permissions were - you do need to know what you want them to be now. – 23 93 26 35 19 57 3 89 Apr 25 '12 at 09:07
4

There's an rm wrapper script that makes rm a bit more fool-proof.

Suppose you did...

rm very_important_file

Getting that file back using the terminal is tedious and not always possible.

If you used the script mentioned above, you don't have to worry about this because

rm very_important_file

Is actually doing

mv very_important_file ~/.Trash/

behind the scenes in that rm wrapper script mentioned above.

The script handles more cases and doesn't alter your system rm application, just shadows it if you put the wrapper somewhere before the official rm in your $PATH.

This is a bit better than just aliasing, because it can do more (like maintaining that ~/.Trash/ directory).

hobs
  • 512
a14m
  • 141
-2

I think it may be in the trash.You may get to recover the important file from the trash. otherwise I think you should download or make the file again.

raghur
  • 1
  • 2
  • @bebojoor ofcourse the first thing i did was to look for it in the trash but its not found and about downloading and making the file... thats what i will obviously be doing in the end if i am not getting any solution. :( – bebojoor Apr 25 '12 at 08:45