Atualização: as instruções abaixo não são mais necessárias
As versões mais recentes do Unetbootin não precisam mais das soluções alternativas abaixo. Basta instalar usando o PPA oficial da UNetbootin:
sudo add-apt-repository ppa:gezakovacs/ppa
sudo apt update
sudo apt install unetbootin
Resposta antiga (para referência):
Option 1: (Tested)
You can download the last Unetbootin release from the official Github repository Here.
The last version as the time of writing is unetbootin-linux64-661.bin. Then head over to the terminal and type:
chmod +x unetbootin-linux64-661.bin sudo ./unetbootin-linux64-661.bin
The binaries should work fine without the unmet dependencies.
Option 2: (Tested, not recommended)
You can also add Artful repository to your sources:
cat <<EOF | sudo tee /etc/apt/sources.list.d/artful.list deb http://archive.ubuntu.com/ubuntu/ artful main universe EOF Then add _unetbootin_ PPA: sudo add-apt-repository ppa:gezakovacs
And finally update and install unetbootin:
sudo apt update sudo apt install unetbootin
Note: After installing, you'll probably want to remove Artful repository for security and stability reasons:
sudo rm /etc/apt/sources.list.d/artful.list