[Q] Easy way to convert to Froyo A2SD?? - G1 Android Development

Hey Everyone,
Is anyone else having major issues getting all their apps over to Froyo's Apps2SD? I cant restore my apps using Froyo-compatible apps like Titanium Backup, I cant download them from the market because if fails during the install. Only way ive found that works (but is manual and tedious) is to install to internal, and then "Move to SD" for each app.
Till Apps2EXT gets officially implemented in CM6, does anyone know of a better method of converting to the Froyo Apps2SD. I have BART backups and all the apks, but nothing seems to work for batch install.
I am using the updated gapps that was posted for the market fix, btw
Thanks!

zimphishmonger said:
Hey Everyone,
Is anyone else having major issues getting all their apps over to Froyo's Apps2SD? I cant restore my apps using Froyo-compatible apps like Titanium Backup, I cant download them from the market because if fails during the install. Only way ive found that works (but is manual and tedious) is to install to internal, and then "Move to SD" for each app.
Till Apps2EXT gets officially implemented in CM6, does anyone know of a better method of converting to the Froyo Apps2SD. I have BART backups and all the apks, but nothing seems to work for batch install.
I am using the updated gapps that was posted for the market fix, btw
Thanks!
Click to expand...
Click to collapse
This is the part where I post a sarcastic pic and tell you to GTFO.
But I too am having the same problem. I tried to use ADB and DroidExplorer to batch install my backed up apps but they both failed.
I really want to use CM6 on a daily basis but I can't without my favorites apps.

There's a thread you might have missed where firerat has an implementation... for now.
Go check it out and I think you might be happier...
Sent from my HTC Dream using XDA App

philosophics said:
There's a thread you might have missed where firerat has an implementation... for now.
Go check it out and I think you might be happier...
Sent from my HTC Dream using XDA App
Click to expand...
Click to collapse
I saw that he put together a quick script for it, but I also heard that it slows things down. Might give it a shot anyways, though.
If anyone else has a good method of converting over to Froyo A2SD, def leave word here

apps
Z҉A҉L҉G҉O̚̕̚ said:
This is the part where I post a sarcastic pic and tell you to GTFO.
But I too am having the same problem. I tried to use ADB and DroidExplorer to batch install my backed up apps but they both failed.
I really want to use CM6 on a daily basis but I can't without my favorites apps.
Click to expand...
Click to collapse
same here i got over 300 apps and even though i dont use all of em i cant commit to cm6 without em. yes im an app addict.

found the apps2sd for cm6 aka froyo:
install firerats recovery 1.3 patch, install cm6,install gapps1-2.zip, install firerats boot 1.2,reboot,...
for apps2sd:
just re-install the apps one by one. theres no other fix as of now. nahh jus kiddin i found this **** earlier for you who missed it: http://forum.xda-developers.com/showthread.php?t=722861

B6gSix said:
found the apps2sd for cm6 aka froyo:
install firerats recovery 1.3 patch, install cm6,install gapps1-2.zip, install firerats boot 1.2,reboot,...
for apps2sd:
just re-install the apps one by one. theres no other fix as of now. nahh jus kiddin i found this **** earlier for you who missed it: http://forum.xda-developers.com/showthread.php?t=722861
Click to expand...
Click to collapse
That slowed down my phone.

B6gSix said:
found the apps2sd for cm6 aka froyo:
install firerats recovery 1.3 patch, install cm6,install gapps1-2.zip, install firerats boot 1.2,reboot,...
for apps2sd:
just re-install the apps one by one. theres no other fix as of now. nahh jus kiddin i found this **** earlier for you who missed it: http://forum.xda-developers.com/showthread.php?t=722861
Click to expand...
Click to collapse
The second file always gives an error, and Im currently using Firerat's patch to enable app2sd, although its a lil slow. I am looking for a method to batch install apps to froyo a2sd (on FAT)

zimphishmonger said:
The second file always gives an error, and Im currently using Firerat's patch to enable app2sd, although its a lil slow. I am looking for a method to batch install apps to froyo a2sd (on FAT)
Click to expand...
Click to collapse
Batch install on internal worked fine (titanium 2.9.7.6, 150 apps), it's better than nothing.I use FR data patch (85 instead of 55MB free space).

robuser007 said:
Batch install on internal worked fine (titanium 2.9.7.6, 150 apps), it's better than nothing.I use FR data patch (85 instead of 55MB free space).
Click to expand...
Click to collapse
Ya, I found that internal worked okay as well w/ Titanium backup. I just have to manually move all of them to the SD card :-|
I havent had any luck installing directly to the SD card, it gives an error each time, both when installing APKs within Android and using ADB
EDIT: Seems the only method working for me is to restore to internal, and "move to sd" (you need to enable it in CM settings)

zimphishmonger said:
Ya, I found that internal worked okay as well w/ Titanium backup. I just have to manually move all of them to the SD card :-|
I havent had any luck installing directly to the SD card, it gives an error each time, both when installing APKs within Android and using ADB
EDIT: Seems the only method working for me is to restore to internal, and "move to sd" (you need to enable it in CM settings)
Click to expand...
Click to collapse
this would move everything in /data/app to the FroYo sd
Code:
#!/system/bin/sh
#
# move all apps from /data/app/ to /sdcard/.android_secure ( FroYo apps2ext )
pm setInstallLocation 2
for apk in `ls /data/app/*apk`;do
cp $apk /dev/temp.apk
echo "uninstalling $apk"
pm uninstall -k `awk -F \" '/'\`basename $apk\`'/ { print $2 }' /data/system/packages.xml`
echo "reinstalling $apk"
pm install /dev/temp.apk
done
rm /dev/temp.apk
takes a while..
and it will move everything !!
change
for apk in `ls /data/app/*apk`;do
to
for apk in `ls /data/app/*apk|egrep -v "app1|app2|app3"`;do
where app1,2 and 3 are the ones you wish to keep on internal

