• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help expand number of apps found in market

Ok, this isnt' new but fixed one of my "bugs" with market.

[PATCH] Tattoo Market v2 - Display all apps (for Android 1.6/2.1) - xda-developers

Please backup your market app so that you don't loose market if it fails.
And yes, you'll need root to do this.

This should/might fix "missing" apps from the market?
i've been trying to get this to work, but everything I try, I ended up basically coming to the same conclusion that I have the wrong permissions, but cannot work out how to sort it.

I've tried all of the suggestions throughout the xda thread but it's not working still I come back with "permissions denied"

I have tried
adb shell mount -o rw,remount /dev/block/mtdblock3 /systembut get the error "mount : Operation not permitted"

Any suggestions? (I am definitely rooted by the way!)

All I have amanged to do so far is pull the original vending.apk to my pc to back it up :eek:
 
Upvote 0
Ok, I'm not sure why you don't have permissions but are you root?
Yes you've rooted your phone but are you using the root account to make the changes?

You're supposed to do this:

On your computer, open the shell (windows+r, enter cmd and press enter)
Navigate to the folder where you have adb
give the command "adb shell" (without the ") and press enter.
Now, to get root, you'll give the command "su" (again withouth the ") and press enter.

Now you cant try your mount command again.
If it still fails, look for typos.

The mtdblock3 is for the tattoo, I guess you'll need to use mtdblock0 for the x10 mini.
 
Upvote 0
Ok, I'm not sure why you don't have permissions but are you root?
Yes you've rooted your phone but are you using the root account to make the changes?

You're supposed to do this:

On your computer, open the shell (windows+r, enter cmd and press enter)
Navigate to the folder where you have adb
give the command "adb shell" (without the ") and press enter.
Now, to get root, you'll give the command "su" (again withouth the ") and press enter.

Now you cant try your mount command again.
If it still fails, look for typos.

The mtdblock3 is for the tattoo, I guess you'll need to use mtdblock0 for the x10 mini.

thanks for replying, still no joy... this is what I have copied from cmd.exe :

Code:
c:\android_root>adb shell
$ su
su
# mount -o rw,remount /dev/block/mtdblock0 /system
mount -o rw,remount /dev/block/mtdblock0 /system
# exit
exit
$ exit
exit

c:\android_root>adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
failed to copy 'Vending-Tattoo-patched.apk' to '/system/app/Vending.apk': Permission denied
 
Upvote 0
Why do you exit the root shell before you try to copy the new apk?
What you're doing is open up a door with the key, go inside and open a closet which you want to put something into, but instead of putting it there you go outside again before you try to put it in the closet. Doesn't make sense :)

So...

after you have mounted the system and before you type exit, you're supposed to give the adb push.... command... and THEN you can exit.
 
Upvote 0
Why do you exit the root shell before you try to copy the new apk?
What you're doing is open up a door with the key, go inside and open a closet which you want to put something into, but instead of putting it there you go outside again before you try to put it in the closet. Doesn't make sense :)

So...

after you have mounted the system and before you type exit, you're supposed to give the adb push.... command... and THEN you can exit.
a fair point, so I have tried it here again at every possible step .. none work :thinking:
Code:
C:\android_root>adb shell
$ su
su
#  mount -o rw,remount /dev/block/mtdblock0 /system
 mount -o rw,remount /dev/block/mtdblock0 /system

# adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
adb: not found
nope, exit and try again?
Code:
# exit
exit
$ adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
adb: permission denied
nope.. exit once more..?
Code:
$ exit
exit
C:\android_root>adb push Vending-Tattoo-patched.apk /system/app/Vending.apk
failed to copy 'Vending-Tattoo-patched.apk' to '/system/app/Vending.apk': Permission denied
I must have done something wrong!
Absolutely no idea!! ;)
 
Upvote 0
Hm, I think you're close now.

Try this

adb shell
su
mount -o rw,remount /dev/block/mtdblock0 /system
push Vending-Tattoo-patched.apk /system/app/Vending.apk

As you can see, no need for the "adb" command in the last commando there, as you're already inside the adb shell.

Sorry, I haven't got root on my phone so I can't test this on my own.
 
Upvote 0
Hm, I think you're close now.

Try this

adb shell
su
mount -o rw,remount /dev/block/mtdblock0 /system
push Vending-Tattoo-patched.apk /system/app/Vending.apk

As you can see, no need for the "adb" command in the last commando there, as you're already inside the adb shell.

Sorry, I haven't got root on my phone so I can't test this on my own.
no cigar :(
Code:
C:\android_root>adb shell
$ su
su
# mount -o rw,remount /dev/block/mtdblock0 /system
mount -o rw,remount /dev/block/mtdblock0 /system
# push Vending-Tattoo-patched.apk /system/app/Vending.apk
push Vending-Tattoo-patched.apk /system/app/Vending.apk
push: not found

maybe I just shouldn't bother .. ;)
 
Upvote 0
Sorry, I can't help you any further since I don't have root on my phone.
The best tips would be to head over to the xda thread and ask for help there.

One last effort...
Have you tried the adb push.... without doing the rename the same time?

adb push Vending-Tattoo-patched.apk /system/app/

you can rename it later (or, according to the xda thread it's not needed)
 
Upvote 0
Sorry, I can't help you any further since I don't have root on my phone.
The best tips would be to head over to the xda thread and ask for help there.

One last effort...
Have you tried the adb push.... without doing the rename the same time?

adb push Vending-Tattoo-patched.apk /system/app/

you can rename it later (or, according to the xda thread it's not needed)

ok, still no no, saying push not found :(

Thanks for your help, I'll get on over to XDA and ask their advice
thanks for the help though, much appreciated :)
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones