Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
How to find Trash Folder (trash bin) in Ubuntu 9.10 Karmic KoalaTrash folders are hidden. If you use the "ls" command in the Terminal, you need to include the "-a" switch
Code:
ls -a There are two folders within the Trash bin: "info" and "files".
Where Trash files reside:
If you type "trash:/" in the location of Nautilus or any other file manager, it will take you to the user's trash folder. The following command finds all folders on your system that contain either "trash" or "Trash". You need to have root privileges to run it. Code:
sudo find / -type d -name *Trash* Note: The search finds any folders named Trash, so it can find non-system trash folders as well (such as an Evolution trash folder). If your user Trash icon is not displayed on the Desktop, run: Code:
gconftool-2 --type bool --set /apps/nautilus/desktop/trash_icon_visible "true" Code:
gconftool-2 --type bool --set /apps/nautilus/desktop/trash_icon_visible "false" |
#2
|
|||
|
|||
Re: How to find Trash Folder (trash bin) in Ubuntu 9.10 Karmic Koalathanks very much, by this post i saved a very important file, which has no back up on somewhere. and it would be cost me nearly a month to rebuild it.
|
Tags: find, karmic koala, trash, trash bin, trash folder, ubuntu |
Thread Tools | |
Display Modes | |
|
|