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


ADVERTISEMENT

Ubuntu :: Unable To Delete Certain File From Wastebasket?

Feb 23, 2011

I have a problem deleting a certian file from a NTFS format 1TB USB HDD.

I attempted to MOVE the file (x.avi) to another directory on the same drive. On the MOVE process I accidently cancelled it. I then COPIED the file to another directory, this copied fine so i just need to delete the original x.avi.note; when I now attempt to move the original x.avi I get an error message: "Error while moving "x.avi". There was an error moving the file into /media/1TB/Movies. More details: Error moving file: Numerical result out of range. (I'm assuming a corrupted file)?

Lastly, every time i attempt to delete x.avi, it puts the file in the wastebasket but doesnt delete it; Every delete attempt makes a new file in the wastebasket (e.g. x, x.1, x.2, x.3, x.5 etc etc).

All other files/folders are fine its just this 1 folder/file.

View 9 Replies View Related

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 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 :: 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 :: 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

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

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

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 :: Recover From SSH Time-out?

Jan 4, 2010

Now and then I'll run a script or command on a remote system via SSH. Sometimes the script or command will run for quite some time, spewing output all the while. The command will continue to spit out lines and I'll walk away from the computer. When I come back, the SSH session will have timed out due to lack of user input, but if I log in again I can see in the process list that the script is still running.

Is there a way to hop back onto my old SSH session so I can continue to view the output of the script? Or do I actually have to type a random letter every N-minus-one minutes, N being the default SSH timeout value, in order to prevent the original SSH session from timeing out in the first place?

View 9 Replies View Related

Ubuntu :: Way To Recover Files

Apr 4, 2010

I have just installed Ubuntu and its great!

But unfortunately when I was installing it and I formatted my hard drive i forgot that I had important files from my windows partition, is there any way I can recover these files within Ubuntu? (Also new to linux so try to keep it simple.)

View 3 Replies View Related

Ubuntu :: How To Recover Grub2

May 27, 2010

Once again an update broke my Lucid When I start my laptop, I can't see the options to choose a kernal or Windows as I used to see before. know my grub is deleted or overwritten after recent automatic update (on 27th May 10). Now I have a bootable 10.04 CD.Please let me know how to recover the grub2. I don't want to reinstall my linux or windows.

View 5 Replies View Related

Ubuntu :: Way To Recover My Pictures

Jun 17, 2010

i decided to install ubuntu 10.4 and in the process i deleted my files (pictures).. i did not move from windows xp or 7. i was using ubuntu 9.10..please tell me there's a way to recover my pictures.

View 9 Replies View Related

Ubuntu :: How To Recover .C Files

Oct 31, 2010

Today by mistake I deleted all C programming files . I used rm *.c command for deleting. Now I want to recover it. I used scalpel by file type C is not specified. What shall I do now? These files are related to my project.

View 2 Replies View Related

Ubuntu :: Can't Log On In / Any Way To Recover System?

Jan 7, 2011

After a normal shutdown I tried to start my machine but it gets stuck in the login menu and I'm not able to type or move my mouse.When trying to start in the recovery mode, it gets stuck to.Is there any way to recover the system?

View 1 Replies View Related

Ubuntu :: How To Recover Data From 10.10

Jun 8, 2011

I've been using Ubuntu 10.10 on my EEE-PC for most of my thesis research, but I left it running a python script overnight and now I can't get it to login. I was running low on disk-space, and I think the problem is that the script generated a lot of text files and used up all of the available hard drive space.

Now, whenever I try to boot the machine, it reaches the user-select/login screen, but logging in just causes it to go black for a second before returning to the login screen. I have Ubuntu 11.04 on a USB, and Ubuntu Rescue Remix on another, and both allow me to boot up my machine, but I can't see my hard-drive - neither in /mnt/ nor in /media/ - in order to copy my thesis files or to delete some excess text files to free up some hard-drive space.

View 1 Replies View Related

Ubuntu :: How To Recover Emails In Thunderbird

Jan 1, 2010

By gross mistake I delated ALL my emails in my gmail account. I did this from thunderbird 3 so I deleted emails in the computer and the server. Fortunately my home folder still has the thunderbird 2 folder and and weighs 1.5 gigas with files callled inbox and sent mail weighting hundred of megas, so my emails ARE there.Problem is, when I open Thunderbird 2 the emails don't appear there. How can I get them back and into Google servers too?

View 7 Replies View Related

Ubuntu :: Recover Windows Vista ?

Jan 7, 2010

I currently have this laptop with Ubuntu 9.10 installed on it. A buddy of mine wants to buy the laptop from me but doesn't want Ubuntu on it instead he wants Vista on it. I have a 4GB USB stick and want to use it to do a clean install of Vista instead of the preconfigured Vista that is on a Recovery partition on the harddrive.

How to install Vista from USB but unable to find one with directions on how to copy the DVD or source files for Vista onto the USB within Ubuntu and still make it bootable.

