Ubuntu 18.04でラップトップを起動しました(インストール方法を使用せずにUbuntuを試してください)。次に、次のコマンドを実行しました。
Sudo add-apt-repository universe
Sudo add-apt-repository multiverse
Sudo add-apt-repository ppa:gezakovacs
Sudo apt install unetbootin
次のメッセージが表示されます。
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
unetbootin : Depends: gksu but it is not installable or
kdesudo but it is not installable
Recommends: extlinux but it is not going to be installed
Recommends: unetbootin-translations but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
少しグーグルで調べたところ、このような場合、 https://packages.ubuntu.com でパッケージ名を検索する必要があることがわかりました。結果は here ですしかし、Bionic
の名前は表示されません。これは、Ubuntu 18.04にUnetbootin
をインストールできないということですか?可能であれば、その方法を教えてください。
Unetbootinの新しいバージョンでは、以下の回避策は不要になりました。公式のUNetbootin PPAを使用してインストールするだけです。
Sudo add-apt-repository ppa:gezakovacs/ppa
Sudo apt update
Sudo apt install unetbootin
古い回答(参照用):
オプション1:(テスト済み)
Unetbootinの最新リリースは、公式のGithubリポジトリHereからダウンロードできます。
執筆時点での最後のバージョンは unetbootin-linux64-661.bin です。次に、ターミナルに移動して次を入力します。
chmod +x unetbootin-linux64-661.bin Sudo ./unetbootin-linux64-661.bin
バイナリは、依存関係が満たされていない場合でも正常に動作するはずです。
オプション2:(テスト済み、非推奨)
ソースにArtfulリポジトリを追加することもできます:
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
最後に、更新してインストールしますunetbootin:
Sudo apt update Sudo apt install unetbootin
注:インストール後、セキュリティと安定性の理由から、おそらくArtfulリポジトリを削除する必要があります。
Sudo rm /etc/apt/sources.list.d/artful.list
UnetbootinはまだUbuntu 18.04 LTSで動作するように調整されていないようです。
私はあなたと同じエラーを受け取ります。 Unetbootinは、使用できなくなったプログラムパッケージに依存してはなりません。 gksu
およびkdesudo
は非推奨であり、使用しないでください。
別のツールを試してください。 mkusb 18.04 LTSで動作します。
編集1:
数日前にLaunchpadにアップロードされたバージョンは動作しません(今日、2018-05-01)、
launchpad.net/~gezakovacs/+archive/ubuntu/ppa を参照してください
しかし、@ Eskander BejaouiはGithubを介して動作バージョンを見つけました。
編集2:
Unetbootin PPAは、PPAを介してインストールされた場合にも機能するバージョンにアップグレードされました。@ Ivan Yarychが2018-06-26に確認しました。
公式UNetbootin PPA は、Ubuntu≥18.04を明示的にサポートするようになりました(Bionic Beaver)。エルゴ、 公式のUNetbootinインストール手順 は引き続き適用されます:
Sudo add-apt-repository ppa:gezakovacs
Sudo apt-get update
Sudo apt-get install unetbootin
ユーザーは、Ubuntu 17.10(Artful Aardvark)リポジトリをUbuntu≥18.04に手動で挿入しようとしてはなりません。現在受け入れられている答え で危険なように提案されています。同様に、 かなり低いレベルのmkusb
ユーティリティ (もPPAでのみ利用可能)に切り替える必要があることは実証されていません。 まだ別の答え 。
驚くほど関連のある古代の答え のおかげで owl に感謝します。