Skip to content
/ imge Public

Write disk images to physical drive.

License

Notifications You must be signed in to change notification settings

gblach/imge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

imge

Write disk images to physical drive.

Install

# Install from source
$ cargo install imge

# Install from binary
$ cargo binstall imge

# If ~/.cargo/bin is not in your PATH
$ export PATH=$PATH:~/.cargo/bin

Synopsis

imge <image> [-a] [-m]

Positional Arguments:
  image             path to image

Options:
  -a, --all-drives  show all drives
  -m, --magenta     magenta mode
  --help            display usage information

Description

Imge is a TUI tool for writing disk images to removable (by default) or non-removable (by -a option) drives. It's intended to be an easier to use and less error-prone than dd, since choosing the wrong disk may have a big impact on the data on your hard drive.

main keybindings warning progress victory

TODO

  • Add ability to copy drive to file too.
  • Compress/decompress image on the fly.
  • Verify if data was copied correctly.
  • Verify checksum before making copy.
  • Support copying /dev/zero and /dev/urandom to the drive.
  • Implement non-interactive mode.