[Q] Root on Mac? - LG Optimus 4X HD

Is there a way to root the lg 4xhd on mac? I've looked through several websites and couldn't find a way how it works.
Before you tell me, that mac sucks, i have it just for the next few month
A step to step explanation would be awesome!

You can try installing a virtual machine with Windows in it
Sent from my LG-P880 using Tapatalk

Is the name for the programm virtual machine? I'm used to windows
Sent from my LG-P880 using xda app-developers app

If you want to install virtual machine you can download VMWare or Oracle virtualbox. For setting up you need iso file or cd with windows.
Sent from my LIFETAB_E10312 using Tapatalk

You don't need virtual machine to root, just ADB access to your phone and you can simply sideload the package posted in the 'how to root' thread.

So adb access is easy. Booting the phone and holdng power and volume up, but how to sideload ? Sry i'm not too good atthis
Sent from my LG-P880 using xda app-developers app

lasin31 said:
So adb access is easy. Booting the phone and holdng power and volume up, but how to sideload ? Sry i'm not too good atthis
Click to expand...
Click to collapse
ADB access is easy, and searching / reading what has been written many times before is even easier. Don't be so lazy when people have answered these questions too many times to count.

SimonTS said:
ADB access is easy, and searching / reading what has been written many times before is even easier. Don't be so lazy when people have answered these questions too many times to count.
Click to expand...
Click to collapse
Adam77Root said:
You don't need virtual machine to root, just ADB access to your phone and you can simply sideload the package posted in the 'how to root' thread.
Click to expand...
Click to collapse
my issue is, i follow the instructions, but the root command doesn't work :/ and i try to find options for that but nothing worked

Related

Access thru computer (mac os)

What is the simplest way to send commands to my phone (HTC Hero CDMA Sprint) through my computer (Mac OS)?
I haven't explored Android SDK yet. I rooted my phone through Terminal and bash_profile file. I'm interested in:
- how to push .apk's to the device
- how to install a recovery image if my phone can't reboot and there is not a recovery image present
Thanks!
Android sdk is the easiest
-------------------------------------
Sent via the XDA Tapatalk App
What I do is use terminal and cd to the Android sdk/tools folder. After that use the ./adb commands, which there are several tutorials for and own your phone. Hope this is clear, doing it on my phone
-------------------------------------
Sent via the XDA Tapatalk App
What I do is use terminal and cd to the Android sdk/tools folder. After that use the ./adb commands, which there are several tutorials for and own your phone. Hope this is clear, doing it on my phone
Click to expand...
Click to collapse
Sweet. Thanks. I've searched the Android SDK site and it seems that I need other software or plunging such as Eclipse and Java. I'm not ruling these out eventually but know I'm not ready to get in this deep yet to start developing apps or customizing roms. Also, after a Google search all the queries came back with options for rooting your device which I've already done. If there's a good easy tutorial, would you mind posting a link?
-------------------------------------
Sent via the XDA Tapatalk App
When I get home from work I'll find something for you.
-------------------------------------
Sent via the XDA Tapatalk App
joshuaharp said:
Sweet. Thanks. I've searched the Android SDK site and it seems that I need other software or plunging such as Eclipse and Java. I'm not ruling these out eventually but know I'm not ready to get in this deep yet to start developing apps or customizing roms. Also, after a Google search all the queries came back with options for rooting your device which I've already done. If there's a good easy tutorial, would you mind posting a link?
-------------------------------------
Sent via the XDA Tapatalk App
Click to expand...
Click to collapse
Just download the 2.1 SDK, cd to Android/SDK/tools, and use ./adb, I think it can tell you some commands too.
I made an app to put my phone in recovery using ./adb so I wouldn't need to go through the trouble everytime, I just go to spotlight, type "recovery", and it puts it into recovery.
I might make an app/interface for Mac OS later for ADB commands (recovery, push files, etc)
derekwilkinson said:
Just download the 2.1 SDK, cd to Android/SDK/tools, and use ./adb, I think it can tell you some commands too.
I made an app to put my phone in recovery using ./adb so I wouldn't need to go through the trouble everytime, I just go to spotlight, type "recovery", and it puts it into recovery.
I might make an app/interface for Mac OS later for ADB commands (recovery, push files, etc)
Click to expand...
Click to collapse
That would be awesome dude...
joshuaharp said:
That would be awesome dude...
Click to expand...
Click to collapse
Don't hold your breath though, I have been working a lot, but I might make it in the next few weeks.
The only main problem is that I'm having trouble getting variables to run in the shell script. I think it might be possible with Automator (or AppleScript), but I will keep trying
Well, even though it may not be useful anymore, here are the links, as promised
Rooting guide for mac (What I used and a great way to get familiar with adb on the mac ) http://forum.xda-developers.com/showthread.php?t=581686
And here's an adb tutorial that was put together at the request of toast on the EVO 4G forum. http://forum.xda-developers.com/showthread.php?t=694250

OTA Benefits? Unrevoked4Eva?

"EXCUSE ME" If Someone Else Has Something Similar Posted, But I Got Tired Of Reading A Thousand Posts Just To "ALMOST" Get My Question Answered!!
Anyway I Know The Last "OTA" Sent Out From Sprint or HTC (Whoever- Sent It Out) *BROKE* My Ability To Access The "Clockwork Recovery" Menu-Screen!
Since Then I Turned Security From "On to Off" With "Unrevoked-4ever" But I've Read That Even After Flashing "Unrevoked-4ever" It's Possible For Them To Send Me Another "OTA" & Re-break My Root Access!!
Does Anyone Know If What I Read Is "TRUE or Bull-Sh#%".... Am I Really "Unrevoked-4ever"???
1 More Thing What's The Benefits Of A OTA???
Sent from my HERO200 using XDA App
DISABLE OTA UPDATES!!!!
To disable OTA updates that will patch this exploit, (after rooting and booted after creating a nandroid backup) run the following commands from Command Prompt.
Code:
cd C:\android-sdk-windows\tools
Code:
adb remount
Code:
adb shell
Code:
mv /system/etc/security/otacerts.zip /system/etc/security/otacerts.zip.bak
After doing this, the OTA updates WILL still download, BUT they will not pass signature checks to flash because of the code you just entered.
Did you do this when you rooted your phone? ^^
Pulled this from [Guide] How to Root Sprint 2.1 CDMA Hero
Twolazyg said:
DISABLE OTA UPDATES!!!!
To disable OTA updates that will patch this exploit, (after rooting and booted after creating a nandroid backup) run the following commands from Command Prompt.
Code:
cd C:\android-sdk-windows\tools
Code:
adb remount
Code:
adb shell
Code:
mv /system/etc/security/otacerts.zip /system/etc/security/otacerts.zip.bak
After doing this, the OTA updates WILL still download, BUT they will not pass signature checks to flash because of the code you just entered.
Did you do this when you rooted your phone? ^^
Pulled this from [Guide] How to Root Sprint 2.1 CDMA Hero
Click to expand...
Click to collapse
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
PMGRANDS said:
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
I've never used an app to root my phone, I followed a guide and did it right the first time. Here is the guide thread. What is the wireless ADB app you're using? Try terminal emulator with the commands, or take 15 min and un-root your phone, then re-root using this guide, that may solve the other issue you're having with the wigets and icons being odd. Let me know how this works for you.
PMGRANDS said:
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
If you search android Dev section I've posted how to install adb in like 15 min also in the same thread its another guide as well either way you can have adb in 15 or 20 min tops real simple and the commands he posted will work fine I'm mobile @ work so I can't link but good luck
Root-Hack-Mod-Always™
Twolazyg said:
I've never used an app to root my phone, I followed a guide and did it right the first time. Here is the guide thread. What is the wireless ADB app you're using? Try terminal emulator with the commands, or take 15 min and un-root your phone, then re-root using this guide, that may solve the other issue you're having with the wigets and icons being odd. Let me know how this works for you.
Click to expand...
Click to collapse
Okay, I Think I Just Might Do That... Also As Far As The App I Have, It's Called "ADB Wireless", But I Also Have "Terminal Emulator"!! Which One Would You Use?? "Terminal Emulator" Guess That's Why You Posted It Obviously??.... Lol!! 1 More Thing What's The Benefits Of The OTA's?? Seems Like They Only Eff-Up Root Access!! And Thanx Once Again 4 Your Help!!
Sent from my HERO200 using XDA App
laie1472 said:
If you search android Dev section I've posted how to install adb in like 15 min also in the same thread its another guide as well either way you can have adb in 15 or 20 min tops real simple and the commands he posted will work fine I'm mobile @ work so I can't link but good luck
Root-Hack-Mod-Always™
Click to expand...
Click to collapse
Thank You!!
Sent from my HERO200 using XDA App

