Old 07/28/2009, 02:25 PM   #21 (permalink)
Member
 
Join Date: Jul 2009
Posts: 124
Thanks: 10
Thanked 21 Times in 15 Posts
Default

is it possible to just make a disk image?
pico23 is offline   Reply With Quote
Old 07/28/2009, 03:39 PM   #22 (permalink)
Member
 
Join Date: Jun 2006
Posts: 43
Thanks: 1
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by pomplun View Post
The Pre spec says 8GB, ~7GB user available. When I look at it as a USB drive, Properties matches this 7GB number. Presumably these two are the same physical memory. In my case about 1GB is used. So contacts, calendar, memos, etc must be in here someplace. Where? Why can't a disk image backup program (like Acronis TrueImage?) completely back up my Pre?
The ~7GB that you see when connected via USB is actually a separate FAT32 partition, apart from the partitions used by the device itself for the OS and internal storage. The contacts, calendar, memos, etc. aren't on this "media" partition that's exposed via USB. Personally, my hope is that someone will come up with an app to easily copy the internal OS data *to* the "media" partition, which we could then offload to a PC via USB.

--John
jbennett is offline   Reply With Quote
Old 07/28/2009, 10:41 PM   #23 (permalink)
Member
 
Join Date: Jun 2009
Posts: 18
Thanks: 0
Thanked 4 Times in 2 Posts
Default

Well, there's this:

Backing Up via Rsync - WebOS Internals

Another option would be just good old tar. But the one on the device is weird...so you'll need gnutar, which can be found here:

http://ipkg.nslu2-linux.org/feeds/op...1.22-2_arm.ipk

after you install that, you could use gnutar to backup the filesystem to somewhere else, like the /media/internal space. So something like this, I think would work:

gnutar -cvzf /media/internal/bigbackup.tgz / --exclude /media --exclude /sys --exclude /proc --exclude /dev

Obviously -z is going to be slow because you're running it all through gzip, and that's a bit pokey on that little CPU. I think that syntax will exclude those four directories, which I think are full of stuff that can't be backed up. /sys is a particularly bad one to descend into--touching some of the files in there causes the phone to reboot.

Someone please school me on my commandline; I'm sure it's not as sophisticated as it could be.
bspesq is offline   Reply With Quote
Thanked By 3:
Old 07/29/2009, 02:41 AM   #24 (permalink)
Member
 
Join Date: May 2009
Location: Los Angeles,CA
Posts: 24
Thanks: 0
Thanked 5 Times in 2 Posts
Default

Anyone been able to confirm if any of these programs backup really everything !? Especially SMS, Call Logs, Bookmarks, and program settings ? I did a partial erase before and not willing to try that anytime soon again, till a real backup is available.
Thanks !
louboy23 is offline   Reply With Quote
Old 07/29/2009, 12:23 PM   #25 (permalink)
Member
 
Join Date: Jul 2009
Location: Orlando, FL
Posts: 36
Thanks: 13
Thanked 24 Times in 5 Posts
Default

Thanks for the info. I will look into several of those apps to find the right one.

