Chào mừng bạn đến Diễn Đàn ChơiMobile

Cộng đồng Mobile hàng đầu Việt Nam, Phát triển Android, iOS, Kỹ Thuật Mobile. Đăng ký ngay để tạo chủ để và cùng thảo luận !

Hardbrick G2, cách unbrick hardbrick không cần box

Discussion in 'LG G2, G2 Docomo, isai' started by dokyson, May 15, 2014.

  1. dokyson

    dokyson Administrator
    Staff Member Administrator

    Dec 9, 2012
    18,143
    37,714
    113
    Male
    Đầu tiên cảm ơn bạn @@tainhachay đã tìm được bài này từ xda và mình đã chuột bạch cho em G2 bạn mình đắp chiếu 1 tháng:D
    Bài viết tiếng anh ở đây:
    http://lgviet.com/forum/threads/har...no-download-mode-after-ota.12768/#post-447987
    Mình tóm tắt lại thế này :
    Với cách này có thể fix được các lỗi như treo logo, vào fastboot, hay màn hình đen chết chóc, cắm vào máy tính hiện lên một rổ ổ USB,máy tình chỉ nhận QHSUSB_BULK trong Device manager....
    here
    1- sbl1.img
    2- aboot.img
    3- rpm.img
    4- tz.img
    5- openrecovery-twrp-2.6.3.2-g2d802

    Now just boot into ubuntu and plug your LG G2 to the computer.

    Put the downloaded files in the desktop or wherever you want. You just need to know the path to your files.
    unplug any other usb device except your mouse, keyboard and lg g2.
    Open terminal in ubuntu then type:

    Code:

    Code:
    ls /dev/sd*
    It should return something like this:

    Quote:
    Code:
    /dev/sda /dev/sda1 /dev/sda2 /dev/sda5
    /dev/sdb1 /dev/sdb2 /dev/sdb3 /dev/sdb4
    /dev/sdb5 .......... /dev/sdb36
    In this case your device is detected under sdb. you may have it under sdc. just look for the biggest number, in this case /dev/sdb36 so it is sdb.

    Linux keeps poping up error message "unable to mount..."? follow this solution by @priority3
    Quote:
    Originally Posted by priority3 View Post
    You can stop the "unable to mount..." error messages from popping up by disabling
    the automount feature of Ubuntu.
    "To enable or disable automount open a terminal and type dconf-editor followed by the [Enter] key.
    Browse to org.gnome.desktop.media-handling."
    now, according to the result of the first command type the following:

    Code:

    Code:
    gdisk -l /dev/sdb
    you will get result:

    Code:

    Code:
    Number Start (sector) End (sector) Size Code Name
    1 32768 163839 64.0 MiB 0700 modem
    2 163840 165887 1024.0 KiB FFFF sbl1
    3 165888 166911 512.0 KiB FFFF dbi
    4 196608 197631 512.0 KiB FFFF DDR
    5 229376 231423 1024.0 KiB FFFF aboot
    6 231424 233471 1024.0 KiB FFFF rpm
    7 262144 294911 16.0 MiB FFFF boot
    8 294912 296959 1024.0 KiB FFFF tz
    9 296960 296961 1024 bytes 0700 pad
    10 327680 333823 3.0 MiB FFFF modemst1
    11 333824 339967 3.0 MiB FFFF modemst2
    12 339968 339969 1024 bytes FFFF pad1
    13 360448 393215 16.0 MiB FFFF misc
    14 393216 458751 32.0 MiB 0700 persist
    15 458752 491519 16.0 MiB FFFF recovery
    16 491520 497663 3.0 MiB FFFF fsg
    17 524288 525311 512.0 KiB FFFF fsc
    18 525312 526335 512.0 KiB FFFF ssd
    19 526336 526337 1024 bytes FFFF pad2
    20 526338 527361 512.0 KiB FFFF encrypt
    21 557056 573439 8.0 MiB 0700 drm
    22 573440 589823 8.0 MiB 0700 sns
    23 589824 655359 32.0 MiB FFFF laf
    24 655360 720895 32.0 MiB FFFF fota
    25 720896 786431 32.0 MiB 0700 mpt
    26 786432 787455 512.0 KiB FFFF dbibak
    27 787456 789503 1024.0 KiB FFFF rpmbak
    28 789504 791551 1024.0 KiB FFFF tzbak
    29 791552 791567 8.0 KiB FFFF rct
    30 819200 6488063 2.7 GiB 0700 system
    31 6488064 7733247 608.0 MiB 0700 cache
    32 7733248 7897087 80.0 MiB 0700 tombstones
    33 7897088 7929855 16.0 MiB 0700 spare
    34 7929856 8028159 48.0 MiB 0700 cust
    35 8028160 30703615 10.8 GiB 0700 userdata
    36 30703616 30777310 36.0 MiB 0700 grow
    We will be interested by lines marked by red color here. those lines show us the partitions numbers of each file we have downloaded at the begining.
    I'm talking about
    1- sbl1.img
    2- aboot.img
    3- rpm.img
    4- tz.img
    5- openrecovery-twrp-2.6.3.2-g2d802

    in our case the sbl1.img is located under sdb2
    aboot.img under sdb5
    rpm.img under sdb6
    tz.img under sdb8
    recovery under sdb15

    now be careful and try to make it the right way.
    we will use dd commands to push img files inside the right partitions.
    So lets start:

    if youare not logged on as root in ubuntu just open terminal and type
    Code:

    Code:
    sudo -i
    then type your password

    now you must be under root access.

    then type the following dd command:

    Code:

    Code:
    dd if=/home/med/Desktop/sbl1.img of=/dev/sdb2
    i put files in the desktop, so the path to the img files for me is /home/med/Desktop/. just replace this path by the appropriate path to your files. one done you will get some information about the file size you pushed and maybe time of the operation.

    keep doing the samething for the other files:

    Code:

    Code:
    dd if=/home/med/Desktop/aboot.img of=/dev/sdb5
    
    dd if=/home/med/Desktop/rpm.img of=/dev/sdb6
    
    dd if=/home/med/Desktop/tz.img of=/dev/sdb8
    
    dd if=/home/med/Desktop/openrecovery-twrp-2.6.3.2-g2d802 of=/dev/sdb15
    Once you finish just reboot your phone, if you did things as described you must boot into twrp recovery.
    Click to expand...

    Và đây là từng bước bằng hình mình đã thực hiện:
    B1: download các file sau vào cùng thư mục:
    Files to download from here
    1- sbl1.img
    2- aboot.img
    3- rpm.img
    4- tz.img
    5- openrecovery-twrp-2.6.3.2-g2d802
    B2: Mở Linux lên (Có thể là ububu, Fedora,Centos ...)
    B3: vào Terminal
    Hiện tất cả ổ đĩa hiện có của máy tính. ở đây của mình có sdb36 - trong trường hợp cắm vào có 12 USB.

    [​IMG]

    B4: sau khi đã xác định được các phân vùng trên
    Ta cần vào quyền root của Linux-> sau đó gdisk -l /dev/sdb để xem các phân vùng lưu boot,rec...

    [​IMG]

    B5: quan trọng nhất :
    Sau khi các bạn download các file trên vào cùng thư mục lưu ở đâu tùy bạn, ở đây mình luuw ở Downloads,để tiện thao tác chúng ta cd vào thư mục Downloads( cd ./Downloads/)
    Lần lượt chạy các lệnh như trong hình (Nhớ gõ đúng thư mục và tên file)
    [​IMG]


    Cuốí cùng là bật G2 lên -> vào recovery 3Wipe rồi reboot và thưởng thức thành quả

    Nguồn: LGViet
     
    4 people like this.
  2. caobang200

    Official Member

    Mar 15, 2013
    44
    46
    18
    Male
    Bác ơi,xem có cách nào cứu con LG G F180k của em bị brick chỉ nhận QHSUSB_BULK trong Device manager ko ạ,thanks
     
    2 people like this.
  3. anhdaivn

    Newbie

    Apr 11, 2013
    1
    0
    0
    Male
    BÁC GIÚP MÌNH CON G2 DOCOMO L01F QHSUSB_BULK ... MÀN HÌNH ĐEN THUI .. CẮM SẠC KHÔNG NHẬN....YAHOO :[email protected]
     
  4. datnguyenmobile

    datnguyenmobile Well-Known Member
    Senior Member

    Máy Pro 2 em bị khóa mã bảo vệ dùng thao tác reset phím cứng không được
    Nhờ bác Sơn giúp đỡ.
     
  5. tungkick777

    tungkick777 Team SS
    Staff Member Điều Hành Viên

    Dec 15, 2012
    3,250
    6,747
    0
    Male
    OCTOPUS SUPPORT RÙI NHA BÁC
     
    2 people like this.
  6. G2 D802

    Newbie

    Oct 6, 2014
    5
    0
    0
    Male
    G2 d802 của mình bị mất boot, có cách nào sửa ko bạn?
     
  7. tungkick777

    tungkick777 Team SS
    Staff Member Điều Hành Viên

    Dec 15, 2012
    3,250
    6,747
    0
    Male
    Lieen he minh nha
     
  8. G2 D802

    Newbie

    Oct 6, 2014
    5
    0
    0
    Male
    mình ở sg bạn ơi, bạn ở đâu? G2 giờ chưa có box hỗ trợ, bạn có cách khác ko?
     
  9. tungkick777

    tungkick777 Team SS
    Staff Member Điều Hành Viên

    Dec 15, 2012
    3,250
    6,747
    0
    Male
    Mình unbrick dc nêu do up rom
     
  10. G2 D802

    Newbie

    Oct 6, 2014
    5
    0
    0
    Male
    mình ko up room mà bị fastboot mode sau đó lại kdz nhầm bản nên bị treo logo, ko vào đc download mode nào cả.
     
  11. tungkick777

    tungkick777 Team SS
    Staff Member Điều Hành Viên

    Dec 15, 2012
    3,250
    6,747
    0
    Male
    Vậy cứ send về 100% done
     
  12. G2 D802

    Newbie

    Oct 6, 2014
    5
    0
    0
    Male
    bạn ở đâu?
     
  13. alangreece

    Newbie

    Apr 7, 2014
    23
    18
    3
    Male
    cách này dùng chung cho dòng g2 (f320, l01f luôn) hay chỉ dùng cho d802 vậy bác
     

Share This Page