[Q] Help with rom installation?

Hey everyone!
I am new to everything about android and just rooted my phone a couple weeks ago. I want to install the decrapified rom burin not 100% sure how to do it. I need CWM to do this right? Can I get back to my original rom if I don't like it or something goes wrong? I also hear some users talking about backing up the device. How do we do this? I know that there are lots of questions and I know some person (maybe two lol) could point me in the right direction. Thank you!
Torin
Torin_93 said:
Hey everyone!
I am new to everything about android and just rooted my phone a couple weeks ago. I want to install the decrapified rom burin not 100% sure how to do it. I need CWM to do this right? Can I get back to my original rom if I don't like it or something goes wrong? I also hear some users talking about backing up the device. How do we do this? I know that there are lots of questions and I know some person (maybe two lol) could point me in the right direction. Thank you!
Torin
Click to expand...
Click to collapse
Android Development is not for questions or Problems
Please post in the correct Forums
Moving to General
Torin_93 said:
Hey everyone!
I am new to everything about android and just rooted my phone a couple weeks ago. I want to install the decrapified rom burin not 100% sure how to do it. I need CWM to do this right? Can I get back to my original rom if I don't like it or something goes wrong? I also hear some users talking about backing up the device. How do we do this? I know that there are lots of questions and I know some person (maybe two lol) could point me in the right direction. Thank you!
Torin
Click to expand...
Click to collapse
1 yes, you need cwm to put decrapified
2 once u install cwm, make sure ur battery is full (at least 50%, but i'll just say full) and make a backup using cwm of ur current system
3 see: 2
Sent from my VS910 4G using Tapatalk
S.Meezy said:
1 yes, you need cwm to put decrapified
2 once u install cwm, make sure ur battery is full (at least 50%, but i'll just say full) and make a backup using cwm of ur current system
3 see: 2
Sent from my VS910 4G using Tapatalk
Click to expand...
Click to collapse
Awesome thanks. Now I cant get the adb shell to work. ive done it on my dads phone before so im kinda familiar with it but the sdk still seems to be updating or whatever. Should it work when its finished?
Like when I type "adb devices" it says nothing can be found.
What operating system is ur computer on? Make sure you have installed the LG drivers if Windows.. also, doesn't hurt to be up to date w the sdk...
Sent from my VS910 4G using Tapatalk
Running windows 7 sdk updated drivers installed.
Im typing
cd C:\android-sdk\tools\
adb devices
nothing pops up. It says it isnt recognized?
1. install and update adb sdk.
2. Plug your phone in and install the drivers so it is recognized by windows as the revolution.
3. once 1 and 2 are done set your phone to internet only and turn on debugging.
4. now try adb
Torin_93 said:
Running windows 7 sdk updated drivers installed.
Im typing
cd C:\android-sdk\tools\
adb devices
nothing pops up. It says it isnt recognized?
Click to expand...
Click to collapse
also it is cd c:\android-sdk\platform-tools\
Haxcid said:
also it is cd c:\android-sdk\platform-tools\
Click to expand...
Click to collapse
I just figured out it was\platform-tools\
Like wtf they moved it? lol
I also forgot about internet mode. Im going to give it a go and if I bump into any problems I will let you know
Once I try to get su access (after checking adb access) it says not recognized. Why?
Torin_93 said:
Once I try to get su access (after checking adb access) it says not recognized. Why?
Click to expand...
Click to collapse
we're still getting cwm on...? and u already put recovery-cwm-pr1.img on ur sd?
S.Meezy said:
we're still getting cwm on...? and u already put recovery-cwm-pr1.img on ur sd?
Click to expand...
Click to collapse
Yes its there
But the su command wont work
You have skype? I could screen share.
Torin_93 said:
Yes its there
But the su command wont work
You have skype? I could screen share.
Click to expand...
Click to collapse
Make sure your screen is on when you type su so you can accept super user permission on your phone.
Sent from my VS910 4G using XDA Premium App
After I type adb devices I get the list then its:
C:\android-sdk\platform-tools>su
Right?
Cause it says not recognized
No type, adb shell, then at the next line enter su
Sent from my VS910 4G using XDA Premium App
mtmichaelson said:
No type, adb shell, then at the next line enter su
Sent from my VS910 4G using XDA Premium App
Click to expand...
Click to collapse
Great thanks!!! Im in
cat /dev/zero > /dev/block/mmcblk0p14
write: no space left on device
cat /sdcard/recovery-cwm-pr1.img > /dev/block/mmcblk0p14
no such file or directory.
Im so confused. Now what.
Thanks for everyones help so far You guys are amazing!
Torin_93 said:
cat /dev/zero > /dev/block/mmcblk0p14
write: no space left on device
cat /sdcard/recovery-cwm-pr1.img > /dev/block/mmcblk0p14
no such file or directory.
Im so confused. Now what.
Thanks for everyones help so far You guys are amazing!
Click to expand...
Click to collapse
If you are copying it in Windows, copy it to the drive marked "internal." If not, then this is telling you that file isn't on your sdcard. You need to move it there.
Its in the internal. Should it go in a folder? What about the fact that it says no space left on device?
I have plenty of space?
Torin_93 said:
Its in the internal. Should it go in a folder? What about the fact that it says no space left on device?
I have plenty of space?
Click to expand...
Click to collapse
It shouldn't need to go in a folder. The error message about space is normal (expected).

Rooting Note on Mac?

New to the site, so sorry in advance if this has been covered. Just wondering if anyone has rooted their Note using a Mac? I have not been able to find any info. regarding this matter. Any info. or tutorials would be greatly appreciated.
So far no rooting method available for mac OS.
Updated here
http://forum.xda-developers.com/showthread.php?t=1329360
read at end of post #1
THX
Just set up a virtual machine of Windows. For example you can use VMWare oder Parellels or the free one, VirtualBox!
Then you can root you note on you Mac, but just in the virtual machine.
I always used this method, and it works well...
dr.ketan said:
Updated here
http://forum.xda-developers.com/showthread.php?t=1329360
read at end of post #1
Click to expand...
Click to collapse
I could not get the link to download. Im a good when it comes to this so please excuse me.
You need to click on 'This'
----------------------------------------------------------------
Root Note using Mac & Linux
---------------------------------------------------------------
Download This
- Extract on PC
- Confirm you have installed driver on PC (Kies will do it)
- Enable unknown sources in setting - application on device.
- Enable USB debugging in setting - application - development on device
- For Mac, double-click and run runmemac.sh. Or you might have to run it in terminal like this:
sh runmemac.sh
-For Linux, double-click and run runmelinux.sh. Or you might have to run it in terminal like this:
sh runmelinux.sh
Connect device N run script
Device should rebooted N you can confirm it by working superuser application on device.
Click to expand...
Click to collapse
Anyway if you could,t manage
here is link
http://forum.xda-developers.com/attachment.php?attachmentid=983881&stc=1&d=1333608838
tells me invalid link
rootgalaxynote
read this
post
of botom
I use a macbook, but because of all the stuff I do that requires windows I just installed bootcamp to dual boot. It's extremely worth it in the long run
Or virtualbox/vmware
Envoyé depuis mon GT-N7000
faded03cobra said:
tells me invalid link
Click to expand...
Click to collapse
Try this
http://forum.xda-developers.com/attachment.php?attachmentid=987963&stc=1&d=1333779371
basically it was corrupted, i have updated main post (How to root) couple of days back
Thx for all the help. In your instructions why does it say say to extract to a PC if its MAC or do I skip that step? Sorry for the dumb questions, but I'm new to this whole android thing. ALso, is it really worth me rooting my device?
it is a .zip must be extracted (pc, mac or linux it's the same)
for example with 7zip [7-zip.org/download.html]
I apparently have no clue how to do this. I've tried to do what the post said, but have had no luck.
faded03cobra said:
I apparently have no clue how to do this. I've tried to do what the post said, but have had no luck.
Click to expand...
Click to collapse
this step is important
Confirm you have installed driver on PC (Kies will do it)
run the runmemac.sh in a terminal and post the error(s)
I think rooting the phone on windows is better than mac...
Sent from my GT-N7000 using xda premium

Samsung galaxy gear

Can anybody tell me if there is a method of rooting the Galaxy gear via a Mac.
All the vids that are currently talking about rooting are using Windows.
There must be a Mac version surely???
Sent from my SM-N9005 using xda app-developers app
I had to use parallels worked great
Sent from my SAMSUNG-SM-N900A using xda app-developers app
Sweetboy220466 said:
Can anybody tell me if there is a method of rooting the Galaxy gear via a Mac.
All the vids that are currently talking about rooting are using Windows.
There must be a Mac version surely???
Sent from my SM-N9005 using xda app-developers app
Click to expand...
Click to collapse
You can search for the same app name and you will find the website with a mac version you can download. Let me know if you can't find it and will post a link.
Sent from my SM-N900V using Tapatalk
Mac owner here - First, a more descriptive title would have helped your thread - simply posting the name of the device garners no attention. Take the time to think about a good title that will gain people's curiosity or assistance.
Second, I had to use a windows machine to first root it, but since then I can push anything to it using the Terminal on my Mac.
ODIN is Windows Only. There is a Mac alternative called Hiemdall (notice the trend of using mythical character names?) It is found here: http://forum.xda-developers.com/showthread.php?t=834195
However, I have seen a lot of people having issues with Heimdall. I would suggest using a friend's Windows machine to initially root it properly, then you will be fine using terminal.
You have a few choices for getting the adb and fastboot binaries:
1. Download the SDK
2. google for the files
3. http://www.2shared.com/file/w2mue84a/adb-fastboot.html
If you need to learn to use these, then search the boards.
Good luck!
therealduckie said:
Mac owner here - First, a more descriptive title would have helped your thread - simply posting the name of the device garners no attention. Take the time to think about a good title that will gain people's curiosity or assistance.
Second, I had to use a windows machine to first root it, but since then I can push anything to it using the Terminal on my Mac.
ODIN is Windows Only. There is a Mac alternative called Hiemdall (notice the trend of using mythical character names?) It is found here: http://forum.xda-developers.com/showthread.php?t=834195
However, I have seen a lot of people having issues with Heimdall. I would suggest using a friend's Windows machine to initially root it properly, then you will be fine using terminal.
You have a few choices for getting the adb and fastboot binaries:
1. Download the SDK
2. google for the files
3. http://www.2shared.com/file/w2mue84a/adb-fastboot.html
If you need to learn to use these, then search the boards.
Good luck!
Click to expand...
Click to collapse
Odin is windows only but that is to flash a rom. There is another program you can use to just root the gear and only root. To root on the Mac the program is called impactor and it has both a windows version and a Mac version.
see this link for information about cydia impactor to root. Go here to download
http://www.cydiaimpactor.com
It has links for mac, Windows, linux 32 or 64 bit.
If you want to flash a new rom you need odin which is windows only.
To sideload apps use terminal on your mac and install adb then it is as easy as ./adb install app-name. Apk
Sent from my SM-N900V using Tapatalk

Categories

Resources