skyleth
|
2012-08-06
, 08:11
|
Posts: 88 |
Thanked: 14 times |
Joined on Apr 2012
|
#1
|
|
2012-08-09
, 20:11
|
Posts: 1,463 |
Thanked: 1,916 times |
Joined on Feb 2008
@ Edmonton, AB
|
#3
|
|
2012-08-09
, 20:20
|
Posts: 88 |
Thanked: 14 times |
Joined on Apr 2012
|
#4
|
|
2012-08-09
, 22:26
|
Posts: 21 |
Thanked: 2 times |
Joined on Feb 2010
|
#5
|
i'm planning to reflash the phone and i'm wondering if there are any apps that would make a backup of currently installed apps to restore them after flashing, something like titanium backup/mybackup pro in android to backup the packages, or like in n900/ubuntu (http://talk.maemo.org/showthread.php?t=64648) at least a list of installed packages
|
2012-08-09
, 22:49
|
Posts: 123 |
Thanked: 457 times |
Joined on Feb 2012
|
#6
|
The Following 3 Users Say Thank You to Vesuri For This Useful Post: | ||
|
2012-08-09
, 23:02
|
|
Posts: 4,365 |
Thanked: 2,467 times |
Joined on Jan 2010
@ Australia Mate
|
#7
|
The Following User Says Thank You to F2thaK For This Useful Post: | ||
|
2012-08-09
, 23:58
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#8
|
You can use
osa --get packagename > packagename.deb
or, as root,
apt-get -d install --reinstall packagename
to download the debian packages of Store applications locally. In the first case the package will be in packagename.deb and in the second case in /var/cache/apt/archives/packagename_version_armel.packagename. You can then move the packages to /home/user/MyDocs and then backup them as you wish. Use pkgmgr install-file -f packagename.deb to reinstall the packages.
Note that this is NOT the same as reinstalling them from the Store though. In this case the installation source is not the Store and thus some security credentials may be missing, potentially leading in misbehaving apps. Also, the applications won't get automatic updates from the Store because they were installed from local debian packages. Most applications will work though and it's often better to have at least some version of the application available than repaying for the application because the download count (a really stupid idea!) was exceeded.
#!/bin/sh dpkg -i /home/user/MyDocs/Downloads/n9-qtweakmy_8.4* cd /home/user/MyDocs/Programs/Entertainment dpkg -i audio* cute* dict* fbr* easy* imgr* mpl* kmpl* reco* sket* sleep* trans* cd /home/user/MyDocs/Programs/Internet dpkg -i opera* titan* cd /home/user/MyDocs/Programs/GPS dpkg -i geeps* waze* cd /home/user/MyDocs/Programs/Games dpkg -i airat* battle* samur* sovie* gtrac* angry* unrav* cd /home/user/MyDocs/Programs/System dpkg -i auto* speaker* batt* callrec* drop* fileb* organ* profile* rest* screenca* screensh* toggle* aegis* org.formeego* txpad*
sh /path/to/my/script.sh
The Following 3 Users Say Thank You to Schturman For This Useful Post: | ||
|
2012-08-10
, 04:51
|
Posts: 5,795 |
Thanked: 3,151 times |
Joined on Feb 2007
@ Agoura Hills Calif
|
#9
|
|
2012-08-10
, 05:13
|
Posts: 301 |
Thanked: 275 times |
Joined on Dec 2010
|
#10
|