View 3 Replies View Related

Ubuntu Networking :: How To Recover Wi-Fi Connection

Jan 19, 2010

have any difficulty with my W-iFi connection.From the very beginning my Ubuntu 9.10 together with Wi-Fi PCMCIA adapter worked perfectly and I had Internet connection out of the box.Then something happened.I do not have internet connection out of the box any longer.But if I do in terminal: nm-appletit magically appears!ut if I put to Startup Applications command: /usr/bin/nm-appletnothing happenns.What should I do to return my Ubuntu to it's original state, when I had Internet connection right after system start without any addition action?

View 2 Replies View Related

Ubuntu :: What To Do To Recover Data From Disks

Feb 7, 2010

I'm browsing on my phone which is not letting me scroll to the end of this text box so I will say thank you in advance for any replies now.After my computer was switched off abruptly after a power outage I have many errors upon booting. My hard drive setup consists of a RAID0 array of two 500GB sata disks. The partition table (from my head!) goes like this:50GB NTFS Windows XP /c/50GB ext4 Ubuntu 9.10 /4GB swapThe rest is a large NTFS partition all the way up to the end of the array at 987GB. Mounted at /media/share/I am thinking I will have to start again (I won't lose much, I have recent backups), but what is the best way of restoring the system as much as I can? Currently my computer has been booted into Ubuntu for over an hour, and after pressing ctrl+alt+shift+F2 I can see that it is finding errors still, now at sector 6008. Should I let this run its course or REISUB it and boot onto a live CD. I think the main problem is with an NTFS partition

View 1 Replies View Related

Ubuntu :: Forgot Password - Any Way To Recover?

Feb 21, 2010

I am running the latest xubuntu and I lost my password or so I think I might be typing it wrong, is there way to recover it (easy please).

View 2 Replies View Related

Ubuntu :: Recover Grub With Live Cd?

Mar 1, 2010

So here is my problem:

I'm trying to restore the grub using a ubuntu 9.10 live cd. I have two partitions in my computer, and i used the partition that contained Vista to install windows 7. Now, i'm trying to restore the grub so that i can also boot ubuntu.

When i do "sudo fdisk -l", the output is:

Disk /dev/sda: 120.0 GB, 120034123776 bytes
138 heads, 12 sectors/track, 141571 cylinders
Units = cylinders of 1656 * 512 = 847872 bytes
Disk identifier: 0x0fb3cfe1

[Code]....

View 9 Replies View Related

Ubuntu :: How To Recover Deleted Diretory

Mar 5, 2010

Ubuntu 9.10 64bit Is there any way to recover the directory including sub-directories which was removed with;

Code:

$ rm -rf directory

Only found

Code:

/home/user/.local/share/Trash/info/name_of_directory.trashinfo

View 5 Replies View Related

Ubuntu :: How To Recover Root Password

May 4, 2010

I forgot root password. I tried to follow this.[URL] But there is not waiting time for grub2. I hit ESC but failed ,ubuntu is booted by default. Now how can i recover root password?

View 4 Replies View Related

Ubuntu :: Trying To Recover Network Mgr. Icon?

May 14, 2010

How do I get my Network Manager icon back onto the desktop? I totally dorked out and removed it. Not sure why. I'm back on my Vista desktop now because I can't connect to the Internet on my new OS. I installed Ubuntu 10.04 LTS, (Gnome desktop). I'm totally new to the world of Linux/Ubuntu, free software, etc. and I'm also only about 18.5% geek,

View 7 Replies View Related

Ubuntu :: Won't Boot - Using Live CD To Recover

May 27, 2010

I'm not at all sure what happened, but now Ubuntu won't boot. A program just froze (as programs often do), so I shut down and rebooted, only to find pages and pages of gibberish about ATA sectors and stuff when I tried to get GRUB to load my usual Ubuntu platform (Karmic Koala). I tried "recovery" platforms and older ones, but no luck. I'm now using the Live CD and I've found an error saying "DISK HAS MANY BAD SECTORS" about my '160GB ATA Hitachi HTS542516K9SA00'. It apparently has 109 bad sectors, and the Live CD's assessment is that I "replace the disc".

View 4 Replies View Related

Ubuntu :: How To Recover From Ext4 Format

Jun 2, 2010

A friend installed Lucid on his system that has three hard drives. For some reason it installed on his secondary, data drive. Now all his files are gone. Is there a utility out there that would enable him to recover any files from this formatted disk?

View 2 Replies View Related

Ubuntu :: Recover Indicator Applets

Jun 8, 2010

I'm having an unexpected problem with my Gnome Panel in Ubuntu Lucid. The thing is that after I logged in, my Language Indicator Applet and the Network Connections Indicator Applet were missing in my PANEL.I've tried the typical installation method by pressing "Add to panel", but I cannot find any of these options in the list of applets.

View 3 Replies View Related







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