All Projects → XboxDev → extract-xiso

XboxDev / extract-xiso

Licence: other
Xbox ISO Creation/Extraction utility. Imported from SourceForge.

Programming Languages

c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to extract-xiso

Gamearchives
A C# library for reading several video game archive formats, and a sample file explorer.
Stars: ✭ 57 (-84.08%)
Mutual labels:  iso, xbox
xbox-winfsp
Brings native support for Xbox filesystems (FATX, STFS & GDFX/XGD/XDVDFS) to Windows.
Stars: ✭ 37 (-89.66%)
Mutual labels:  xbox, xgd
butdr
Backup to Cloud( Google Drive, Dropbox ... ) use rclone
Stars: ✭ 49 (-86.31%)
Mutual labels:  backup
DyAnnotationExtractor
DyAnnotationExtractor is software for extracting annotations (highlighted text and comments) from e-documents like PDF.
Stars: ✭ 34 (-90.5%)
Mutual labels:  extract
b2-sdk-php
SDK for Backblaze's B2 storage service.
Stars: ✭ 75 (-79.05%)
Mutual labels:  backup
IAmLazy
Easily backup and restore your tweaks
Stars: ✭ 37 (-89.66%)
Mutual labels:  backup
underbase
MongoDB schema and data migration library based on semver
Stars: ✭ 19 (-94.69%)
Mutual labels:  backup
vbo365-rest-self-service
Unofficial Self-Service Web Portal for Veeam Backup for Microsoft Office 365
Stars: ✭ 24 (-93.3%)
Mutual labels:  backup
countrynames
Utility library to turn country names into ISO two-letter codes
Stars: ✭ 55 (-84.64%)
Mutual labels:  iso
trello-full-backup
Python script to backup everything from Trello: boards, lists, cards and attachments
Stars: ✭ 119 (-66.76%)
Mutual labels:  backup
date-extractor
Extract dates from text
Stars: ✭ 58 (-83.8%)
Mutual labels:  iso
ISO8601
🎗 Super lightweight ISO8601 Date Formatter in Swift
Stars: ✭ 20 (-94.41%)
Mutual labels:  iso
proxmox toolbox
A toolbox to get the firsts configurations of Proxmox VE / BS done in no time
Stars: ✭ 158 (-55.87%)
Mutual labels:  backup
keyword-extract
简单高效的URL关键词提取工具
Stars: ✭ 15 (-95.81%)
Mutual labels:  extract
VestaCP-Sync-Backups-To-Mega
VestaCP: uploading backups to the MEGA cloud
Stars: ✭ 17 (-95.25%)
Mutual labels:  backup
flutter contests
My entries for the flutter create contests.
Stars: ✭ 36 (-89.94%)
Mutual labels:  create
planb
PlanB - automating remote backups and snapshots with zfs/rsync
Stars: ✭ 24 (-93.3%)
Mutual labels:  backup
qresExtract
Qt binary resource (qres) extractor
Stars: ✭ 26 (-92.74%)
Mutual labels:  extract
ansible-backup
Ansible daily backup role
Stars: ✭ 25 (-93.02%)
Mutual labels:  backup
jira-backup-py
python script to create, download and upload to s3 your Jira or Confluence cloud instance backup
Stars: ✭ 36 (-89.94%)
Mutual labels:  backup

extract-xiso

Master Build Status

A command line utility created by in to allow the creation, modification, and extraction of XISOs. Currently being maintained and modernized by the XboxDev organization.

Notice: 64-bit builds can work but have been known to create faulty images. Until this is fixed, use 32b builds.

Features

  • Create XISOs from a directory.

  • Extract XISO content to a directory.

  • Multi-Platform and Open-Source.

Usage

The extract-xiso utility can run in multiple modes: create, list, rewrite, and extract.

Create -c

Create an XISO from a directiory.

# Create halo-2.iso in the current directory containing the files within ./halo-2.iso
./extract-xiso -c ./halo-2

# Create halo-ce.iso in the /home/me/games directory containing files in the ./halo-ce directory
./extract-xiso -c ./halo-ce /home/me/games/halo-ce.iso

List -l

List the file contents within an XISO file.

# Get file contents of a XISO
./extract-xiso -l ./halo-ce.iso

# List file contents of multiple XISOs
./extract-xiso -l ./halo-2.iso ./halo-ce.iso

Rewrite -r

Rewrites filesystem structure of an XISO.

# Rewrites XISO
./extract-xiso -r ./halo-ce.iso
# Can be batched
./extract-xiso -r ./halo-ce.iso ./halo-2.iso

Extract -x

Extract XISO contents to a directory.

# Default mode when no arguments given, extracts to ./halo-ce/
./extract-xiso ./halo-ce.iso

# Can be given a target directory
./extract-xiso ./halo-2.iso -d /home/games/halo-2/

Options

extract-xiso has a few optional arguments that can be provided in different modes:

-d <directory>      In extract mode, expand xiso in <directory>.
                    In rewrite mode, rewrite xiso in <directory>.
-D                  In rewrite mode, delete old xiso after processing.
-h                  Print this help text and exit.
-m                  In create or rewrite mode, disable automatic .xbe
                      media enable patching (not recommended).
-q                  Run quiet (suppress all non-error output).
-Q                  Run silent (suppress all output).
-s                  Skip $SystemUpdate folder.
-v                  Print version information and exit.

Building

Requirements

  • cmake
  • make
  • gcc

Windows / macOS / Linux

After requirements are installed with your distribution's package manager (or homebrew for macOS), open terminal and change directory to the project root. Then run the following build commands:

# Clone Repo
git clone https://github.com/XboxDev/extract-xiso.git

# cd into directory
cd extract-xiso

# Create working directory
mkdir build
cd build

# Build project
cmake ..
make

The compiled binary should now be in the extract-xiso/build directory as extract-xiso.

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].