Ubuntu :: Trash Applet 9.10 Not Emptying?

Jan 25, 2010

My Trash applet always shows that there are 2 items in the trash can.

Its driving me insane.

I tried sudo rm -fr /home/*/.local/share/Trash to no avail.

Where is the trash folder in karmic? I had to create the Trash folder in home first.

Has it been moved from the /home tree?

View 3 Replies


ADVERTISEMENT

Ubuntu :: Evolution Error While Emptying Trash

Sep 17, 2010

How to deal with this error. The folder that this refers to does exist, so I dont know why I'm getting this error when I try to empty my trash in Evolution.

View 5 Replies View Related

Ubuntu :: Error While Emptying Trash In Evolution Mail

Jul 9, 2010

I am 61 years old and brand new to Ubuntu. My son built a computer for me which I am using. I hated Windows so he installed Ubuntu 9.10 which I love. My son left for the Air Force Academy and when he left he told me and I was on my own so I am doing my best to learn. Everything was going fine but today I encountered a problem.

When I tried to empty my trash in the Evolution Mail program, I encountered this error message:
Error while Expunging folder.
Error storing '~/.evolution/mail/local/Sent (mbox)': Summary and folder mismatch, even after a sync

I googled the error and found this solution:
I first used Evolution File > Backup Settings. Then I went to my .evolution/mail/local and deleted all files that had an extension of:
.index
.cmeta
but NOT .data

When restarted it takes a few minutes to rebuild. Then I was able to successfully delete everything in my trash folder. I have looked and looked and I cannot find the .evolution/mail/local folder. How to get to it. Or perhaps am I using the wrong corrective action. If that is the case, then what should I do.

View 5 Replies View Related

General :: Clean Or Emptying Trash Does Not Free Up Enough Space For Updates

Sep 25, 2009

This message comes up when I try to upgrade. The upgrade needs a total of 400M free space on disk '/'. Please free at least an additional 394M of disk space on '/'. Empty your trash and remove temporary packages of former installations using 'sudo apt-get clean'.

View 2 Replies View Related

Ubuntu :: Trash Applet - Of Cairo Dock

Jul 3, 2010

The hard disk is divided into three partitions, root (sda3)sda1 and sda2, the trash applet will change from empty to full if I delete something on the Desktop, but the trash remains empty when I delete documents from sda1 and sda2.

View 6 Replies View Related

Ubuntu :: Trash Applet Launches Archive Manager?

May 11, 2011

I am running Natty Narwhal with Gnome Classic (I can't get used to Unity). When I click the Trash Can the Archive Manager (file-roller) starts with Could not create the archive

Archive type not supported.I'm sure the default "open with" for the Trash folder has somehow been modified but I can't figure out how to change it back.

View 5 Replies View Related

Ubuntu :: Trash Or Disk Mounter Applet In Drawer

Jul 4, 2011

Steps to reproduce:
Add a Drawer to a panel
Add to the Drawer the Trash or the Disk mounter applet
Restart
Result: any Drawer in panels you have is now unusable.

View 1 Replies View Related

OpenSUSE :: When Move Something To Trash It Doesn't Show The Option Of Empty Trash

Mar 12, 2011

When I move something to Trash it doesn't show the option of "Empty Trash". I can use "move to Trash" and it just moving there like some ordinary folder, but shift+del give me an option for deleting the files. Using OpenSUSE 11.3 32bit.

View 6 Replies View Related

Ubuntu :: Evolution: Deleted Box Not Emptying

Oct 3, 2010

Evolution Mail I have a bunch of messages from last August stuck in the Deleted box. Other deleted messages are emptying ok. how I can get rid of them? I do a regular back-up and restore but they just won't go away.

View 7 Replies View Related

Ubuntu :: Recover After Emptying Wastebasket?

Feb 11, 2011

Have 10.10.Is it possible to recover data having just emptied the Wastebasket?

View 3 Replies View Related

Ubuntu :: Emptying Deleted Items In Evolution

May 28, 2010

I'm using Evolution, latest version for Linux. For some reason, I can't get the deleted items folder in the mail view to expunge. Is there some reason why emptying the trash suddenly doesn't work? It worked for the first few days of using Evolution, but now it just doesn't work -- the deleted items just stay there.

Here's the error message:
Error storing '~/.evolution/mail/local/Handle Later (mbox)': Error storing '~/.evolution/mail/local/Sent (mbox)': Error storing '~/.evolution/mail/local/Inbox (mbox)': Summary and folder mismatch, even after a sync

View 8 Replies View Related

Ubuntu :: Files In Trash But Not In Trash?

Dec 24, 2010

I have a problem with a couple of folders in the Trash. If I click on the Trash icon, 2 foldersare there, and when I try to delete them, it just says "Failed to delete the item from the trash"

But when I go to .local/share/Trash there are no files there! Anyway, I tried using the command "sudo rm -rf .local/share/Trash", it shows no error, but the files continue when I click in the trash icon.

View 9 Replies View Related

Ubuntu :: Banshee Emptying Imported Playlists At Random Intervals

Aug 4, 2011

Banshee is, at seemingly random intervals, emptying any playlist I have imported (as .pls generated by Rhythmbox). The playlists I build in Banshee directly are not suffering this emptying problem. (There is one imported playlist, of some 30+, which has not yet emptied but I see nothing special about it.)

View 1 Replies View Related

Software :: Completely Emptying Column In MySQL

Mar 25, 2010

I have a database with the following table (see below). What I need to do is to empty the itype column completely, so that if I do a Select itype from items; it will return empty set. I have tried dropping and recreating the itype column, but it just adds the data I want to insert to the end, and even when I recreate it, it is not empty.. I need to overwrite it, or better, start with an empty column.

mysql> desc items;
+----------------------+--------------+------+-----+-------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------------------+--------------+------+-----+-------------------+----------------+
| itemnumber | int(11) | NO | PRI | NULL | auto_increment |
| biblionumber | int(11) | NO | MUL | 0 | |
| biblioitemnumber | int(11) | NO | MUL | 0 | |
| barcode | varchar(20) | YES | UNI | NULL | |
| dateaccessioned | date | YES | | NULL | |
| booksellerid | mediumtext | YES | | NULL | |
| homebranch | varchar(10) | YES | MUL | NULL | |
| price | decimal(8,2) | YES | | NULL | |
| replacementprice | decimal(8,2) | YES | | NULL | |
| replacementpricedate | date | YES | | NULL | |
| datelastborrowed | date | YES | | NULL | |
| datelastseen | date | YES | | NULL | |
| stack | tinyint(1) | YES | | NULL | |
| notforloan | tinyint(1) | NO | | 0 | |
| damaged | tinyint(1) | NO | | 0 | |
| itemlost | tinyint(1) | NO | | 0 | |
| wthdrawn | tinyint(1) | NO | | 0 | |
| itemcallnumber | varchar(30) | YES | | NULL | |
| issues | smallint(6) | YES | | NULL | |
| renewals | smallint(6) | YES | | NULL | |
| reserves | smallint(6) | YES | | NULL | |
| restricted | tinyint(1) | YES | | NULL | |
| itemnotes | mediumtext | YES | | NULL | |
| holdingbranch | varchar(10) | YES | MUL | NULL | |
| paidfor | mediumtext | YES | | NULL | |
| timestamp | timestamp | NO | | CURRENT_TIMESTAMP | |
| location | varchar(80) | YES | | NULL | |
| onloan | date | YES | | NULL | |
| cn_source | varchar(10) | YES | | NULL | |
| cn_sort | varchar(30) | YES | | NULL | |
| ccode | varchar(10) | YES | | NULL | |
| materials | varchar(10) | YES | | NULL | |
| uri | varchar(255) | YES | | NULL | |
| itype | varchar(10) | YES | | NULL | |
| more_subfields_xml | longtext | YES | | NULL | |
| enumchron | varchar(80) | YES | | NULL | |
| copynumber | varchar(32) | YES | | NULL | |
+----------------------+--------------+------+-----+-------------------+----------------+
37 rows in set (0.05 sec)

View 4 Replies View Related

Ubuntu Installation :: Can't Move Indicator Session Applet To The Right Of The System Date/clock Applet

May 6, 2010

I thought I was removing the chat status piece of the indicator applet (I know what it is now, didn't then), but I accidentally removed the whole thing. Now when I figured out how to put it back on the panel, I can't get it back to where it was (which was to the RIGHT of the system date/time applet). How can I do this as well as move the indicator applet that has the volume control in it?

View 4 Replies View Related

General :: Deleting Content In Swap Space And Emptying Cache Using Terminal

Jul 21, 2011

Wish a script which would delete cache content and remove additional files which have been downloaded via the internet and saved voluntarily by the user and files any thing other than those used by the OS in linux.Need a command which could make the execution of the above script possible before the shut down command is passed.

View 1 Replies View Related

Ubuntu :: Can't Get Indicator Applet And Session Management Applet Working

Jul 9, 2010

After some updates I can't get indicator applet and session management applet working, I get these instead:

I tried to pull back any updates, but it changed nothing. I installed older (lucid) versions of these packages:

Code:
indicator-applet
indicator-applet-complete
indicator-sound
indicator-applet-session

[Code]....

View 9 Replies View Related

Ubuntu :: Conflict Between Indicator Applet And Notification Area Applet?

May 15, 2011

I was using both the Indicator Applet and the Notification Area applets in my panel but realized that very often when I started the system, the icons of these applet appeared mixed. Some items were duplicated (for example the keyboard indicator) where others were missing (sometimes the battery indicator, sometimes the sound indicator, etc). When that happened I had to remove them and add them to panel again.

This seems to be a bug that makes one applet interfere with the other (maybe because there are some items that appear in both but when you add both initially nothing is duplicated but after a system restart the problem happens).After searching for some way to fix this apparent bug without success I decided to remove the Indicator applet and keep just the Notification Area.

It works but then I don't have the sound applet anymore, because it was part of the Indicator Applet.
I searched for a standalone sound applet but I couldn't find any. Do you know of any such applet that I could install in the system? If I can find any it would be fine to me and I would be satisfied using just the Notification Area.

View 1 Replies View Related

Ubuntu :: Lost Indicator Applet Or Mail Applet?

Dec 21, 2010

Had ubuntu for a few years left came back last month. I lost the indicator applet in the panel. I don't know what I did to get it back. I feel like this is a very very simple thing to fix but I just can't find it. Here is a pic of what i'm talking about.

View 3 Replies View Related

Fedora Networking :: Network Manager Applet (/usr/bin/mn-applet) Needs Default Keyering

Dec 5, 2009

I use network manager applet 0.7.1. I had set the automatic wireless connection to my my wireless network (WPA key secured). Recently, I get the following problem: At the automatic connection, I get the message: Network manager applet (/usr/bin/mn-applet) needs default keyering. As I don't know what it is to type it and then, deny or OK, it doesn't get connected to my wireless network.

View 5 Replies View Related

OpenSUSE :: GNOME Network Manager Applet Cant Export Vpn Configuration (nm-applet)?

Mar 28, 2011

I cant use the option "export" from the VPN settings in the Gnome Network Manager, when I tried to export a popup says "Unknown error"This happend also in 11.3 and now in 11.4, so it is a nm-applet problema I think... Is there any other way to export my VPN connections?

View 5 Replies View Related

Ubuntu :: Restoring Nm-applet To 10.04 Indicator Applet?

May 3, 2010

I removed the "indicator applet" from the default gnome panel at the top of the default Lucid desktop. Doing so resulted in me losing the ability to control the sound from the panel, which I value so I put it back.Once I restored the indicator applet to the panel, the nm-applet went missing. I'm still connecting to my home network with no problem, so the function is there, but the little icon that updates when you're trying to connect, shows signal strength, and other available networks is now missing. This I've searched the problem and haven't found any solutions that work, I think because of the new applet integration, but I'm very surprised this hasn't been found by someone yet!

View 9 Replies View Related

Ubuntu :: Add Nm-applet To Indicator Applet

Jun 21, 2010

the network manager applet is in the notification area on the gnome panel. I was wondering if it's possible to move it to the Indicator Applet?

View 1 Replies View Related

Ubuntu :: Sound Applet Dependent On Unwanted "notify" Applet

Apr 27, 2010

Lucid has this (opinion: stupid) notification applet in the top right that contains links and notifications for the default evolution etc setup. I do not want that applet and would prefer to run what I want via alltray. The problem is that removing the notification applet removes the sound applet! Firstly, how do I "unmarry" the two? secondly, who could have possibly thought that was a good idea? Ubuntu has been great, but c'mon! Why is a default email program married to the sound applet!

View 2 Replies View Related

Fedora :: Java Based Chat Or Drawing Site Doesn't Load The Applet - "Start: Applet Not Initialized"

Mar 10, 2011

I'm having trouble with my java, I got it to isntall, restarted but when I go to any java based chat, or drawing site it doesn't load the applet, the applet shows up it just says "Start: Applet not initialized"
Did I install it wrong?

View 4 Replies View Related

OpenSUSE :: Kupdate Applet - Make The Update Applet Ignore "recommended" Update?

Mar 24, 2010

My kupdate-applet tells me it has a recommended update: KDE 4.3.5 from the official opensuse update repo. Problem is I already have a more recent version of KDE 4.3.5 installed from the official opensuse KDE repo. In yast I pressed the "switch system packages" button for the KDE repo. How can I make the update applet ignore this "recommended" update? Note that the updateApplet itself is installed from the opensuse update repo. If I don't do this, then the older update applet from the KDE repo always has a recommended update for... Kupdate-applet.

View 2 Replies View Related

Ubuntu :: Where Did The Trash Can/ Panel Go

Apr 24, 2010

I managed to delete the panel with the trash can. I've tried putting the mouse over the spot but I can't get it to add a panel.

View 4 Replies View Related

Ubuntu :: Trash Bin Will Not Open

May 24, 2010

I have deleted many things to my trash bin that I want to get back. When I try to open the trash, Ubuntu freezes, window goes black and white, and I end up needing to restart some of the time if not force quit. Is there any way I can open the trash bin? If I hover my mouse over the trash icon in my panel it says I have 485 items in it.

View 2 Replies View Related

Ubuntu :: Trash Does Not Respond?

May 26, 2010

the Lucid Lynx - released in April 2010 I acedentally pull my scool folder into Trashï (i think the folder is 5 gb or omething.)i haven't empty my trash yet. But now i cant open trash, i press the Trash icon and then the window comes up, and then it does not respond?d to get in root but i cant get permissions. I have tried some ways in the terminal tget root permissions, i have password, but i still cant came inRoot

View 2 Replies View Related

Ubuntu :: Trash Will Not Delete?

Sep 21, 2010

I recently tried to delete some files off of my USB drive and it was being glitchy and really slow so I pulled the drive out and put it back in so it would read normally again. I now have an "untitled folder" in my trash that can't be deleted, and the error says "no such file or directory". Unlike a lot of the other problems I've read with not being able to delete the trash files, I don't think this is a permissions problem.

I probably made a stupid mistake and went into the .Trash-1000 folder for the USB drive itself and tried to delete the files, but each time I did that it just duplicated the original folder and renamed it, and now I can't delete those files either!

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved