/sdcard/ problem - G1 Q&A, Help & Troubleshooting

i can never access from terminal
/sdcard/app.apk when tryin to install from someones commands.. they say cp /sdcard/app.apk /system/app
then i get cp cannot stat '/sdcard/app.apk no such file or directory?

mrnv45 said:
i can never access from terminal
/sdcard/app.apk when tryin to install from someones commands.. they say cp /sdcard/app.apk /system/app
then i get cp cannot stat '/sdcard/app.apk no such file or directory?
Click to expand...
Click to collapse
Is the .apk on the root of your card?

whats the app name? just want to confirm your using the apk files name instead of "app.apk"

mrnv45 said:
i can never access from terminal
/sdcard/app.apk when tryin to install from someones commands.. they say cp /sdcard/app.apk /system/app
then i get cp cannot stat '/sdcard/app.apk no such file or directory?
Click to expand...
Click to collapse
It sounds like you've got your commands mixed up. What are you trying to do exactly? You shouldn't really be pushing apps to /system while the phone is on..

just any app exapmle..
i tried to install the modified contacts.apk so i just go by the abundence of commands i got since it wasnt workin while in recovery in terminal to adb push /sdcard/contacts.apk /system/app/contacts.apk (with or without the last contac ts.apk on this section cause i know some do it without and just leave the folder name)
also when i am in my terminal and i to all that rw, -o,remount code they give you but i never can access /sdcard/ that away either.. and i usually just go to recovery load up adb shell ums_enable and the i run adb install f:/contacts.apk but then i get a sh: bin error or something like that..
now i cant even access my sdcard via adb using adb shell ums_enable/disable ..and at times a cant adb remount it says remount unsuccesful.. idk just alot of crazy ****

your sd card is probably going bad. also the commands are case sensitive. Contacts.apk
also RA recovery lets you toggle usb. you dont have to type ums_enable disable
just go and click on "toggle usb" in the recovery

Related

How do you install new HTC_IME?

