PDA

View Full Version : How to get a list of whats installed from Cydia??




iMrNiceGuy0023
Oct 14, 2009, 05:57 PM
is there a file on the iphone that will show all the 3rd party apps and everything downloaded from Cydia??



ViViDboarder
Oct 14, 2009, 05:59 PM
Open Cydia
Touch Manage on the bottom
Touch Packages

Mystikal
Oct 14, 2009, 05:59 PM
Or use PkgBackup (not free in cydia.)

iMrNiceGuy0023
Oct 14, 2009, 06:05 PM
I was thinking more of SSHing into it to view a file stored on the iPhone..I need to restore my phone and cant access anything on my phone via touch screen

ViViDboarder
Oct 14, 2009, 06:08 PM
I was thinking more of SSHing into it to view a file stored on the iPhone..I need to restore my phone and cant access anything on my phone via touch screen

You can always use apt commands if you have Apt installed.

foob
Oct 14, 2009, 06:36 PM
You can run dpkg -l to get a list of installed packages. I think it is installed with Cydia. Apt has to be installed seperately. The file /var/lib/dpkg/status lists everything you have installed plus a lot more info such as dependencies. "cat /var/lib/dpkg/status | grep Package" will list only the names of everything installed.

sparrky
Oct 14, 2009, 06:53 PM
http://www.todaywasawesome.com/2009/04/08/backup-cydia-apps-iphone/

from link:
..fire up the terminal and create a file to store our list. This can all be handled with one command.

dpkg --get-selections > myapps.txt

Putting this code into terminal will create a text file called “myapps.txt” which contains all the selections you’ve made in Cydia.

Edit: I just tried this way and foob's way and foob's is MUCH better. Just drag the file to your desktop and open with wordpad.