Wish I would have done this before I inadvertently dumped all my data (my fault, wasn't paying close attention to the pop-ups on my computer when I was running WebOS Doctor). DOH!!!
Kelley B is offline   Reply With Quote
Old 07/31/2009, 05:17 AM   #26 (permalink)
Member
 
Join Date: Jul 2009
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

good info
yungthrilla is offline   Reply With Quote
Old 08/02/2009, 10:49 PM   #27 (permalink)
Member
 
Join Date: Jul 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

thx. It works
yung7928 is offline   Reply With Quote
Old 08/03/2009, 01:05 AM   #28 (permalink)
Member
 
bulls96's Avatar
 
Join Date: Jun 2007
Posts: 1,439
Thanks: 33
Thanked 39 Times in 30 Posts
Default

anyone tried a full restore from sync toy yet? not into homebrew apps or rooting yet so i am looking for a way to backup my SMS.
bulls96 is offline   Reply With Quote
Old 08/04/2009, 03:45 AM   #29 (permalink)
Member
 
Join Date: Jun 2009
Posts: 9
Thanks: 2
Thanked 2 Times in 1 Post
Default

So I take it that this method does in fact backup all settings/bookmarks/etc? This would be great news as my camera has stopped functioning (stuck on the gray camera icon screen) and I'll probably need to have my Pre replaced.

Now, does anybody know how I would go about restoring all this shiznit back to a new Pre? I've figured out how to access linux on the Pre, (thanks to all the tutorials on this forum) but I'm a newb when it comes to all the Linux command-line syntax (does bring back fond memories of the MS-DOS days though, ah... Wolfenstein 3D)

For instance, what would I have to type in to the phone to unpack this tgz file and replace the files that are on the new Pre? Also, would I simply do this by enabling dev mode and then accessing the root or would I have to put the phone into some other hypnotized zombie state where it won't get mad at me for tinkering with its innards. Wasn't sure if replacing these hidden files would mess with the OS while it was running.

P.S. Big ups to bspesq, (nice Bill & Ted reference btw), for getting us closer to the truth.
dmanlee is offline   Reply With Quote
Old 08/04/2009, 11:00 AM   #30 (permalink)
Member
 
Join Date: Jun 2009
Posts: 18
Thanks: 0
Thanked 4 Times in 2 Posts
Default

Sounds like you want to be the guinea pig

You might try the WebDoctor first if it's just the phone app itself that is ill. I've never used it, but it might be able to tell you if something is fixable (instead of the hassle of getting a replacement Pre)?

So I'd say yes--basically what you're saying is correct. After the backup, on a new/fresh device root it, copy your backup onto the USB media drive, and then (after sudo'ing to root), do something like:

(ipkg install of gnutar first)

cd /
gnutar -zxvf /media/internal/bigbackup.tgz .

(X is extract, Z is gzip'ed, v is verbose output, and f is file.) The dot means to restore into the current directory.

And yes it is possible that some binaries will be in use when you try to restore them. In general this is not a problem in unix-land, but if you have a fresh Pre you're probably not concerned about the binaries, anyway--what you're really after is your settings.

It would be most excellent if someone with the webos emulator could try the backups/restores on a virtual Pre and post their results.

(Hmm...I think the backup command I listed above is missing the '=' sign for each exclude statement. Either I didn't type it in, or the forum software removed it for some reason.)
bspesq is offline   Reply With Quote
Old 08/08/2009, 05:51 PM   #31 (permalink)
Member
 
Join Date: Jan 2009
Posts: 14
Thanks: 1
Thanked 1 Time in 1 Post
Default SMS Text backup

does any of these options back up sms texts? Sorry but will be getting my pre next week and have yet to see a solution posted.
jmantn is offline   Reply With Quote
Old 08/08/2009, 08:55 PM   #32 (permalink)
Member
 
bulls96's Avatar
 
Join Date: Jun 2007
Posts: 1,439
Thanks: 33
Thanked 39 Times in 30 Posts
Default

Quote:
Originally Posted by jmantn View Post
does any of these options back up sms texts? Sorry but will be getting my pre next week and have yet to see a solution posted.
i have been waiting for a root-free sms backup solution. anyone?
bulls96 is offline   Reply With Quote
Thanked By:
Old 08/15/2009, 10:03 AM   #33 (permalink)
Member
 
Join Date: Jun 2006
Posts: 299
Thanks: 14
Thanked 4 Times in 4 Posts
Default

I tried this procedure using synctoy. Somehow I screwed something up on the Pre. I could no longer access App catalog or updates. The last Pre backup was from the 12th, the day I was playing with synctoy. In addition, I could not access Palm profile. I did a partial reset and all is back. Will have to try this again. Any ideas as to what I could have done wrong? I like the idea.
todivefor is offline   Reply With Quote
Old 08/17/2009, 08:55 PM   #34 (permalink)
Member
 
Join Date: May 2003
Posts: 632
Thanks: 13
Thanked 77 Times in 55 Posts
Default

I was unable to install the gnutar ipk linked above using WebOS QuickInstall.
It said it had installed it without error, but it never shows up on the device.
I ended up having to unpack the ipk with gunzip and tar (or PC version of gnutar with -xzvf flags)
and copy the contents of opt/libexec and opt/bin in the archive, to Pre's media
share and then copy from there to Pre's /opt/libexec and /opt/bin
in root shell and chmod appropriately.

Running the gnutar command as shown above, but without z compression flag
created a tar archive of 395 Megs. Adding compression burns a lot
of CPU, takes a *long* time but only nets about 2:1 compression ratio.

ian
Daemon is offline   Reply With Quote
Old 08/17/2009, 09:44 PM   #35 (permalink)
Member
 
Join Date: Apr 2007
Posts: 876
Thanks: 79
Thanked 88 Times in 68 Posts
Default

Quote:
Originally posted by todivefor:
I tried this procedure using synctoy. Somehow I screwed something up on the Pre. I could no longer access App catalog or updates. The last Pre backup was from the 12th, the day I was playing with synctoy. In addition, I could not access Palm profile. I did a partial reset and all is back. Will have to try this again. Any ideas as to what I could have done wrong? I like the idea.
I've used SyncToy a few times. After my second full erase, I learned to change the setting, copy my desktop folder and rename it. The extra copy gives me the ability to try again if I mess up the sequence the first time. You're wanting to use the Eco functions, but you're also wanting to make sure that your desktop copy is the folder on the left. If you're scared, just use contribute and then go back and delete the unwanted extras from your desktop copy and resync using the synchronize function.
bdhu2001 is offline   Reply With Quote
Old 08/19/2009, 01:04 PM   #36 (permalink)
Member
 
BMIC50's Avatar
 
Join Date: Jul 2004
Location: Boo-val,FL
Posts: 2,119
Thanks: 120
Thanked 108 Times in 87 Posts
Default

My keyboard stopped working, so I finally resulted in a partial erase. Upon restore, I was disappointed that it seemed to not have restored the data inside of SplashID, and no matter what I did, I couldnt get my contacts to sync back (stored on my Gmail account). I am growing frustrated...scratch that! I am ****ED! I run Sync Toy at home and will try to re-sync when I get there, but something is telling me that it wont restore these items. And I thought it was supposed to save my accounts. I only have my main Gmail account and the Palm account showing. What is the freakin point of Palm Backup if these basic things are NOT backed up??! This has got to be the BIGGEST issue I have ran into since June 6th and I am NOT a happy camper!!!
BMIC50 is offline   Reply With Quote
Old 08/19/2009, 08:15 PM   #37 (permalink)
Member
 
Join Date: Apr 2007
Posts: 876
Thanks: 79
Thanked 88 Times in 68 Posts
Default

Quote:
Originally posted byBMIC50
. . .and no matter what I did, I couldnt get my contacts to sync back (stored on my Gmail account). . .I run Sync Toy at home and will try to re-sync when I get there, but something is telling me that it wont restore these items.
I don't know what is happening to your Gmail account. A few people have had to totally delete the account from their phone an re-enter it. I would recommend that. As far as SplashID goes, Sync Toy did restore my records; but I also had the desktop version for Backup.
When it comes to my bookmarks, I back them up in a mobile sites folder in Xmarks. Then I pull them up on my phone and re-book any sites that need to be rebook marked on my phone.

My Backup system is a touch of overkill, but on a Beta phone, it makes me feel comfortable and I'm always able to get important information back.
bdhu2001 is offline   Reply With Quote
Old 08/20/2009, 01:17 PM   #38 (permalink)
Member
 
BMIC50's Avatar
 
Join Date: Jul 2004
Location: Boo-val,FL
Posts: 2,119
Thanks: 120
Thanked 108 Times in 87 Posts
Default

I tried replacing the data on my Pre (synced by SyncToy) with the data on my computer, but that did nothing. I guess I needed to have some hack for it to see the full filesystem. I will do more research on that soon because I cannot afford to lose all of the info I lost again!
BMIC50 is offline   Reply With Quote
Old 08/20/2009, 05:22 PM   #39 (permalink)
Member
 
Join Date: Apr 2007
Posts: 876
Thanks: 79
Thanked 88 Times in 68 Posts
Default

What settings did you use for sync Toy? Was it your SplashId are Google that you need to retrieve? Do you update w/ SplashId desktop & export?
bdhu2001 is offline   Reply With Quote
Old 08/25/2009, 07:29 PM   #40 (permalink)
Member
 
Join Date: Feb 2009
Posts: 211
Thanks: 7
Thanked 4 Times in 3 Posts
Default

So that's it huh? Anyone yet tried a third party conduit and use Palm Desktop? Or anything other than (I hate it) Outlook?
Zorro1 is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 11:52 AM.

Creating smartphone communities
Android Central - Android reviews, news and forums Crackberry - Blackberry news, reviews and community TiPb - iPhone news, accessory reviews & forums
Pre Central - Palm Pre Review, News and Community Treo Central - Treo & Centro News and Forums WMExperts - Windows Mobile Reviews & News

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0