Hi I was trying to install the new HTC_IME on my phone right now I am currently using 2.0 and I tried to install with appsinstaller and it didn't work. So is there a way to do it threw terminal emulator, or threw recovery?
I don't use adb cause I tried setting it up and it didn't work.
So somebody please give me a good reply! Thanks!
try with astro
if astro doesn't work try this.
you must have adb working. adb does wonders. works every time. top cmds is for adb and bttm is terminal on phone.
Adb remount
Adb push HTC_IME.apk system/app
Adb shell rm system/sd/app/HTC_IME.apk
Adb shell rm data/app/HTC_IME.apk
Adb shell reboot
Or from terminal
Mount -o rw,remount -t yaffs2 dev/block/mtdblock3 /system
Cp *yourdir*/HTC_IME.apk system/app
rm data/app/HTC_IME.apk
rm system/app/HTC_IME.apk
reboot
PHP:
since you dont use adb, if your using any kind of windows let me know and i can personally walk you thru an adb setup. i have encountered the worst of worst mess ups. durrr lol... fosho . . . . .
that doesnt make any sense, why are you removing HTC_IME right after you're done pushing it?
You need three files for HTC IME to work, HTC_IME.apk, Clicker.apk (both of those in /system/app or /data/app) and libt9.so (in /system/lib)
Assuming you place all three in C:\
Code:
adb remount
adb push C:\libt9.so /system/lib
adb push C:\Clicker.apk /system/app (or /data/app if you don't have space)
adb push C:\HTC_IME.apk /system/app (or /data/app if you don't have space)
no need to reboot, just give it time to finish dexopting (about a minute) then go to Settings>Locale & Text and enable (checkmark) Touch Input, disable Android Keyboard if you wish.
About where to get the files? search, but it's easier if you search inside Cyanogen's (version 4.0.4 and below) roms and pull them from those.
rockin_mod said:
if astro doesn't work try this.
you must have adb working. adb does wonders. works every time. top cmds is for adb and bttm is terminal on phone.
Adb remount
Adb push HTC_IME.apk system/app
Adb shell rm system/sd/app/HTC_IME.apk
Adb shell rm data/app/HTC_IME.apk
Adb shell reboot
Or from terminal
Mount -o rw,remount -t yaffs2 dev/block/mtdblock3 /system
Cp *yourdir*/HTC_IME.apk system/app
rm data/app/HTC_IME.apk
rm system/app/HTC_IME.apk
reboot
PHP:
since you dont use adb, if your using any kind of windows let me know and i can personally walk you thru an adb setup. i have encountered the worst of worst mess ups. durrr lol... fosho . . . . .
Click to expand...
Click to collapse
What do you mean by *yourdir*? Lol sorry kinda of a noob to this
Brandice128 said:
What do you mean by *yourdir*? Lol sorry kinda of a noob to this
Click to expand...
Click to collapse
First of all thank you for taking my advice , the Q & A section is the best place for all your questions about android . Seeing that your new here it would be wise that you do some research on the following
ADB
zip7
rar
cyanogen's 1.4 recovery
terminal commands
and so on . There's a lot but as you search you will find them ...
NOW the yourdir question ,it's on your SDcard where you downloaded your htc_ime.apk , if it's on the root of the sdcard (not in any folders) then just use cp sdcard/HTC_IME.apk or if you downloaded it then it's in your download folder then you do cp sdcard/download/HTC_IME.apk
adb remount
adb install directoryofyourfile\HTC_IME.apk
Click to expand...
Click to collapse
worked for me

[Help] Pulling apk's from phone to computer.

I am trying to pull the Sprint_Core.apk out of Damage's 2.5 rom and try to mate it with this 1.0 rom.
But every time I try and pull it it will simply give me the adb options, or will say no such file. Here's what I'm doing:
adb remount
adb pull system/app/Sprint_Core.apk C:\My Documents
I have also tried, making /system writeable but still no avail.
Can someone direct me to how I'm commanding this wrong?
Thanks!
adb remount
adb shell
cd system/app/
rm Sprint_Core.apk
Tipharet said:
adb remount
adb shell
cd system/app/
rm Sprint_Core.apk
Click to expand...
Click to collapse
That would remove Sprint_Core from the phone & I think is just trying to get a copy of the Sprint_Core from DM2.5 to use with another ROM...
stephen240 said:
I am trying to pull the Sprint_Core.apk out of Damage's 2.5 rom and try to mate it with this 1.0 rom.
But every time I try and pull it it will simply give me the adb options, or will say no such file. Here's what I'm doing:
adb remount
adb pull system/app/Sprint_Core.apk C:\My Documents
I have also tried, making /system writeable but still no avail.
Can someone direct me to how I'm commanding this wrong?
Thanks!
Click to expand...
Click to collapse
See if this works:
adb pull /system/app/Sprint_Core.apk "c:\my documents\"
Make sure "My Documents" exists in your c:\ drive.
Try this
adb pull system/app/Sprint_Core.apk C:\Sprint_Core.apk
no remount needed it will put right on your c drive dont do that rm stuff unless your tryin to remove it oh wait according to my adb cheat sheet that actually wouldnt do anything without adb shell in there
thatguythatdid said:
Try this
adb pull system/app/Sprint_Core.apk C:\Sprint_Core.apk
no remount needed it will put right on your c drive dont do that rm stuff unless your tryin to remove it oh wait according to my adb cheat sheet that actually wouldnt do anything without adb shell in there
Click to expand...
Click to collapse
Ah, I understand now. Thanks this worked! Kudos to you!
gu1dry said:
That would remove Sprint_Core from the phone & I think is just trying to get a copy of the Sprint_Core from DM2.5 to use with another ROM...
Click to expand...
Click to collapse
He can then just extract the file from the update zip.

[Q] adb remount

Hi guys,
sorry if my english isnt so good...
i'm in trouble with ADB..
i want to upgrade my swype keyboard on my NEW M1 rom eu....i got the 1.58 and i want to try the 1.60..
i found a thread on this forum with commands for upgrading the swype like this way:
Code:
adb remount
adb shell
su
pm list packages -f | grep swype
rm /system/app/<restOfApkPathFoundInAboveCommand>
pm uninstall <value after apk= found in result of 2 commands above>
exit
Install normally. If you want the apk in the rom:
adb push <newSwype.apk> /system/app/<newSwype.apk>
adb remount
adb shell
pm install <newSwype.apk>
(found here-> LINK)
I'm stuck at the beginning:
Code:
C:\android\tools>adb devices
List of devices attached
9000ec2a228b device
C:\android\tools>adb remount
remount failed: No such file or directory
my phone is rooted and in debug usb mode..I dont understand how can I go ahead...
what can I do?
thanks
ivan
Same here.
gbates said:
Same here.
Click to expand...
Click to collapse
oh..i'm not the only one! : >
we need to find the solution...but it's not easy..
are u using the NEW M1 rom too?
Rooting doesn't automatically give you remount permissions AFAIK.
i just use this command
Code:
adb push test.txt /sdcard/test.txt
and the copy is ok....i found the file in the sgs sdcard...
The command adb remount is for the /system directory (for set write permission) .... i think it cant find the directory /system on the phone......why?!?!
danmullen said:
Rooting doesn't automatically give you remount permissions AFAIK.
Click to expand...
Click to collapse
mmmm what do u mean? i need to do something else? thanks
Are you using the internal ext2 lagfix? I think that causes problems with the adb remount command. It doesn't work for me either.
Same results using a different ROM?
psychedelic'd said:
Are you using the internal ext2 lagfix? I think that causes problems with the adb remount command. It doesn't work for me either.
Click to expand...
Click to collapse
No lagfix installed at the moment..i installed lagfix when i was on M2 but i think that reflashing removed the lag fix...is it right?
harold4 said:
Same results using a different ROM?
Click to expand...
Click to collapse
Not yet but i think i'm gonna try it this afteroon if i dont find a solution.
Sent from my GT-I9000 using XDA App
adb remount as well
Trying to remap hard keys, adb remount along with push and pull do not work. Depending on whether im in shell or not I get no such file or directory or file not found errors. I can change into directory of each of the folders im trying to work with, and look at the file but I can't push it from my tools folder(locally) or pull it from the system folder. Every tutorial I see has adb remount command first, which fails every time.
Samsung Fascinate
Blackhole-build your own rom
(also tried on jt's latest rom, same issue
Crazy
I'm having the same issue here too. I'm trying to get a custom boot screen on my rooted Samsung Infuse and I've tried every way I can think of and it wont take. Clockworkmod says successfully installed, but its not. Soon as I reboot I see the At&T stock boot. I've fixed all of my permissions and still no luck.
So I saw a solution to do it via adb by typing "adb remount" and I get the same thing u guys are getting. I've got a headache now. Done all I could, even typing "shell", "su", that all goes well then when I tried to push it "adb push bootanimation.zip system/media" I get adb: not found. Smh, is it a device issue?
i think ive got the solution
flash a new kernel..................................worked for me................

[Q] Pushing Gapps To ginger bread.

I just got Chis's GB rom and as usual it is lacking Google apps, I understand that I must flash them or use adb push, but every time i try adb push it never works!!
I copy the apk files and paste it under androidsdk/tools
then i go to command: cd\androidSDK\tools\adb push androidmarket.apk /system/app/.
then when it should show the file size and download time, it just says directory not found, I've watched tons of tuts, but it does the same every time. What am I doing WRONG!?!
and i know i spelled gingerbread wrong, sorry!
try
cd {path to your android sdk tools} (just drag it to your terminal) enter
androidSDK/tools/ adb root enter
androidSDK/tools/ adb push {path to your .apk, again just drag} /system/app/ enter
it should push then, where did you download the latest gapps from?
I picked them up from the cyanogen guys, u cant flash them all as u normally would because you will get a boot loop.
gullygossner said:
cd {path to your android sdk tools} (just drag it to your terminal) enter
androidSDK/tools/ adb root enter
androidSDK/tools/ adb push {path to your .apk, again just drag} /system/app/ enter
it should push then, where did you download the latest gapps from?
Click to expand...
Click to collapse
I tried this method, but for some reason adb is acting up because almost everything i do it says "permission denied"
You need to mount the file system as rw first.
thanks to both of you guys, i successfully pushed the market on the nexus, however, IT KEEPS CRASHING!!!! It truly never ends! any ideas for this one?

"Stuck" on Nexus Prime boot animation

Hi,
I've downloaded and installed though recovery mode the boot animation from Nexus Prime on my Galaxy S but now that animation doesn't leave my screen anymore, it keeps running in the foreground even after boot is complete. I can feel and "interact" with the home screen in the background but I'm totally blind.
Already attempt to install Samsung stock boot animation back and also other ones without any success. Prime animation is still there.
Anyone here had the same issue or know some smarter and better way to remove this without have to install custom rom back? Unfortunately I don't have a backup for everything :/ (lessons learned)
Appreciate your attention and help!
- Willian
Get to recovery and try connect your phone via adb, then replace the boot animation... But it sounds like the boot animation may not be the issue...
I've tried to mount /system and move the boot animation to /system/media without any luck, getting 'permission denied' everytime.
C:\android-sdk-windows\platform-tools>adb push GalaxyS-Edify.zip /system/media/
failed to copy 'GalaxyS-Edify.zip' to '/system/media//GalaxyS-Edify.zip': Permis
sion denied
Click to expand...
Click to collapse
/system/media $ mv /sdcard/GalaxyS-Edify.zip /system/media/bootanimation.zip
mv /sdcard/GalaxyS-Edify.zip /system/media/bootanimation.zip
mv: overwrite '/system/media/bootanimation.zip'? y
y
mv: can't remove '/system/media/bootanimation.zip': Permission denied
Click to expand...
Click to collapse
Any idea?
Thanks again!
You could try to make an update.zip which replaces the nexus prime bootanimation with the stock one.
I'll give a try. First time creating an update.zip but let's see if it works.
Thank you.
Nothing ;/
unless I've made something wrong
Im not too familiar with adb but ill give it a shot... Btw you have root and busybox installed?
Get to recovery..hopefully debug is on, plug it in..
Get to platform-tools as you did, then type
adb devices (you should see your device, if not close it all and install the drivers again from kies, then try again...)
type the following, after you have got to platform-tools using the cd command
adb shell mount /system
nothing should show up
you know where the bootanimation is? if not find it, using "adb shell ls /" this will show all the directories, carry on searching it till you find it
next you want to move it so like you did...or like this
"adb shell rm /system/media/bootanimation.zip"
Now check its gone, using the ls command
now put yours in.. rename it to bootanimation.zip
"adb push C:\your full directory of where it is with bootanimation.zip /system/media"
and it should say that its gone....
hopefully that all works..
let us know
Hey Talon, thanks for helping me out, really appreciate!
Hmm, yes for root but no quite sure about busybox now.
I found bootanimation.zip inside /system/media and there's also a bootanimation file inside /system/bin but not quite sure what it's used for.
Got a permission problem when trying to remove the .zip file:
C:\android-sdk-windows\platform-tools>adb shell rm -f /system/media/bootanimatio
n.zip
rm: can't remove '/system/media/bootanimation.zip': Permission denied
Click to expand...
Click to collapse
C:\android-sdk-windows\platform-tools>adb shell chmod 755 /system/media/bootanim
ation.zip
chmod: /system/media/bootanimation.zip: Operation not permitted
Click to expand...
Click to collapse
What am I missing?
Regards.
Ok maybe you know more about these commands but why did you type "-f" after rm? have you tried without it?
In the second box you were trying to change permission (had to search that ) why not change it to 777 for full, and instead apply it to the directory, so the media folder then try...
have you tried just pushing the new file to the media folder?
Btw why not just try flash a new rom either through recovery or odin. I guess you can try this so you don't loose anything, but i think that would be the simplest of things to do. You will loose apps and settings, but int sd should still be there.
Anyway see how that goes...
Just seen this says to remove you can use "adb shell rm -r" so add "-r" instead of the f that you did.
Oh and lastly, if you still cant do that, try copy the whole media folder, make sure you have everything by using ls /system/media then try remove the media file and put it all back with your new boot animation.. (dont forget to rename the bootanimation
Not really, just a few commands. The "-f" just removes the file without the need to confirm your action but no enough permission to perform such action and I'm not able to change this.
I have been trying many ways to move the file to the media folder but could not find one that works yet.
Hmm, I would like to avoid that :/ but maybe it's the only way.
I think my problem here is that I can't get superuser access. When I type "su" I just get a segmentation fault message. Couldn't find a way to fix that yet.
Thanks.
willian7 said:
Nothing ;/
unless I've made something wrong
Click to expand...
Click to collapse
Try to flash this update.zip threw your cwm, just go to install zip from sdcard and choose the update.zip, sure first you have to copy it to your sdcrad . (i've tested it, for me everything worked fine)
hope i was able to help

Categories

Resources