BRILLIANT!
Firerat said:
this would move everything in /data/app to the FroYo sd
Code:
#!/system/bin/sh
#
# move all apps from /data/app/ to /sdcard/.android_secure ( FroYo apps2ext )
pm setInstallLocation 2
for apk in `ls /data/app/*apk`;do
cp $apk /dev/temp.apk
echo "uninstalling $apk"
pm uninstall -k `awk -F \" '/'\`basename $apk\`'/ { print $2 }' /data/system/packages.xml`
echo "reinstalling $apk"
pm install /dev/temp.apk
done
rm /dev/temp.apk
takes a while..
and it will move everything !!
change
for apk in `ls /data/app/*apk`;do
to
for apk in `ls /data/app/*apk|egrep -v "app1|app2|app3"`;do
where app1,2 and 3 are the ones you wish to keep on internal
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Firerat said:
this would move everything in /data/app to the FroYo sd
Code:
#!/system/bin/sh
#
# move all apps from /data/app/ to /sdcard/.android_secure ( FroYo apps2ext )
pm setInstallLocation 2
for apk in `ls /data/app/*apk`;do
cp $apk /dev/temp.apk
echo "uninstalling $apk"
pm uninstall -k `awk -F \" '/'\`basename $apk\`'/ { print $2 }' /data/system/packages.xml`
echo "reinstalling $apk"
pm install /dev/temp.apk
done
rm /dev/temp.apk
takes a while..
and it will move everything !!
change
for apk in `ls /data/app/*apk`;do
to
for apk in `ls /data/app/*apk|egrep -v "app1|app2|app3"`;do
where app1,2 and 3 are the ones you wish to keep on internal
Click to expand...
Click to collapse
Thanks FR!

terminal
Firerat said:
this would move everything in /data/app to the FroYo sd
Code:
#!/system/bin/sh
#
# move all apps from /data/app/ to /sdcard/.android_secure ( FroYo apps2ext )
pm setInstallLocation 2
for apk in `ls /data/app/*apk`;do
cp $apk /dev/temp.apk
echo "uninstalling $apk"
pm uninstall -k `awk -F \" '/'\`basename $apk\`'/ { print $2 }' /data/system/packages.xml`
echo "reinstalling $apk"
pm install /dev/temp.apk
done
rm /dev/temp.apk
takes a while..
and it will move everything !!
change
for apk in `ls /data/app/*apk`;do
to
for apk in `ls /data/app/*apk|egrep -v "app1|app2|app3"`;do
where app1,2 and 3 are the ones you wish to keep on internal
Click to expand...
Click to collapse
just to be clear i run this in terminal or adb correct? and do this AFTER i installed apps or before?

smuvman said:
just to be clear i run this in terminal or adb correct? and do this AFTER i installed apps or before?
Click to expand...
Click to collapse
after
it does take quite a long time,
but I guess its quicker/easier than going through the manage application settings bit.

smuvman said:
just to be clear i run this in terminal or adb correct? and do this AFTER i installed apps or before?
Click to expand...
Click to collapse
Now that I think about it. How DO we suppose to install the script? Is it an a2sd or userint.sh script, or an ADB/Terminal command?

Z҉A҉L҉G҉O̚̕̚ said:
Now that I think about it. How DO we suppose to install the script? Is it an a2sd or userint.sh script, or an ADB/Terminal command?
Click to expand...
Click to collapse
you can just
adb shell
then copy and paste that code block
or , save as text, put on sdcard
Code:
su
dos2unix /sdcard/thesrcipt.txt
sh /sdcard/thesrcipt.txt

Firerat said:
you can just
adb shell
then copy and paste that code block
or , save as text, put on sdcard
Code:
su
dos2unix /sdcard/thesrcipt.txt
sh /sdcard/thesrcipt.txt
Click to expand...
Click to collapse
Thank you. You brilliant, brilliant man .

YESS!
Z҉A҉L҉G҉O̚̕̚ said:
Now that I think about it. How DO we suppose to install the script? Is it an a2sd or userint.sh script, or an ADB/Terminal command?
Click to expand...
Click to collapse
and here i was wondering if you were gonna post some pic for me asking that. haha thanx alot firerat this was the one thing stopping me from using cm6 daily. last qeustion though, i have over 300 apps (i know useless) so just say i install half and i see mem space goes down then i use this code can i reboot then install the rest and use the code again?

method works
i tried it on a few apps just to test and it works. only prob is i get :failure container error on some apps. i think it may be because they are not froyo ready. have to leave but will post logcat when i get back. thanx again firerat

Related

A2SD on Haykuro's 6.0r1

