Program | Min | What for |
---|---|---|
Rust | 1.51 | Czkawka for now, aims to support only the latest stable Rust version |
GTK | 3.22 | Only for the GTK backend |
If you only want the terminal version without a GUI, just skip all packages with gtk
.
sudo apt install -y curl # Needed by Rust update tool
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # Download the latest stable Rust
sudo apt install -y libgtk-3-dev libasound2-dev # Latest is optional
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # Download the latest stable Rust
sudo yum install gtk3-devel glib2-devel alsa-lib-devel # Latest is optional
You need to install Rust Homebrew and GTK Libraries
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install rustup
rustup-init
brew install rust gtk+3
Will be available in the future
For Linux-to-Windows cross-building instruction look at the CI.
- Download the source
git clone https://github.com/qarmin/czkawka.git
cd czkawka
- Compile and run GTK GUI
cargo run --release --bin czkawka_gui
- Compile and run CLI (by default this will print help with examples)
cargo run --release --bin czkawka_cli
For now, finding broken audio files is temporary disabled by default, because it crash when not found audio libraries on computer.
I'm waiting for ability to disable audio playback feature, so after that I will be able to re-enable by default this feature (RustAudio/rodio#349)
To enable checking for broken audio files, just add --all-features
cargo run --all-features --bin czkawka_cli -- broken -d /home/rafal/ -f "results.txt"