All Projects → libimobiledevice → Libirecovery

libimobiledevice / Libirecovery

Licence: lgpl-2.1
Library and utility to talk to iBoot/iBSS via USB on Mac OS X, Windows, and Linux

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Libirecovery

Just
A library of dependency-free JavaScript functions that do just do one thing.
Stars: ✭ 3,837 (+1410.63%)
Mutual labels:  library
Simpleeval
Simple Safe Sandboxed Extensible Expression Evaluator for Python
Stars: ✭ 246 (-3.15%)
Mutual labels:  library
Resourcedoc
Share the swift resource for iOS dev
Stars: ✭ 251 (-1.18%)
Mutual labels:  library
Mtproto Core
Telegram API JS (MTProto) client library for browser and nodejs
Stars: ✭ 242 (-4.72%)
Mutual labels:  library
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (-3.94%)
Mutual labels:  library
Php Library Template
+ 📒 Provides a GitHub repository template for a PHP library, using GitHub actions.
Stars: ✭ 249 (-1.97%)
Mutual labels:  library
Cordova Plugins
Apache Cordova
Stars: ✭ 242 (-4.72%)
Mutual labels:  library
Chl
C Hypertext Library - A library for writing web applications in C
Stars: ✭ 251 (-1.18%)
Mutual labels:  library
Pyrocore
🔧 A collection of tools for the BitTorrent protocol and especially the rTorrent client
Stars: ✭ 247 (-2.76%)
Mutual labels:  library
Separateshapesview
Simple custom ViewGroup with two shapes inside and simple scale animation
Stars: ✭ 250 (-1.57%)
Mutual labels:  library
Hubcaps
a rust interface for github
Stars: ✭ 245 (-3.54%)
Mutual labels:  library
Swiftyvk
Easy and powerful way to interact with VK API for iOS and macOS
Stars: ✭ 247 (-2.76%)
Mutual labels:  library
Statik
Multi-purpose static web site generator aimed at developers.
Stars: ✭ 249 (-1.97%)
Mutual labels:  library
Fannypack
[UNMAINTAINED] An accessible-focused, themeable, friendly React UI Kit.
Stars: ✭ 245 (-3.54%)
Mutual labels:  library
Teaset
A UI library for react native, provides 20+ pure JS(ES6) components, focusing on content display and action control.
Stars: ✭ 2,845 (+1020.08%)
Mutual labels:  library
Androidx
Development environment for Android Jetpack extension libraries under the androidx namespace. Synchronized with Android Jetpack's primary development branch on AOSP.
Stars: ✭ 3,358 (+1222.05%)
Mutual labels:  library
Jreactive 8583
Java Client & Server for ISO8583 & Netty
Stars: ✭ 248 (-2.36%)
Mutual labels:  library
Ta Rs
Technical analysis library for Rust language
Stars: ✭ 248 (-2.36%)
Mutual labels:  library
Nexmo Laravel
Add Nexmo functionality such as SMS and voice calling to your Laravel app with this Laravel Service Provider.
Stars: ✭ 250 (-1.57%)
Mutual labels:  library
Cayenne
Mirror of Apache Cayenne
Stars: ✭ 250 (-1.57%)
Mutual labels:  library

libirecovery

The libirecovery library allows communication with iBoot/iBSS of iOS devices via USB.

Features

libirecovery is a cross-platform library which implements communication to iBoot/iBSS found on Apple's iOS devices via USB. A command-line utility named irecovery is also provided.

This is a fork of an older version from former openjailbreak.org and is meant to be used with idevicerestore from the libimobiledevice project.

Installation / Getting started

Debian / Ubuntu Linux

First install all required dependencies and build tools:

sudo apt-get install \
	build-essential \
	checkinstall \
	git \
	autoconf \
	automake \
	libtool-bin \
	libreadline-dev \
	libusb-1.0-0-dev

Then clone the actual project repository:

git clone https://github.com/libimobiledevice/libirecovery.git
cd libirecovery

Now you can build and install it:

./autogen.sh
make
sudo make install

Usage

First of all attach your device to your machine. Make sure your device is not in normal mode. You can use the ideviceenterrecovery application from libimobiledevice to let your device boot into recovery mode if you need it.

Then simply run:

irecovery --shell

This connects to your device and opens a simple shell to interact with the device.

For instance to make your device boot into normal mode again use:

setenv auto-boot true
saveenv
reboot

Please consult the usage information or manual page for a full documentation of available command line options:

irecovery --help
man irecovery

Contributing

We welcome contributions from anyone and are grateful for every pull request!

If you'd like to contribute, please fork the master branch, change, commit and send a pull request for review. Once approved it can be merged into the main code base.

If you plan to contribute larger changes or a major refactoring, please create a ticket first to discuss the idea upfront to ensure less effort for everyone.

Please make sure your contribution adheres to:

  • Try to follow the code style of the project
  • Commit messages should describe the change well without being to short
  • Try to split larger changes into individual commits of a common domain
  • Use your real name and a valid email address for your commits

We are still working on the guidelines so bear with us!

Links

License

This project is licensed under the GNU Lesser General Public License v2.1, also included in the repository in the COPYING file.

Credits

Apple, iPhone, iPad, iPod, iPod Touch, Apple TV, Apple Watch, Mac, iOS, iPadOS, tvOS, watchOS, and macOS are trademarks of Apple Inc.

This project is an independent software library and has not been authorized, sponsored, or otherwise approved by Apple Inc.

README Updated on: 2020-10-23

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].