View Single Post
Posts: 131 | Thanked: 78 times | Joined on May 2010
#309
Originally Posted by Nipperoid View Post
Steve, is there a way if i put a ton of apk's on mydocs, to install them all at once?
Mount your mem card, then copy them from MyDocs (or the folder you have them in) to your mounted memory card's /system/app folder, i.e.

Code:
sudo mount /dev/mmcblk1p2 /and
cp /home/user/MyDocs/*.apk /and/system/app
sudo umount /dev/mmcblk1p2
note: I'm not sure you can do the ".apk" part. just remove it if you can't
i'd suggest putting all your apk's in a diff folder, i.e. create an apk folder:

Code:
sudo mount /dev/mmcblk1p2 /and
cp /home/user/MyDocs/apk/* /and/system/app
sudo umount /dev/mmcblk1p2