How do root 2.3.4 GB (4.0.2.A.0.62) the Neo V?

I am currently on 2.3.4 GB (4.0.2.A.0.62) on Neo V. I flashed to Go by ICS 4.0.4. Now, I want my Neo V of the roots.

I have two questions here.

  1. Is it possible for me to 4.0.2.A.0.62 on my Neo V root? And, if possible, so how to do this? Can someone help me please. ?
  2. Is it necessary for me to first flash to 4.0.2.A.0.42 and then root my Neo V?

Please help me. Can someone please provide me with the links and guide step by step to root Neo V 4.0.2.A.0.62?

Thank you

Anoop

Hey anoops08 I'll try to help you

First of all you must be about 0.42 or 0,58 firmware to be able to root like 0.62 is quite difficult at the root with locked bootloader

So first Flash your phone with 0.42

Wan't to know how flasher?

See downgrading to part of gingerbread here

Once you flash 0.42 then root your mobile as follows

(1) turn on "USB DEBUGGING" from (Menu\Settings\Applications\Development)

2) allow to "UNKNOWN SOURCES" of (Menu\Settings\Applications)

(3) connect the USB cable to the PHONE and then connect to the PC

(4) jump "PC Companion Software" prompt on the device

5 you'll see ad drivers install on your PC, let him complete

(6) download this extracted with winrar and click runme.bat

(7) it will root your device, follow the procedure

Tags: Sony Software

