So i am following this guide
And i am stuck on the Mac terminal part, I have put the folder in my desktop but when i type cd /rooteve3dnew it says -bash: cd: /rootevo3dnew: No such file or directory
What am I doing wrong? Please help!
Related
Hi guys, I am trying to move some files into ext partition. I want to do it via adb but ...
It came to my attention that adb shell isn't the solution for adb push or adb pull. I need to do it via windows but whenever I do adb remount or adb kill-server and adb pull or adb push . When I input and press enter it shows an arrow I press enter cuz I dont know what I could input. It just tells me "push not found" or "adb not found" if I say adb push.
Please don't ask me what I do exactly just tell me the exact steps ^^
I would like to move Htc ime mod by jonasl by example.
Hope you will help me out guys
copy tools adb.exe, AdbWinApi.dll and AdbWinUsbApi.dll to the .../windows/system32/
Thank's but doesn't seem to work
I tried doing : cd C:\Program Files\Android SDK
adb push C:\Program Files\Android SDK\tools\su-2.1-e-signed\system\xbin\su \system\xbin\
but this just gives me all adb commands.
Doing this inside adb shell gives me the adb : not found
Any idea/ workaround? (< only adb plz I dont want to install linux)
Code:
cd C:\Program Files\Android SDK
adb remount
adb push tools\su-2.1-e-signed\system\xbin\su \system\xbin\
Give that a try.
You can't use push or pull with shell.
The biggest problem you sill face is having spaces in the PC side path names, try moving the SDK to c:\Android_SDK if the above fails
Try this:
Code:
cd C:\Program Files\Android SDK\tools
adb remount
adb push C:\Program Files\Android SDK\tools\su-2.1-e-signed\system\xbin\su /system/xbin/
AH great, by removing the space beetwin android and sdk I managed to get out but now I am facing Out of memory error
Damn I have like 1.5 gb of memory on my ext2 partition
Where can I check the remaining memory?
EDIT : su is 22ko so I dont think memory is the big deal. However I would still like to know what is left
Maybe my microSD is dying... Any idea?
Mister-Tea said:
yy whatever, if you don't want to answer then don't but don't look high on me.
lol......
Click to expand...
Click to collapse
1/ he already answer your question
2/ it's android DEV section, your question if far away from DEV
3/ You have to learn how to use command-line application (Windows suck at this, so you should try on a linux OS)
BTW: a little how-to
cd: a great command, you'll be able to change directory (yes you have "adb" on your harddrive, but you have to tell your computer where is it)
cp : copy
mv: move
ls: list content of working directory
pwd: print current working directory
Now: let say "adb" (adb.exe) is located here: /home/carbonyle/androidSDK/tools/
launch a terminal (WindowsKey + r on windows host, then type "cmd")
Yyour working directory maybe "C:" , or whatever (/home/carbonye/ for me)
now use "cd"
Code:
cd /home/carbonyle/androidSDK/tools/
<. of course adapt this to your environnment
(use ls / pwd to convince you what you're doing)
Code:
./adb reboot recovery
<- for linux user
Code:
adb reboot recovery
<- for Win**** users
Of course this will reboot your phone into recovery mode, just adapt command to your need
Right, this thread has gone far enough with enough flaming for today.
To all of you, im disappointed and you should all know better.
PLease refrain from further flames, tidy up in progress. I am also moving this to QnA.
@ Mister-Tea
You are equally responsible for the flaming by flaming yourself.
@ you all, quit it or i will take further action.
THanks.
Whatever script I try to install with
Code:
sh install.sh
I always got this response
Code:
sh: Can't open istall.sh
I did the first code after
su
cd to the directed folder
Please help, really confused here
I use vista 32bit for OS, does it somehow related?
Or do I need to copy the install.sh into that directed folder?
Help needed >.<
Thanks
Hey guys
sorry to bother you with this but since I'm not allowed to post in the developer-forum with less than 10 posts I need to ask here:
I'm running Uruk 1.5RC1 on my 101 and want to upgrade to 1.5 stable.
There's a fix I need to apply first and it says:
lease copy this file to /.upgrade/ directory (if it's not there - create it) - and restart your device (during boot you should see for few seconds update message with progress bar)
Click to expand...
Click to collapse
I don't have that directory and if I want to create it it says that it is already there but I don't see it. So I can't access it to paste the file.
Any help?
Thank you very much!
Do you navigate in your folders as Su?(Super User)
Yep, I'm using ES with su-right and I can see the directories.
Except for the one I need I gues...
Do you have a terminal app?
Try something like this:
su
pwd
ls
Then tell me if you see it
I tried terminal and it's not there.
Try to copy the file with terminal
Code:
Su
cd [where you have the file]
Sudo cp [filename] /../.upgrade
This should work
Greets,
Lenn
Thanks. I guess you meant ".update" instead of ".upgrade"?
Anyways, I tried both (without any errors) but there's no update sequence for the fix when I reboot and the update itself still fails.
Try
Code:
su
Cd /../
sudo mkdir .upgrade
With that you create a folder
"Cannpt create directory '.upgrade': File exists"
Why isn't it visible with ES?!
I dont know...
Try it with
Code:
su
cd /../.upgrade
sudo rmdir -r
This should remove the directory, after that try to create a new one like i wrote above
Ok, this is weird now:
"can't cd to /../.upgrade"
When I try .update it says
"rmdir: invalid option --r"
boert said:
Ok, this is weird now:
"can't cd to /../.upgrade"
Click to expand...
Click to collapse
Try it to do first cd /../ and then cd /.upgrade
When I try .update it says
"rmdir: invalid option --r"
Click to expand...
Click to collapse
hm... try it without -r (-r is a value to delete also the folders in the directory)
Thanks for your help so far, I appreciate it!
It says:
"can't cd to /.upgrade"
Trying the same command in ".update", which obviously exists (I can acess it) is "invalid option" (with -r) or missing operand (without -r).
I dont have so much linux-experience like other guys around here, sorry..
I think the mrdir command is old.. try it with rm -r
I made it.
Did it again from the scratch with some help from a Linux beginners guide (worked with rm -rf /../xyz/) and updated to 1.5 stable.
Thanks for the help guys!
Hi,
To retrieve a file from my tablet and put it in a folder in my PC
I used the command: adb pull in the command prompt in Windows but it returns the following error: Permission denied
I tried with su but the same
Please what should I do?
Thank you in advance
daed02 said:
Hi,
To retrieve a file from my tablet and put it in a folder in my PC
I used the command: adb pull in the command prompt in Windows but it returns the following error: Permission denied
I tried with su but the same
Please what should I do?
Thank you in advance
Click to expand...
Click to collapse
Try this..
http://forum.xda-developers.com/showthread.php?t=1526322
Hi,
I'm new to rom development and i tried to set up kitchen but i failed. it gives this error when i type cd ../kitchen
bash: cd: ../kitchen: No such file or directory
i tried alot but it just wont open
pls help
i attached screenshots
i tried cd /cygdrive/d/cygwin/home/kitchen
then i entered ./menu and it said
bash: ./menu: /bin/bash: bad interpreter: No such file or directory
help