Sending nordata error

Всем привет, Как-то однажды повис на айтюнсе, пробовал перепрошить - ошибка 9. Кто-то грешит на НАНД, кто-то грешит на процессор. Происходит все так, ввожу в ДФУ, восстанавливаю скачанную прошивку официальную, последнюю, появляется "ожидание айфона" минута-полторы висит на этом этапе, после...


  • #1

Всем привет,
Как-то однажды повис на айтюнсе, пробовал перепрошить — ошибка 9.
Кто-то грешит на НАНД, кто-то грешит на процессор.
Происходит все так, ввожу в ДФУ, восстанавливаю скачанную прошивку официальную, последнюю, появляется «ожидание айфона» минута-полторы висит на этом этапе, после айфон перезагружается, в тюнсе 9 ошибка.
Кто сталкивался ? Как решалось ?

Coler


  • #2

У тунца логи посмотри и сразу ясно станет что и где


  • #3

У тунца логи посмотри и сразу ясно станет что и где

Все бы ничего, но, где просмотреть логи ? (macOS Sierra)


  • #4

Нанд надо менять прописав серийник.


  • #5

Нам помогла простая перекатка Nand.


  • #6

Просто добавлю для информации, PCI-E шина зависшая -4013 ошибка, снял Вифи(до этого дико грелась, но как-то сама перестала греоться у клиента(контакты просто отгорели, узнал после снятия вифи-мс)) ошибка 9
Ориг модуль, Заряженная АКБ(от БП не пошло) и шьем. помогло….
Хотя предполагаю что с нандом все равно бяда будет.


  • #7

была такая 6ка. Перекатал нанд, результат тот же, заменил тристар, тело прошилось без проблем, шил из рекавери, в дфу даже не загонял(Разумеется до перекатки пробывал по разному и дфу и рекавери) п.с. тристар родной выдавал то что нужно, но с ним не але

Последнее редактирование: 26/7/17


  • #8

Вставлю свои 5 копеек: 6S ошибка 9 в самом начале прошивки (полоса прогресса появлялась, но не начинала заполняться). Уже было собрался нанд снимать… Махнул акб и прошился из dfu без проблем.

Recommend Projects

  • React photo

    React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo

    Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo

    Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo

    TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo

    Django

    The Web framework for perfectionists with deadlines.

  • Laravel photo

    Laravel

    A PHP framework for web artisans

  • D3 photo

    D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Visualization

    Some thing interesting about visualization, use data art

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo

    Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo

    Microsoft

    Open source projects and samples from Microsoft.

  • Google photo

    Google

    Google ❤️ Open Source for everyone.

  • Alibaba photo

    Alibaba

    Alibaba Open Source for everyone

  • D3 photo

    D3

    Data-Driven Documents codes.

  • Tencent photo

    Tencent

    China tencent open source team.

By now you all probably know of Prometheus, the tool which allows you to restore to unsigned iOS versions using SHSH2 blobs. If you don’t know what it is, here’s a guide to restoring to iOS 12.1.2. A lot of people have encountered errors while using futurerestore. This article will attempt to help as many people as possible solve their issues.

Some of the main issues people have when trying to use futurerestore are caused because their Mac or Linux machine does not have some of the required dependencies installed. This essentially means the software that needs to be installed on your computer before futurerestore can work.

Errors and How to Fix Them

“dyld: Library not loaded: /usr/local/lib/libzip.dylib” / “Reason: image not found” / “Abort trap: 6”

This issue is usually caused because software than futurerestore depends on to run is not installed on your computer. Skip step 1 if you are using a Linux machine. If you are asked for a password at any point, just type your Mac account password and press the enter key.

  1. Open the Terminal application on your Mac and type in the following command:

    xcode-select --install

    This should open a pop-up asking you to install the Xcode Command Line Tools. Click the Install button to download and install this.

  2. You now need to install “homebrew” in order to install the tools required for futurerestore. To do this, type the following command into the Terminal application and wait for it to finish installing:

    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  3. Now you need to install the tools required for futurerestore. Copy and paste the commands below into Terminal (one at a time):

    brew install automake autoconf libtool pkg-config libplist openssl libzip

    git clone https://github.com/tihmstar/libirecovery && cd ./libirecovery && bash autogen.sh && make install

    cd

    git clone https://github.com/tihmstar/libcrippy && cd ./libcrippy && bash autogen.sh && make install

    cd

    git clone https://github.com/tihmstar/libfragmentzip && cd ./libfragmentzip && bash autogen.sh && make install

    cd

    git clone https://github.com/tihmstar/libpartialzip && cd ./libpartialzip && bash autogen.sh && make install

  4. Once all of those tools have been installed, type the commands below into Terminal (again, one by one):

    cd /usr/local

    sudo mkdir ssl

    sudo chmod 777 /usr/local/ssl

    cd

    git clone https://github.com/openssl/openssl.git

    cd openssl

    ./config

    make

    make install

  5. Now you should update curl. To do this type the following command into Terminal:

    brew install curl

  6. You now need to copy and paste the commands below into Terminal (one at a time):

    ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/

    ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/

    ln -s /usr/local/Cellar/openssl/1.0.2j/bin/openssl openssl

You should hopefully now be able to run futurerestore without any problems.

If you have any errors which are not listed here, please comment them below or contact me on Twitter @iPodHacks142 so I can add them.

Frequently Asked Questions

Q: Can I run futurerestore on Windows?
A: Yes, the latest forked version of futurerestore by s0uthwest supports both Mac and Windows.

Q: When I run nonceEnabler on my device, I get an error like “[!] failed to get the kernel base address”. What does this mean?
A: This error usually means that you are using a jailbreak that doesn’t have task_for_pid_0 (tfp0) functionality. This does, unfortunately, mean that you can’t install nonceEnabler on your phone, and can’t use futurerestore with a forced generator. Look at my guide for a list of compatible jailbreaks.

Q: I left futurerestore running for hours on my non-jailbroken device and didn’t get any collisions. Did I do something wrong?
A: The non-jailbreak method of using futurerestore is pretty unlikely to work, your device would have to randomly generate the exact same nonce as the one in your SHSH2 blob. If you have this running for more than an hour or two, its probably worth giving up.

Q: Does Touch ID work after using futurerestore to restore my device?
A: This depends on the SEP files of the current signed version by Apple, and the version you are trying to restore to. For example, the sep version for iOS 10.2.1 and 10.2 are the same, therefore Touch ID will work in this case. However, the SEP for iOS 10.2.1 is not fully compatible with iOS 10.1.1, meaning Touch ID would not work if restoring to iOS 10.1.1 with iOS 10.2.1 SEP.

Q: When I try to set a custom generator using nvram on my device, I get an error like “nvram: Error setting variable – ‘com.apple.System.boot-nonce’: (iokit/common) general error”. How do I fix this?
A: As far as I can tell, this usually occurs when nonceEnabler has either not been installed on the device, or you got an error when you tried to install nonceEnabler. Make sure to add the nonceEnabler patch to your device, or you will not be able to set custom generators using nvram.

This article may be updated from time to time, so keep checking back if your error or question is not listed here.

ALSO SEE: How to Restore/Update to iOS 12.1.2 and Jailbreak Using futurerestore (iPhone / iPod touch / iPad)

Понравилась статья? Поделить с друзьями:
  • Sending kernelcache 3utools ошибка
  • Sending kernel cache 3utools ошибка
  • Sending failed error cannot get url timeout was reached
  • Sending failed error cannot get url failure when receiving data from the peer
  • Sending failed error cannot convert request contents to utf8