Similar Questions

  • HOW DO ROOT 4.1.B.0.431 4.0.4, HAVING BUILD NUMBER

    Hello..

    I want to the root of my neo v...

    Please tell me how the root it without unlocking the bootloader...
    If possible please give me get process step by step...
    BCZ I don't know anything about rooting...

    See here How to root 4.0.4


  • How do root Android 2.3

    How to root

    http://Forum.xda-developers.com/showthread.php?t=1312859

    OR

    aZuZu

    http://Forum.xda-developers.com/showthread.php?t=1196421

    FOR ROOTING

    1 make sure you're on 2.3.3 FW stock
    2 turn on debugging of unknown Sources & USB in the Menu-> settings-> Applications-> unknown Sources Menu & -> settings-> Applications-> development-> USB debugging
    3. turn off the device
    4. flash - ... [Leave FlashTool performer]-
    5. unplug the usb cable
    6. turn on the device
    7. immediately connect usb cab...
    .
    13. turn on your phone and your phone will root.

    This method it will not wipe your existing data.

    FOR THE INSTALLATION OF RECOVERY

    How to install recovery based on this:

    You can either wait Flashtool updated
    OR
    Follow these steps:

    1. download Z xRecovery - 0.3_GBready

    2. [OPTIONAL] If you have ADB can download minimal adb

    3 extract the GBready xRecovery to c:\

    4. run the following command to push the recovery of files into a temporary directory (/ data/local/tmp /)

    Try this instead

    How to root

    http://Forum.xda-developers.com/showthread.php?t=1312859

  • How do root 4.0.4 android?

    How to root the Sony Ericsson Walkman Live (WT19i) 4.1.B.0.431 (Android 4.0.4) running?

    See here

  • How to make a user able to connect only once? and how do I restrict a user authorized to vote only 15 candidates and the brand of vote count?

    Hello

    I'm just doing my project which is the voting system. So my first question is how to make a user or a voter can connect once only using their username and password? After that they brought their vote, they can not be able to connect to a vote. Here, the user name, I replace it with IC and the password I can replace the ID (student ID). Here is my code for the connection:

    <?php
    if(isset($_POST["submit"])){
    $user=$_POST['IC'];
    $pass=$_POST['ID'];
    
    
    $con=mysql_connect('localhost','root','pass') or die(mysql_error());
    mysql_select_db('ses') or die("Cannot select DataBase");
    
    
    $query=mysql_query("SELECT * FROM voters WHERE IC='".$user."' AND ID='".$pass."'" );
    $numrows=mysql_num_rows($query);
    if($numrows!=0)
    {
    while($row=mysql_fetch_assoc($query))
    {
    $dbusername=$row['IC'];
    $dbpassword=$row['ID'];
    
    
    }
    
    
    if($user == $dbusername && $pass == $dbpassword )
    {
    session_start();
    $_SESSION['sess_user']=$user;
    $_SESSION['sess_pass']=$pass;
    
    
    
    
    /*Redirect browser*/
    header("Location: main.php");
    }
    }else{
    echo "Invalid IC Number and ID Number!";
    }
    }
    ?>
    
    

    for the second question is how to limit a voter to vote only 15 candidates and counting of the vote that voters go? When the vote is made with 15, then the popup script appears informed that the elector make themselves with their vote.for this I use box as a method of voting and each checkbox have the id which is the primary key. I appoint the id as 'No' and set it as the primary key. Here is the code for voting:

    <?php
    $servername = "localhost";
    $username = "root";
    $password = "pass";
    $dbname = "ses";
    
    
    // Create connection
    $conn = new mysqli($servername, $username, $password, $dbname);
    // Check connection
    if ($conn->connect_error) {
         die("Connection failed: " . $conn->connect_error);
    }
        
    $sql = "SELECT No, Calon, ID, Jurusan, Image FROM candidates";
    $result = $conn->query($sql);
    
    if(isset($_POST['vote'])) {
        
    //get the ID value from the radio button form field and store in an array.
    $update_vote = $_POST['candidate_id'];
    
    //loop through the array and update the database
    foreach ($update_vote as $value) {
    $vote_sachin = "UPDATE candidates SET Undi=Undi+1 WHERE No=".$value."";
    $run_sachin = mysqli_query($conn, $vote_sachin);
    
    
        }
    
      header("Location:http://localhost/VotingSystem/");
    }
    
    
    ?>
    
    
    <form method="post" id="form1" action="main.php">
    <?php
    if ($result->num_rows > 0) {
    echo "<table border >
    
    
    <tr>
    <th>NO</th>
    <th>Candidate</th>
    <th>INFO</th>
    <th>Vote</th>
    </tr>";
    // output data of each row
    while($row = $result->fetch_assoc()) {
    echo "<tr>
    <td align='center'>" . $row["No"]. "</td>
    <td><img src=" . $row['Image'] . " width=120px height=150px></td>
    <td><br/>" . $row["Calon"]. " <br/>" . $row["ID"]. " <br/>" . $row["Jurusan"]. "<br/></td>
    <td align='center'><input type='checkbox' name='candidate_id[]' value='".$row['No']."'></td>
    </tr>";
    }
        echo "<tr><td></td><td></td><td></td>
        <td><input type='submit' name='vote' value='VOTE'</td>
        </tr>";
    echo "</table>";
    
    
    } else {
    echo "0 results";
    }
    $conn->close();
    
    
    ?>
    
    

    I hope someone can help me with this because I'm still trying to learn this by my own php code...

    Thank you

    # 1, add a Boolean column in the table (VoteSubmitted) and the value initially FALSE to follow if the user has already voted.  Check this field when they connect. If the field is set to TRUE, displays a message and cannot vote again. When they get it vote, update the field from FALSE to TRUE.

    # 2, I would like to do this with javascript to allow them to select all their candidates and submit once. You could start with something like this:

    Cut paste & limit the number of boxes checked script

  • How can implement you not with Tim Capsule and AirPort their simulation on the iMac?

    Hello

    How can implement you not with Time Capsule and AirPort their simulation on the iMac?

    I don't know what you're asking.

    AirPort Extreme is a wireless router.

    A Time Capsule airport is an AirPort Extreme with a built-in hard drive for data storage.

    An iMac is a Mac computer.

    An iMac is not a wireless router, so he is unable to perform the functions of a wireless router.

  • How to make an update of location to a group of photos at the same time?

    How to make an update of location to a group of photos at the same time?  This used to be a feature in iPhoto.

    I use El Capitan 10.11.6 and Photos 1.5

    If yu have OS X 10.5.1 s you say that you can not - with OS X 10.11.6 Photos 1.5 (a free update in the app store) you select them and info - enter the location and it will apply to all photos

    LN

  • How to allow my new iMac desktop computer to download previous purchases on the iTunes Store?

    How to allow my new iMac desktop computer to download previous purchases on the iTunes Store? I transferred all of my information from my old Mac Mini to my new iMac, retina 4K, 21.5 - inch desktop computer via my Apple, WiFi, and Migration Wizard. My complete music in iTunes library is available and visible, but when I try to play the music of the song or artist I have the following message: "You must allow this computer from the Store menu until you can download previous purchases."  I allowed off my old Mac Mini and an even more ancient PC of my iTunes account page.  Please notify.

    On your new machine > iTunes > main menu > account > permissions > authorize this computer?

  • How do I request a window around Firefox 29.0.1 frame? The new look is always "mobile/tablet.

    I was just wondering how / if it is possible to create a "window" box around/look of the browser as before the update. Just as when you open 'My computer' it has a frame of glass frosted around it / over it, indicating which application it is top-left with a small icon next to it.

    Hi 1ANtonyAwesome1, go to the new firefox menu

    > customize and activate the down title bar to the left of this window...

  • What standard, if any, specifies how a browser responds to a type of content that is specified by the attribute 'type' of the anchor tag?

    I had hoped that the following HTML code would FORCE the browser responds to the anchor when dealing with content in plain text: < a href = "file:path" type = "text/plain" > anchor text < /a >. Similarly: < a href = "file:path" type = "text/html" >... < /a > should FORCE the browser to treat the reference that responded to the questionnaire in the HTML code. Firefox does this (good for you!). However, Google Chrome and Internet Explorer seem to ignore the given content type and process the response according to but they feel (which seems to be based on the file extension). I was hoping to find a standard that describes how a browser handles content specified by source type. I looked at the W3C html and http standards and have not yet find no applicable description or condition. Obviously, I'm looking for a way to encode the source file so that when the anchors are observed, they appear as I want them to be. I can not change the content of the file destination (or name) - which is already determined by its own needs.

    Hi asicchecker, about what is 'necessary', did you follow the links in the gingerbread man?

    This is the most direct:

    HTML 4.01: http://www.w3.org/TR/html401/struct/links.html#h-12.2

    HTML5: http://www.w3.org/TR/html5/links.html#attr-hyperlink-type (ditto)

    DND: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-type

  • How can I display all recipients of an e-mail when I open the email

    I don't know if this is a duplicate.

    How can I display all recipients of an e-mail when I open the email in Thunderbird. What setting do I change this effect. I don't see that myself as a recipient not anyone else the email is addressed to or even any cc

    'View'-> headers-> all the.

  • How can I go to watch Apple TV watching television (cable) without changing the remotes?

    How can I go to watch Apple TV watching television (cable) without changing the remotes?

    You can't do that.  The feature that turns on the TV and the entrance to tha ATV is nice, but is not able to remember what the original setting was and go back.

  • Yahoo mail and yahoo Web sites not be loading not on safari April 10, 2916. How to get around this problem? Œuvres of chrome! What is the future of mac?

    Yahoo mail and yahoo Web sites not to load not on safari as of April 10, 2016. How to get around this problem? Œuvres of chrome! What is the future of mac?

    Could be a cookie problem...

    In your Safari menu bar, click Safari > Preferences then select the Privacy tab, then click on: Remove all data from the Web site

    If this does not help, you can have this Yahoo pages preventing to open a Safari extension or third party plugin installed.

    In the Safari menu, click Safari > Preferences , and select the tab ' Extensions '. If there are installed extensions, one at a time uninstall and exit then restart Safari to test.

    If it is not a question of extensions, try troubleshooting third-party plug-ins.

    Back to Safari > Preferences. This time select the tab Security Deselect: plug-ins Allow. Quit and restart Safari to test.

    If it makes a difference, the instructions of troubleshooting plugins here.

  • How can I set a password for firefox so that everyone must enter the password before running firefox

    My younger sister run my firefox just to this afternoon (she origin use IE), and she saw something that is not visible. How can I set a password for firefox so that everyone must enter the password before running firefox?

    Another option is the master password + extension.

    You must first make sure that Firefox uses a master password, for more details on how to do that see use a master password to protect stored logins and passwords. Then with the master password + extension in its options, go to the getting started section and make sure that "ask for password at startup" and "Exit if cancelled" is selected both.

    As with all extensions, this protection is quite weak and can be bypassed if start you Firefox in safe mode that disables extensions.

  • How can I know if Migration Wizard works... I have the gray wheel on the new mac and it is after a msg error saying there was an error with iCloud (in red)

    How can I know if Migration Wizard works... I have the gray wheel on the new mac and it's after a msg error saying there was an error with iCloud (in red). What is happening with a MacBook Pro refurbished, I just got today. Thanks for any help.

    The guarantee gives the right to the free phone support for the first 90 days of ownership.

Maybe you are looking for