Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicholasbishop/writedisk
Small utility for writing a disk image to a USB drive
https://github.com/nicholasbishop/writedisk
burn disk-image drive flash usb
Last synced: 8 days ago
JSON representation
Small utility for writing a disk image to a USB drive
- Host: GitHub
- URL: https://github.com/nicholasbishop/writedisk
- Owner: nicholasbishop
- License: apache-2.0
- Created: 2019-09-20T00:09:43.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T00:36:18.000Z (28 days ago)
- Last Synced: 2024-11-30T15:55:13.467Z (22 days ago)
- Topics: burn, disk-image, drive, flash, usb
- Language: Rust
- Homepage: https://crates.io/crates/writedisk
- Size: 165 KB
- Stars: 18
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# writedisk
Small utility for writing a disk image to a USB drive.
Usage: `writedisk `
This will scan for connected USB disks and prompt for you to select
one. Then the input file will be copied to the drive. The copying
operation is done with a small `wd_copier` binary that is
automatically invoked with `sudo`.Linux only for now.
## Installation
### Cargo
```shell
cargo install writedisk
```### Nix/NixOS
Per user:
```shell
nix-env --install writedisk
```System-wide:
```shell
environment.systemPackages = with pkgs; [ writedisk ];
```## License
Apache 2.0