+- +-

+- Site Stats

Members
Total Members: 291
Latest: bibobdaddy
New This Month: 0
New This Week: 0
New Today: 0
Stats
Total Posts: 852
Total Topics: 138
Most Online Today: 16
Most Online Ever: 360
(November 29, 2023, 03:10:08 am)
Users Online
Members: 0
Guests: 3
Total: 3

Top Posters

rcunningham
Posts: 322
Drewie88
Posts: 74
Matt
Posts: 48
rm571
Posts: 42
edodson84
Posts: 38

Author Topic: [Tool] LG Ultimate 2 Advanced Recovery Tool  (Read 9767 times)

0 Members and 1 Guest are viewing this topic.

Offline rcunningham

  • Developer
  • Administrator
  • Senior Member
  • *
  • Posts: 322
  • Location: Portland, ME
    • View Profile
    • TracFone Developers
[Tool] LG Ultimate 2 Advanced Recovery Tool
« on: August 07, 2015, 02:41:08 pm »
Recovery Tool for the LG Ultimate 2

Only use this on the LG Ultimate 2!!!

This is a Windows batch file that can install a recovery of your choice, root your phone, reboot into recovery and much more. It comes with the main LG L41C recoveries in it. I was very bored one day so I made this for myself. Then I thought it might be a good idea to let others use it. You will need to install adb drivers and fastboot drivers before using this tool. They are included in the zip file. The tool is quite simple and is really easy to use. If cats could read they could use it.



How to install:

Download the zip file here: http://www.mediafire.com/download/hrykg3k0j5pcjei/L41C-Advanced-Recovery-Tools.zip
Extract everything to a place where you can find it (Like your desktop)
Install the ADB drivers: https://www.androidfilehost.com/?fid=24052804347803384
Install the LG Mobile drivers
On your phone make sure USB debugging is enabled
Open the RecoveryTool.bat file

Changelog:
  • Added non-touch CWM and touch CWM
  • Add TWRP 2.8.6.0/TWRP v2
  • Added PhilZ Touch Recovery
  • Recovery Tool will install TowelRoot for you to make it easy to root
  • Decreased File Size

Other downloads:

CWM Recovery Inverted Edition: http://tracfonedevs.createaforum.com/lg-ultimate-2/(recovery)-cwm-6-0-5-1-inverted-edition/

PhilZ Touch Recovery Inverted Edition: http://tracfonedevs.createaforum.com/lg-ultimate-2/(recovery)-philz-touch-6-59-0-inverted-edition/

Cyanogen Recovery: http://androidforums.com/threads/cwm-6-0-5-1-lg-ultimate-2.918600/

LG G3 ROM: http://tracfone-developers.com/lg-ultimate-2/lg-g3-rom-port-for-the-lg-ultimate-2/

UltaLolli ROM: http://tracfonedevs.createaforum.com/lg-ultimate-2/(rom)(4-4-2)ultalolli-rom-for-lg-ultimate-2/

Supported ROMs:

LG G3 ROM Port 1.1/2.0/2.1

Ulta Lolli ROM 1.0/2.0/2.1

Credits:

Andy Huynh on Google+ for teaching me all the MS-DOS I know

My cat for being very supportive of my work
@edodson84 for making a fantastic batch of recoveries
@SuperR for building a better TWRP
« Last Edit: March 24, 2016, 05:36:27 pm by rcunningham »
ROM Developer - LG Fan - Site Founder - Volvo Owner & Enthusiast

Register for TracFone Developers!

YouTube: http://www.youtube.com/ryancunningham12
Instagram: rcunningham757
Snapchat: the-ryandroid
Donate: https://www.paypal.me/RyanCunningham

Share on Facebook Share on Twitter


Offline deanic

  • Junior Member
  • *
  • Posts: 2
    • View Profile
  • Device: Tracphone LG Ultimate
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #1 on: July 24, 2016, 05:41:42 pm »
Hi - I'm a noobie just getting started but I'm running adb from Debian 8 (Linux.)

I download the zip file,  extracted the contents and used grep to find the lines with adb in the BAT file- the list is enclosed below.

I pushed all the Android image files to the phone and used  a shell on the phone and md5 to check their checksum - which agrees checksums of images extracted from the zip file Debian - but I don't know if what I down in zip file is correct - probably is.

However, there was no myrecovery.img in the zip file. Where do I find myrecovery.img file?

What's with "Other downloads" - do I need stuff from those URL's - is that where the myrecovery.img?

Assuming I find the myrecovery.img, in what order should I execute the enclosed adb commands - ignoring the adb push commands?

And do I need to download anything from Google Play.

Any help would be greatly appreciated.

Also, I'm assuming LCL42C is the LG Ultimate 2.

-- Cinaed