Morning all (in my part of the world)
Has anyone been able to get A2SD working on H's latest ROM yet?? I've tried afew things apps and adb wise and they seem to lock up the phone on the HTC screen with the (now annoying) chime, I've Reflashed on got everything running as normal so its just getting the A2SD bit working
Any Advice is much appreciated
Additionally im also experiencing issues with the drawer appearing at the bottom of the screen and the icons messing up when sliding the screen out
Thought i would throw up a screen shot for giggles
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I came from dudes 1.1a, had apps and dalvik done with the "apps2sd2" app (on dudes).
after flashing new haykuro,i installed the old "apps2sd" app and got everything working again ;-)
maybe you should give it a try (formating sd by yourself, and the rest with "apps2sd" from maximus)
did you wipe for your ROM change or just Alt+S it??
Dantehman said:
Morning all (in my part of the world)
Has anyone been able to get A2SD working on H's latest ROM yet?? I've tried afew things apps and adb wise and they seem to lock up the phone on the HTC screen with the (now annoying) chime, I've Reflashed on got everything running as normal so its just getting the A2SD bit working
Any Advice is much appreciated
Additionally im also experiencing issues with the drawer appearing at the bottom of the screen and the icons messing up when sliding the screen out
Click to expand...
Click to collapse
It should work, it all depends how many apps. you have. you need to wait a while, since its installing all your all apps. that you had before........The home screen on landscape is not an issue, since the magic does not have a landscape mode on the home screen it does this. You can replace it with a alternative home so you won't have this issue, or use adb to push the launcher.apk that works right with screen home screen.
cholito said:
It should work, it all depends how many apps. you have. you need to wait a while, since its installing all your all apps. that you had before........The home screen on landscape is not an issue, since the magic does not have a landscape mode on the home screen it does this. You can replace it with a alternative home so you have this issue, or use adb to push the launcher.apk that works right with screen home screen.
Click to expand...
Click to collapse
Already taken care of the Launcher (2nd and 9th Posts) http://forum.xda-developers.com/showthread.php?t=518042
and I wiped my ex2 partition already so im looking at 0 appidge, but the issue is it getting sutck at the splash screen and looping with the (annoying) HTC chime, it wont budge
Im gonna get home from work later on and try formatting my card again by wiping everyhting off it and starting 100% fresh and ill first try
Haykuros A2SD via ADB
Then try..
The origional Apps2SD App
Failing that..
The new and improved Apps 2 SD Method
And ill report back with updates
Yeah, the old method works (the one where you have to use symlinks) but the newer, better method does not because Haykuro hasn't added unionfs into his kernel yet.
I tried flashing JF's boot.img from his ADP1.50 build through fastboot, but it caused half of the apps to force close so I had to wipe and reflash 6.0r1... apparently, Haykuro is working on it... he seems to be focusing more on Sapphire/Magic right now...
Dantehman said:
did you wipe for your ROM change or just Alt+S it??
Click to expand...
Click to collapse
i flashed haykuro, then (before starting) did a wipe, don`t know if necessary?
then i installed appstosd (the old one), removed the "first time" and made apps to sd.
after reboot it took a while, then all apps appeared ;-)
again appstosd, made dalvik cache to sd.
after reboot again it took a while (5 minutes or so), then 90 apps free space 75MB ;-)
i think formating sd by yourself and the old appstosd app should work ;-)
If thats the case im going to totally erase my card + partitions,
then try the Apps 2 SD app and see what happens
if not, amgupt01 do you have a linky for the old method?? (or im i being noobish and its the Haykuro's A2SD 5.0.x onwards i need to follow)
Dantehman said:
If thats the case im going to totally erase my card + partitions,
then try the Apps 2 SD app and see what happens
if not, amgupt01 do you have a linky for the old method?? (or im i being noobish and its the Haykuro's A2SD 5.0.x onwards i need to follow)
Click to expand...
Click to collapse
lol, it's the one for 5.0.x onwards.
amgupt01 said:
lol, it's the one for 5.0.x onwards.
Click to expand...
Click to collapse
Followed and Failed, looping on the splash screen with the chime,,,, as didnt put into silent,,, aargh its killing my ears lmao
anyone have any ideas???
pulling battery now!
====== UPDATE ======
Alt+S (just for fun, to see if it does anything)
Dantehman said:
pulling battery now!
====== UPDATE ======
Alt+S (just for fun, to see if it does anything)
Click to expand...
Click to collapse
if you came into recovery, there should be no real problem?
still your apps on sd?
try the "appstosd" app (old one)?
EPIC FAIL
Alt+W
Alt+S
Keyboard Back up and running
Stuck where i was,
seems the Origional A2SD theory has left me high and dry
(all this wiping and reflashing, maybe i should learn how to use nandroid and make a backup lmao!)
Haykuros Apps to SD tutorial worked fine for me.
I formatted my ext2 partition first after coming from jf1.5 just to start clean.
Setup in 5.0.1 onward
http://android-dls.com/wiki/index.php?title=Haykuro_Apps_to_SD
hope it helps.
Success!!!!!!
The Origional A2SD APP works!!!!!
Wahoo
-Those who are keen eyed will notice that this is my old picture,,, the reason ive put this up is because i have 86mb FREE AGAIN on this ROM
here's what i did :
1. nandroid backup
2. alt+w, alt+s, reboot
3. open terminal emu, rm all folders in /system/sd from H1.5r3, reboot
4. busybox cp -a /data/app /system/sd/
busybox cp -a /data/app-private /system/sd/
busybox cp -a /data/dalvik-cache /system/sd/
busybox cp -a /data/data /system/sd/
5. rm -r /data/app
ln -s /system/sd/app /data/app
rm -r /data/app-private
ln -s /system/sd/app-private /data/app-private
rm -r /data/data
ln -s /system/sd/data /data/data
rm -r /data/dalvik-cache
ln -s /system/sd/dalvik-cache /data/dalvik-cache
6. reboot
7. enjoy
Been running smooth ever since, 1gb ext2 partition w/ 150ish apps installed, 88mb internal mem free.
If you had Klaxon installed before you went to the H build, thats probably the culprit. It will put your phone in a continuos loop at boot screen.
kchino said:
If you had Klaxon installed before you went to the H build, thats probably the culprit. It will put your phone in a continuos loop at boot screen.
Click to expand...
Click to collapse
that and " owner" and a few other programs.
on a side note, after thinking about it last night after looping mine about 10 times...
i think it prob is necessary to reformat the sd, so back it all up jic , then the old a2sd prog seems to work for most folks. the only guys that seem to get it to work are ether coming from a clean sheet, or an H build...
also, i think if your coming from a non H build and you use backup for root it seems to loop.
ichibanpnoy said:
here's what i did :
1. nandroid backup
2. alt+w, alt+s, reboot
3. open terminal emu, rm all folders in /system/sd from H1.5r3, reboot
4. busybox cp -a /data/app /system/sd/
busybox cp -a /data/app-private /system/sd/
busybox cp -a /data/dalvik-cache /system/sd/
busybox cp -a /data/data /system/sd/
5. rm -r /data/app
ln -s /system/sd/app /data/app
rm -r /data/app-private
ln -s /system/sd/app-private /data/app-private
rm -r /data/data
ln -s /system/sd/data /data/data
rm -r /data/dalvik-cache
ln -s /system/sd/dalvik-cache /data/dalvik-cache
6. reboot
7. enjoy
Been running smooth ever since, 1gb ext2 partition w/ 150ish apps installed, 88mb internal mem free.
Click to expand...
Click to collapse
APPRECIATED!! i almost gave up on the build and went back to JF's.. 88meg free

Guide to remove Moxier mail and replace with new version

Hi
This is for those who actually use Moxier mail to get that needed exchange fix!
I use exchange for my job, so I needed this one badly, and I would like the newest one with nice little widgets. Unfortunately this can not be done out of the box, because when you try to install the newest version, the installer still detects the old one.
The problem is that the package information is still present in the package.xml file.
To fix this, you need to have completed to rooting guide!
http://forum.xda-developers.com/showthread.php?t=711907
Remember also to see post number two inside that thread, since su needs to be working properly. I can also recommend to download the latest version of busybox inside the Android Marked, this will provide you with mere unix/linux basic commands.
Another tool I use is SciTE, this is for editing the xml file, notepad will do, as long as you make sure to save as ASCII.
http://prdownloads.sourceforge.net/scintilla/Sc212.exe
Ok, now for the guide.
Go into your step4 folder from the ROOT folder (see root thread)
run the following commands.
**UPDATE**
In case moxier still exist more actions is needed, this is now included in this one! Also added backup of the original files both moxier and packages.
Code:
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
adb shell
su
mkdir /sdcard/backup
cp /system/app/moxiermail* /sdcard/backup
rm /system/app/moxiermail*
Code:
adb pull /data/system/packages.xml .
You will now have a file named packages.xml inside your working folder.
Open this file inside you editor.
search for com.moxier.mail
delete the following content
Code:
<package name="com.moxier.mail" codePath="/system/app/moxier.apk" system="true" ts="1277719108000" version="2153" userId="10019">
<sigs count="1">
<cert index="61" key="long key number here!" />
</sigs>
</package>
Save the file.
Now We need to get the file onto the device.
Run
Code:
adb push packages.xml /sdcard/packages.xml
adb shell
su
cp /data/system/packages.xml /sdcard/backup/packages.xml
cp /sdcard/packages.xml /data/system/packages.xml
chown system:system /data/system/packages.xml
chmod 664 /data/system/packages.xml
rm /sdcard/packages.xml
reboot
Now you are free to install Moxier from market or from the official website, finally we can get the newest version instead of SEs old version.
** UPDATE 2 **
If moxier report an error with install after this, install the version from the /sdcard/apps/moxiermail.apk (from the root) or /sdcard/backup, then uninstall, this can now be done, since we removed the package from packages.xml as a system application. You should now be able to install moxier from market.
Feel free to ask any questions.
Just out of curiousity, does this allow you to upgrade the moxier client that came free on the phone, or just allow you to uninstall that and purchase a newer version of moxier for 30 bucks?
Sent from my X10a using XDA App
uabtodd said:
Just out of curiousity, does this allow you to upgrade the moxier client that came free on the phone, or just allow you to uninstall that and purchase a newer version of moxier for 30 bucks?
Sent from my X10a using XDA App
Click to expand...
Click to collapse
Unfortunately it is not possible to update the one provided by SE, even if you reinstall the application after the fix.
does it update to the lastest with step4 v2?
robbyf66 said:
does it update to the lastest with step4 v2?
Click to expand...
Click to collapse
No, you have to get the latest Moxier from moxier.com, Android Marked or from another source if you already have paid for the application on another phone.
This method cleans the X10 from any moxier reference, so that the application can be installed in the user domain instead of a system app (where we can't update the applications without SE).
I had thought that changes firmware version to R2BA020 included updated moxier?
I'll try to steps after my 4th root. lol. I need exchange for work.
I'm on the stock firmware(with Rogers in canada.. don't remember what its called) and exchange works fine for me on Moxier... use it regularly at work so its pretty useful
Edit: Sorry, misread your post. The new version has widgets? Coool
robbyf66 said:
I had thought that changes firmware version to R2BA020 included updated moxier?
Click to expand...
Click to collapse
SE only included a small updates version 2.1.58.3, this one is from February 17th, the newest version is 2.7 and is from May 26.
pngface said:
I'm on the stock firmware(with Rogers in canada.. don't remember what its called) and exchange works fine for me on Moxier... use it regularly at work so its pretty useful
Edit: Sorry, misread your post. The new version has widgets? Coool
Click to expand...
Click to collapse
Yeah, the widget came in 2.5 (finally)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I can afford to pay 25 for the extra features.
Should be able to upgrade via market imo
Sent from my X10i using XDA App
I allready removed the Moxierfolder and tried to install 2.5 but it's still a system application. Your walkthrough doesnt work here because of that. What can I do?
I editted the packages.xml file by copying it to my sd card en editting it on the computer. When i want to replace the original xml file can i use the following code?
Code:
cp /sdcard/packages.xml /data/system/packages.xml
chown system:system /data/system/packages.xml
chmod 664 /data/system/packages.xml
rm /sdcard/packages.xml
Erwinn said:
I allready removed the Moxierfolder and tried to install 2.5 but it's still a system application. Your walkthrough doesnt work here because of that. What can I do?
I editted the packages.xml file by copying it to my sd card en editting it on the computer. When i want to replace the original xml file can i use the following code?
Code:
cp /sdcard/packages.xml /data/system/packages.xml
chown system:system /data/system/packages.xml
chmod 664 /data/system/packages.xml
rm /sdcard/packages.xml
Click to expand...
Click to collapse
Yes you can, as long you are root on your phone. After this, install the OLD version of moxier and uninstall it again, this will update all the phones databasen and you can now install the newest moxier.
What do these commands do?
chown system:system /data/system/packages.xml
chmod 664 /data/system/packages.xml
Cant I not just edit the file and then overwrite the old one with the new editted one using a file manager like Root explorer? Or do these commands do something to the file as well?
this sets the file permissions for the file, and yes, you need to set them in order to get it working.
rofl, anybody needs moxier-mail? Noooo...
QuentinCosta said:
rofl, anybody needs moxier-mail? Noooo...
Click to expand...
Click to collapse
Yes it's actually a pretty good application for exchange users. Probably better than any I have used in the past.
Candy[MAN] said:
What do these commands do?
chown system:system /data/system/packages.xml
chmod 664 /data/system/packages.xml
Cant I not just edit the file and then overwrite the old one with the new editted one using a file manager like Root explorer? Or do these commands do something to the file as well?
Click to expand...
Click to collapse
You should do:
chown system.system /data/system/packages.xml
if you do chown system:system /data/system/packages.xml it will return:
"No such user system:system" as it won't detect the : as a separator between user and group.
Hope this helps some of you!
Speaking of the Moxier, do we actually need them? How do I remove / delete them? I tried, but couldn't, for some reasons.
If u don't use it then u don't ready need it. Your phone needs to be rooted in order to remove it!
Sent from my rooted 026 X10i using swype via Xda
Hi
can anyone make a script in .exe for dummies.
i dont understand all that stuff about programming.
anyone??
Singh
Q: How could you guys access the control prompt panel? Or the code panel, whatever you called it nowadays?

[SCRIPT][6/19/2011] Inspirefy 1.1 for CM7 nightly - Delete stuff & Replace stuff

Hello, I wrote this shell script to make the CM7 nightly the way I like. It was a pain to do it manually every time I would flash a new nightly.
NOOB WARNING:
THIS SCRIPT IS FOR CM7 NIGHTLY ONLY. IT MAY WORK FOR OTHER CM7 BASED ROM BUT USE IT AT YOUR OWN RISK. IT DELETE SOME FILES ON THE /SYSTEM/APP AND MODIFY YOUR BUILD.PROP FILE. I'M NOT RESPONSIBLE IF YOU DESTROY YOUR PHONE NOR IF YOUR PET DIES AND THINGS LIKE THAT.​​
This script do this:
1) delete some APKs from /system/app that I don't need
/system/app/Camera.apk - replaced by Miui camera
/system/app/Calculator.apk - I use RealCalc
/system/app/FileManager.apk - I use Root Explorer
/system/app/Music.apk - I use the new Music App
/system/app/BooksPhone.apk - I don't use this
/system/app/Protips.apk - Useless
Click to expand...
Click to collapse
2) replace the boot animation with a sharper and bigger version (file size is bigger too)
The original boot animation size is too small for our screen. Some people could car less for this as you don't reboot your phone that often.
Original boot image:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
New boot image:
Click to expand...
Click to collapse
3) replace the default camera for a Miui camera
We all know the AOSP camera sucks...
Click to expand...
Click to collapse
4) backup and edit build.prop to display "Inspire 4G" as device name
Some people asked how it affect the market and so far so good for me.
I have no idea if automatic backup/restore from Google is working or not. I use Titanium Backup to restore my apps before I login with my Google account.
Click to expand...
Click to collapse
Things you will need:
1) Scripting Layer for Android (SL4A)
Free app. We will use this to run the script.
Click to expand...
Click to collapse
2) Script and other files - RAR version inspirefy_files_v1.1.rar or ZIP version: inspirefy_files_v1.1.zip
All the files needed for the magic to happen...
VERSION 1.1 UPDATE: If you already have the version 1.0 on your phone you can download the attached zip file from this post to update the script to version 1.1 - Just extract the zip file to /sdcard/inspirefy/ and replace the old 'inspirefy.sh' script.
Click to expand...
Click to collapse
How to install & use it:
1) Extract the inspirefy_files.rar (or inspirefy_files.zip) to the root of your sdcard (/sdcard).
You will have 2 new folders (or just 1 new folder is SL4A was already installed): /sdcard/inspirefy and /sdcard/sl4a
2) Install the sl4a on your phone and run it.
2a) Select "run-inspirefy.sh" from the main screen. If it's your first time running the script you must confirm the super user request.
3) After the script is done (about 2s) you can close SL4A and reboot your phone.
Done
You can edit the file /sdcard/inspirefy/inspirefy.sh with your preferred text editor to make any changes you would like, maybe you want to keep the Tips widget
Have fun!
Thanks to dog77k for the feedback and suggestions and everybody who is using this script.
Good stuff LGSilva. Will let you know how things go after I find a free method to extract the rar (don't use root explorer) or when I get to my desk...
Very cool and glad to see this. Nice job
Sent from my Desire HD using XDA Premium App
Just added a ZIP version for the necessary files in case you want to do this on your phone.
forgive me, but I've never ran a script on android before. I loaded up the folders on the root of my sdcard, installed SL4A and ran it. Superuser didn't ask for permissions. Also, I can't figure out how to run what I need to. Help?
poetofsound said:
forgive me, but I've never ran a script on android before. I loaded up the folders on the root of my sdcard, installed SL4A and ran it. Superuser didn't ask for permissions. Also, I can't figure out how to run what I need to. Help?
Click to expand...
Click to collapse
When you ran the script did you get the terminal window output with something like this?
Code:
Inspirefy 1.0 by LGSilva
Remounting system partition rw...
Deleting apk files and boot animation...
Copying new boot animation and camera...
Setting permitions and ownership...
Backuping build.prop and changing device name...
Remounting system partition as ro...
DONE
.
The text is tiny but you can read it. Is there any error message on the terminal window?
Check the superuser app, sometimes it will have the SL4A marked to deny root...
Edit: Just testing on build 103... looks like SL4A is not happy with this build, time to investigate.
LGSilva said:
Edit: Just testing on build 103... looks like SL4A is not happy with this build, time to investigate.
Click to expand...
Click to collapse
They (nightly forum) are saying that the SU app is jacked on 103...
Nightly build #103 have a problem with Superuser not working right therefor my script won't work either.
To fix this download the Superuser from Rom Manager > Extras, reboot in recovery and install it.
dog77k said:
They (nightly forum) are saying that the SU app is jacked on 103...
Click to expand...
Click to collapse
Yep, you beat me to that, I blame the internet
Two suggestions/hints for the inspirefy.sh code:
"chown root.root /sys..." gave me an unknown user/group error, but "chown 0.0 /sys..." worked for me.
I was getting an error when trying to remount /system as ro that it was still busy so I added a 2 sec pause before trying to remount:
Code:
echo -e "Remounting system partition as ro...\n"
sleep 2
mount -o ro,remount -t ext4 /dev/block/mmcblk0p25 /system
echo -e "DONE.\n"
Otherwise the code worked well for me. Great work LGSilva.
I was having problems with SU thats why lol I'll fix it and try this again and update when I'm done
dog77k said:
Two suggestions/hints for the inspirefy.sh code:
"chown root.root /sys..." gave me an unknown user/group error, but "chown 0.0 /sys..." worked for me.
I was getting an error when trying to remount /system as ro that it was still busy so I added a 2 sec pause before trying to remount:
Code:
echo -e "Remounting system partition as ro...\n"
sleep 2
mount -o ro,remount -t ext4 /dev/block/mmcblk0p25 /system
echo -e "DONE.\n"
Otherwise the code worked well for me. Great work LGSilva.
Click to expand...
Click to collapse
Thank you dog77k for the suggestions.
I've updated the script with them and also added a 2sec pause after mounting it as RW just in case...
Files with version 1.1 updated on the first post, no need to reinstall SL4A.
tested and seemed to run just fine on build 104. thanks for the awesome script! very cool
Thank you!
+1 to both of you, thanks for the great scripting solution.

[MOD]Enable/Disable Media Scanning at boot

I've been browing the forums for some helpfull stuff and I found this little mod that allows you to turn Media Scanning on Boot on or off. The original topic by aditya_t90 can be found here
Requirements:
- USB Debugging: ON
- Root Access
Enter one of the following commands in terminal emulator, adb shell or in a script file
To enable media scanning on boot:
Code:
su
pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
To disable media scanning on boot:
Code:
su
pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
Screenshot:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
it says in the link :
The new v2.3 app works on all android devices!! It even works with internal and external sd cards!
so isn't it easier to install the app, u might not be near a pc when u need to change it
edit: actually u can use a terminal emulator ..ahhh
Thanks!!
If you prefer automated batch files like I do, download attached
Code:
@echo off
adb -d shell pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Code:
@echo off
adb -d shell pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Regards,
Nika.
nikagl said:
Thanks!!
If you prefer automated batch files like I do, download attached
Code:
@echo off
adb -d shell pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Code:
@echo off
adb -d shell pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Regards,
Nika.
Click to expand...
Click to collapse
Nice addition and thnx for posting this in your topic
So, when scanning not active after boot...when does it scan the files? Sorry noob....
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
pyronia said:
So, when scanning not active after boot...when does it scan the files? Sorry noob....
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
Click to expand...
Click to collapse
After unplugging an USB cable
nikagl said:
Thanks!!
If you prefer automated batch files like I do, download attached
Code:
@echo off
adb -d shell pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Code:
@echo off
adb -d shell pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
echo all ok?
pause
Regards,
Nika.
Click to expand...
Click to collapse
The zip attach flash it via recovery? How to undo it?
EDIT: i see 2 script in the zip, enable n disable...how to get it working???
|:BroodRom RC2 Beta
|:Instanet Free Access (no one believe its free)
broodplank1337 said:
After unplugging an USB cable
Click to expand...
Click to collapse
I mean, after it working, avery boot it will not scan media right? Do i have to plug-unplug usb to get it scan the media? Averytime? Coz i actually charge my phone when it off at night....
Actually, what is this tweak for? Please answer me, really noob bout this...
|:BroodRom RC2 Beta
|:Instanet Free Access (no one believe its free)
pyronia said:
The zip attach flash it via recovery? How to undo it?
EDIT: i see 2 script in the zip, enable n disable...how to get it working???
|:BroodRom RC2 Beta
|:Instanet Free Access (no one believe its free)
Click to expand...
Click to collapse
Sorry, those scripts can be executed from the DOS command line. I guess they can be created for CWM too, but I am not too familiar with those scripts you can try attached, no idea whether it works (I'm sure broodplank will correct me if I'm wrong)
nikagl said:
Sorry, those scripts can be executed from the DOS command line. I guess they can be created for CWM too, but I am not too familiar with those scripts you can try attached, no idea whether it works (I'm sure broodplank will correct me if I'm wrong)
Click to expand...
Click to collapse
What does the tweak for actually?
|Post from XDA premium app
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
pyronia said:
What does the tweak for actually?
|Post from XDA premium app
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
Click to expand...
Click to collapse
It enables or disables media scanning of your sdcards at boot (see in your top bar when the device starts)
---------- Post added at 10:19 AM ---------- Previous post was at 10:09 AM ----------
Check out this video:
http://www.youtube.com/watch?v=fNhJ1DxKolE
It's for another device, but does demonstrate what this does (at around 1 minute)
Can u ise terminal emulator for this???
|Post from XDA premium app
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
pyronia said:
Can u ise terminal emulator for this???
|Post from XDA premium app
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
Click to expand...
Click to collapse
Yes, see OP
broodplank1337 said:
Enter one of the following commands in terminal emulator, adb shell or in a script file
Click to expand...
Click to collapse
Better reading before asking doesn't hurt
Ok done try it, after disable my gallery was empty...have to enable it....
Hmm...if rom have this, do need to enable it averytime?
|Post from XDA premium app
|BroodRom RC2 Beta
|Instanet Free Access (no one believe its free)
brood, I need your help... again!
You know... I got this music-gallery /emmc bug (cannot find music, pictures with music apps/gallery apps)
I made a long research, found out that the media scanner doesn't scan on boot. maybe the reason for this bug...
if I try to scan manually, the media scanner just scan the internal sd card.
maybe there is some build.prop tweak that disables the media scanner on emmc.
any suggestions?
tried to set media scanner on boot with this code and terminal emulator... doesn't work at all....
Droid843 said:
brood, I need your help... again!
You know... I got this music-gallery /emmc bug (cannot find music, pictures with music apps/gallery apps)
I made a long research, found out that the media scanner doesn't scan on boot. maybe the reason for this bug...
if I try to scan manually, the media scanner just scan the internal sd card.
maybe there is some build.prop tweak that disables the media scanner on emmc.
any suggestions?
tried to set media scanner on boot with this code and terminal emulator... doesn't work at all....
Click to expand...
Click to collapse
hmmm...emmc? which ROM are you using? Old CM9 build?
DreamerTKM said:
hmmm...emmc? which ROM are you using? Old CM9 build?
Click to expand...
Click to collapse
Oh... I'm sorry... no I'm using my own rom... http://forum.xda-developers.com/showthread.php?t=1957492
Is it possible to place this script in init.d? Since the media are empty after every reboot, I want to enable it during boot and disable after scan.
Does this work on Kit kat? Speciffically 4.4.2?
I made a simple shell script to enable/disable media scanning. I am a noob, so please don't hate
Code:
#!/system/bin/sh
echo ""
echo "<Usage: mediascanner <onboot|offboot>"
echo ""
case "$1" in
'onboot')
echo "Media scanner will be started on boot"
pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
;;
'offboot')
echo "Media scanner will not be started on boot"
pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver
;;
esac
A shell file is attached if you want to be lazy. Rename it to mediascanner.sh (or just mediascanner) then push it to /system/bin/ and chmod 655 it. When you want to run it, do: su > mediascanner onboot|offboot (choose one). Ex: # mediascanner offboot
Hope that helps!
 @Rehab4Life it does work on 4.4 KitKat

[MOD] [SCRIPT] Superwipe Script & Kernel Cleaner Script

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
MOD NOTE: Be advised the superwipe script WILL wipe your internal storage. It's designed that way to wipe all the useless clutter that accumulates. If you don't know what you are doing, then don't flash it.
I have decided to post the wipe scripts here for those KernelHolics & Flashaholics that are flashing kernels and ROMs constantly. I've made small modifications to these scripts FULL credit to the originator of them Credits below.
These are compatible with CWM, TWRP.
Since there have been numerous kernels recently being posted and people wondering what to wipe or what not to wiped here is the Kernel Cleaner.
1. Place the file in the root of your /sdcard
2. Flash Kernel Cleaner
3. Flash/Fastboot Kernel
4. Reboot.
Download: http://d-h.st/BWy
This second script I'm sure everyone is familiar with SUPERWIPE script.
Tired of wiping after every ROM or not knowing what to wipe to flash a ROM and have a clean install? Just flash this script & flash ROM easy right?
1. Place Wipe-Script in root of /sdcard
2. Flash Wipe-Script
3. Flash ROM
4. Reboot.
5. This will wipe external storage. (Wiping without storage coming soon)
Download: http://d-h.st/MFS
Debug​
If it doesn't flash please tell me what recovery your using.
ONLY works for the NEXUS 7 NOT NEXUS 7 3G will be available for other devices as well.
Credit goes to the following people.​
Mike1986
AmazingLarry31
Jivy26
I-777
Myself
IF YOU USE/DOWNLOAD THIS SCRIPT PLEASE PRESS THE THANKS BUTTON​
Re: [mod][script] superwipe script & kernel cleaner script
Reserved for other Awesome Scripts to make your life easier.
So this replaces the ramdisk to the original one? No need to flash the stock kernel before changing from a modified ramdisk kernel to another?
Thank you, we surely need more stuff like that to make our lifes easier =)
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
Grakel said:
So this replaces the ramdisk to the original one? No need to flash the stock kernel before changing from a modified ramdisk kernel to another?
Thank you, we surely need more stuff like that to make our lifes easier =)
Click to expand...
Click to collapse
The Kernel Cleaner will remove the kernel, modules, ramdisk, init.d. To nothing! You will have to flash a new kernel to install the modules and ramdisk again.
Sent from my HTC One S using Tapatalk 2
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
Great scripts for Franco kernel users wanting to migrate to a different kernel :thumbup:
Sent from my Nexus 7 using xda app-developers app
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
FitAmp said:
Great scripts for Franco kernel users wanting to migrate to a different kernel :thumbup:
Sent from my Nexus 7 using xda app-developers app
Click to expand...
Click to collapse
Yes, something u get more bugs flashing a kernel over another kernel or ROM this solves that problem. Its like getting a clean kernel install
good we have one of these, really gives you a fresh start!
So I guess it's my fault for not backing up on my computer but you should probably mention that this wipes EVERYTHING! I assumed when you said, flash script, flash rom, you didnt mean connect to PC, ADB push rom, flash, reboot, re set up everything....
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
Gil Smash said:
So I guess it's my fault for not backing up on my computer but you should probably mention that this wipes EVERYTHING! I assumed when you said, flash script, flash rom, you didnt mean connect to PC, ADB push rom, flash, reboot, re set up everything....
Click to expand...
Click to collapse
It wipes internal storage? Yikes :s
Sent from my Nexus 7 using xda app-developers app
FitAmp said:
It wipes internal storage? Yikes :s
Sent from my Nexus 7 using xda app-developers app
Click to expand...
Click to collapse
Yup.... I wish I had backed up to my computer before hand. At least I have a backup from a month or so ago....
Thanks for this, much needed, will be using the kernel cleaning script a lot. I'm gonna wait till the super wipe doesn't wipe the internal storage, I'm using multiboot atm and don't wanna lose my ROMs or feel like backing them up.
Thanks again!
...Awesome... said:
The Kernel Cleaner will remove the kernel, modules, ramdisk, init.d. To nothing! You will have to flash a new kernel to install the modules and ramdisk again.
Sent from my HTC One S using Tapatalk 2
Click to expand...
Click to collapse
good work man!i only suggest you to insert this things in the kernel script(like i already did times ago in mine i use always)
tricksterMOD app saved data\settings
franco app saved data\settings
faux app saved data\settings
thanks to take the time to modify and post these!
EDIT an example for the galaxy nexus that i use,like you can see it erase also kernel control app data.hope it helps!
Code:
#!/sbin/sh
# clean Popcorn stuff
rm -f /system/etc/sysctl.conf
rm -rf /data/cron
# clean LeanKernelTweaks stuff
rm -f /system/xbin/installbb
rm -f /system/xbin/leantweaks
rm -rf /data/leantweaks
# clean Trinity stuff
rm -f /system/bin/fix_permissions
# clean init.d scripts
INITD_DIR=/system/etc/init.d
# GLaDOS
rm -f $INITD_DIR/90logger
rm -f $INITD_DIR/99nexusinit
rm -f $INITD_DIR/placeholder
# Trinity
rm -f $INITD_DIR/95dimmers
rm -f $INITD_DIR/98tweak
rm -f $INITD_DIR/99complete
# SG
rm -f $INITD_DIR/98_startup_script
rm -f $INITD_DIR/99_startup_complete
# Air
rm -f $INITD_DIR/89airtweaks
rm -f $INITD_DIR/98airtweak
rm -f $INITD_DIR/98airtweaks
rm -f $INITD_DIR/99airtweaks
# franco
rm -f $INITD_DIR/13overclock
rm -f $INITD_DIR/00turtle
# Popcorn
rm -f $INITD_DIR/99sonic
# Lean
rm -f $INITD_DIR/99leantweaks
# Jame Bond
rm -f $INITD_DIR/007tweaks
# miscellany
rm -f $INITD_DIR/99nstools
# lean kernel
rm -f $INITD_DIR/99lk-gpu
# Zen
rm -f $INITD_DIR/99ZenKernel
# clean kernel setting app shared_prefs
rm -rf /data/data/mobi.cyann.nstools/shared_prefs
rm -rf /data/data/aperture.ezekeel.gladoscontrol/shared_prefs
rm -rf /data/data/com.derkernel.tkt/shared_prefs
rm -rf /data/data/com.franco.kernel/shared_prefs
rm -rf /data/data/com.liquid.control/shared_prefs
# remove dalvik cache
rm -rf /data/dalvik-cache
rm -rf /cache/dalvik-cache
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
Will do thanks for taking the time and showing me. I will edit it in the next version.
Sent from my HTC One S using Tapatalk 2
np man,i cited only that 3 apps because they were what come in mind in that moment,don't know if n7 users use something else (kernel control app coded by kernel dev or coded with n7 in mind)
mlaws90 said:
Thanks for this, much needed, will be using the kernel cleaning script a lot. I'm gonna wait till the super wipe doesn't wipe the internal storage, I'm using multiboot atm and don't wanna lose my ROMs or feel like backing them up.
Thanks again!
Click to expand...
Click to collapse
Is it possible for you to add this script into your Rom Aroma installation? would be nice as some of us try many different kernels!
Just a question though: will the kernel cleaner script erase all data on my N7?
no!not worry about that.
little tips.also if you don't know anything related,next time have a look inside the zip,in the updater-script
i report HERE if you want to have a look
sert00 said:
no!not worry about that.
little tips.also if you don't know anything related,next time have a look inside the zip,in the updater-script
i report HERE if you want to have a look
Click to expand...
Click to collapse
So I just want to clarify, the kernel cleaner script doesnt delete anything but just everything to do with the kernel that is installed right? It doesnt erase all the data that I have on my tab?
Re: [MOD][SCRIPT] Superwipe Script & Kernel Cleaner Script
Hi, the links are down and I really need both of these scripts. Do you have another link possibly. I would be most appreciative. Thanks in advance.
Sent from my Nexus 7 using xda premium
Android.Ninja said:
Hi, the links are down and I really need both of these scripts. Do you have another link possibly. I would be most appreciative. Thanks in advance.
Sent from my Nexus 7 using xda premium
Click to expand...
Click to collapse
links are NOT down... dev-host got server problems ... F5 is your best friend now

Categories

Resources