;=============================
adb push twrp.img /sdcard/
adb shell su -c "dd if=/sdcard/twrp.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push cwmtouch.img /sdcard/
adb shell su -c "dd if=/sdcard/cwmtouch.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push cwm.img /sdcard/
adb shell su -c "dd if=/sdcard/cwm.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push myrecovery.img /sdcard/
adb shell su -c "dd if=/sdcard/myrecovery.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb shell su -c "reboot recovery"
adb install tr.apk
adb shell monkey -p com.geohot.towelroot -c android.intent.category.LAUNCHER 1
adb install su.apk
adb uninstall com.geohot.towelroot

Offline deanic

  • Junior Member
  • *
  • Posts: 2
    • View Profile
  • Device: Tracphone LG Ultimate
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #2 on: July 25, 2016, 12:10:35 am »
Hi - I'm a noobie just getting started but I'm running adb from Debian 8 (Linux.)

[snip]


I got it. I installed the apks/{su.apk,tr.apk} files and TWRP.img from L41C-Advanced-Recovery-Tools.zip, Flashify from Google Play and I was able to install G3-ROM-Port-2.3.zip.

Very nice. It corrected a number of problems but still have a couple of lingering problems  plus a random reboot - which was there before I started. But now I have root access - I can poke around - learn a little about the Android.

Offline rcunningham

  • Developer
  • Administrator
  • Senior Member
  • *
  • Posts: 322
  • Location: Portland, ME
    • View Profile
    • TracFone Developers
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #3 on: July 25, 2016, 04:44:06 am »
Hi - I'm a noobie just getting started but I'm running adb from Debian 8 (Linux.)

I download the zip file,  extracted the contents and used grep to find the lines with adb in the BAT file- the list is enclosed below.

I pushed all the Android image files to the phone and used  a shell on the phone and md5 to check their checksum - which agrees checksums of images extracted from the zip file Debian - but I don't know if what I down in zip file is correct - probably is.

However, there was no myrecovery.img in the zip file. Where do I find myrecovery.img file?

What's with "Other downloads" - do I need stuff from those URL's - is that where the myrecovery.img?

Assuming I find the myrecovery.img, in what order should I execute the enclosed adb commands - ignoring the adb push commands?

And do I need to download anything from Google Play.

Any help would be greatly appreciated.

Also, I'm assuming LCL42C is the LG Ultimate 2.

-- Cinaed

;=============================
adb push twrp.img /sdcard/
adb shell su -c "dd if=/sdcard/twrp.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push cwmtouch.img /sdcard/
adb shell su -c "dd if=/sdcard/cwmtouch.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push cwm.img /sdcard/
adb shell su -c "dd if=/sdcard/cwm.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb push myrecovery.img /sdcard/
adb shell su -c "dd if=/sdcard/myrecovery.img of=/dev/block/platform/msm_sdcc.1/by-name/recovery"
adb shell su -c "reboot recovery"
adb install tr.apk
adb shell monkey -p com.geohot.towelroot -c android.intent.category.LAUNCHER 1
adb install su.apk
adb uninstall com.geohot.towelroot
Welcome to TF Devs!
   
You can't run batch file on any other OS than Windows... that's why it wasn't working. You opened the source code, not the batch file.  Those commands don't work without the rest of the file. You will need a windows machine to use the program, not linux.
ROM Developer - LG Fan - Site Founder - Volvo Owner & Enthusiast

Register for TracFone Developers!

YouTube: http://www.youtube.com/ryancunningham12
Instagram: rcunningham757
Snapchat: the-ryandroid
Donate: https://www.paypal.me/RyanCunningham

Offline pastordl

  • New Member
  • Posts: 1
    • View Profile
  • Device: 603-352-5892
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #4 on: August 19, 2016, 11:47:19 am »
Do you know what the startup button press combo is to boot up into TWRP????

Thank you in advance.

Offline dmackey935

  • New Member
  • Posts: 1
    • View Profile
  • Device: 7169301268
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #5 on: August 15, 2018, 04:00:55 pm »
I have an L41C that just began to act weird. It will not allow the wifi to turn on, and will bootloop when starting up after a reset. May be a hardware issue but I'm willing to reinstall the rom to make sure it is hardware, not software.

Is it possible to get a copy of the L41C Advanced Recovery Tools zip file? Mediafire says it is a dangerous file and will not allow me to download it.


Offline rcunningham

  • Developer
  • Administrator
  • Senior Member
  • *
  • Posts: 322
  • Location: Portland, ME
    • View Profile
    • TracFone Developers
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #6 on: August 24, 2018, 12:03:29 am »
I have an L41C that just began to act weird. It will not allow the wifi to turn on, and will bootloop when starting up after a reset. May be a hardware issue but I'm willing to reinstall the rom to make sure it is hardware, not software.

Is it possible to get a copy of the L41C Advanced Recovery Tools zip file? Mediafire says it is a dangerous file and will not allow me to download it.

Ah MediaFire, always a pain in the butt.

I've uploaded the same file to Google Drive and it *should* be fine there: https://drive.google.com/open?id=1MSBhmA7G_0bBFMtCOGej2O5vTse1gC3o
ROM Developer - LG Fan - Site Founder - Volvo Owner & Enthusiast

Register for TracFone Developers!

YouTube: http://www.youtube.com/ryancunningham12
Instagram: rcunningham757
Snapchat: the-ryandroid
Donate: https://www.paypal.me/RyanCunningham

Offline adisrael

  • New Member
  • Posts: 1
    • View Profile
  • Device: LGL41C
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #7 on: May 24, 2019, 12:36:21 am »
I have an L41C that just began to act weird. It will not allow the wifi to turn on, and will bootloop when starting up after a reset. May be a hardware issue but I'm willing to reinstall the rom to make sure it is hardware, not software.

Is it possible to get a copy of the L41C Advanced Recovery Tools zip file? Mediafire says it is a dangerous file and will not allow me to download it.

Ah MediaFire, always a pain in the butt.

I've uploaded the same file to Google Drive and it *should* be fine there: https://drive.google.com/open?id=1MSBhmA7G_0bBFMtCOGej2O5vTse1gC3o


Google Drive Link not working.... 5/23/2019
Is there another working Link for the Adv Tool zip file.?
Thanks.!

Offline rcunningham

  • Developer
  • Administrator
  • Senior Member
  • *
  • Posts: 322
  • Location: Portland, ME
    • View Profile
    • TracFone Developers
Re: [Tool] LG Ultimate 2 Advanced Recovery Tool
« Reply #8 on: June 09, 2019, 06:36:11 pm »
I have an L41C that just began to act weird. It will not allow the wifi to turn on, and will bootloop when starting up after a reset. May be a hardware issue but I'm willing to reinstall the rom to make sure it is hardware, not software.

Is it possible to get a copy of the L41C Advanced Recovery Tools zip file? Mediafire says it is a dangerous file and will not allow me to download it.

Ah MediaFire, always a pain in the butt.

I've uploaded the same file to Google Drive and it *should* be fine there: https://drive.google.com/open?id=1MSBhmA7G_0bBFMtCOGej2O5vTse1gC3o


Google Drive Link not working.... 5/23/2019
Is there another working Link for the Adv Tool zip file.?
Thanks.!
Google drive is being a dick. Try the old but working link I have from AFH: https://www.androidfilehost.com/?fid=23991606952607707. You are gonna have to jump through hoops with windows defender to allow it to run though, chrome is gonna tell you its dangerous, then you will click 'keep' and then windows 10 is gonna tell you its a "severe" virus, which you will have to select 'Allow' then re-download it and click 'keep' again in chrome.
ROM Developer - LG Fan - Site Founder - Volvo Owner & Enthusiast

Register for TracFone Developers!

YouTube: http://www.youtube.com/ryancunningham12
Instagram: rcunningham757
Snapchat: the-ryandroid
Donate: https://www.paypal.me/RyanCunningham

 

Related Topics

  Subject / Started by Replies Last post
6 Replies
400 Views
Last post November 16, 2016, 10:53:00 am
by rcunningham
2 Replies
873 Views
Last post September 10, 2017, 12:28:58 pm
by Haruo
0 Replies
692 Views
Last post December 22, 2017, 10:12:39 am
by rcunningham

User

Welcome, Guest.
Please login or register.
 
 
 

Login with your social network

Forgot your password?

Recent Posts

Re: [ROM][5.1.1] Cyanogenmod 12.1 for LG REALM W5C by rcunningham
January 07, 2021, 06:09:54 pm

[ROM][5.1.1] Cyanogenmod 12.1 for LG REALM W5C by Cipher-M
October 14, 2020, 10:59:34 pm

[Recovery] TWRP 3.4.0.0 Unofficial for LG REALM, W5C by Cipher-M
October 13, 2020, 02:18:21 pm

Re: [ROM] [4.4.2] ULTALOLLI ROM for LG Ultimate 2 by rcunningham
February 12, 2020, 10:04:17 am

Re: [ROM] [4.4.2] ULTALOLLI ROM for LG Ultimate 2 by Dave
February 01, 2020, 08:18:20 pm

Re: recovery for the LG L39c? by Reahum1616
July 26, 2019, 01:06:07 am

Re: [Tool] LG Ultimate 2 Advanced Recovery Tool by rcunningham
June 09, 2019, 06:36:11 pm

Re: [Tool] LG Ultimate 2 Advanced Recovery Tool by adisrael
May 24, 2019, 12:36:21 am

Re: [Tool] LG Ultimate 2 Advanced Recovery Tool by rcunningham
August 24, 2018, 12:03:29 am

Re: [Tool] LG Ultimate 2 Advanced Recovery Tool by dmackey935
August 15, 2018, 04:00:55 pm