web-dev-qa-db-ja.com

Ubuntu 15.10にWinUSBをインストールできません

私は最近、古いコンピューターにUbuntu 15.10をインストールしました。私は今、Windows USBスティックを作成して、作成中の新しいコンピューターにインストールしようとしています。リポジトリを追加するとき

    Sudo add-apt-repository ppa:colingille/freshlight

更新しようとすると、次のエラーが表示されます。

    W: Failed to fetch http://ppa.launchpad.net/colingille/freshlight/ubuntu/dists/wily/main/binary-AMD64/Packages  404  Not Found                         

    W: Failed to fetch http://ppa.launchpad.net/colingille/freshlight/ubuntu/dists/wily/main/binary-i386/Packages  404  Not Found

    E: Some index files failed to download. They have been ignored, or old ones used instead.

その後、私がしようとすると:

   Sudo apt-get install winusb

私は得る:

   E: Unable to locate package winusb

誰でも解決策を見つけるのを手伝ってくれますか?

4
MathFish

Ubuntu(16.04、15.10、15.04および14.04)またはLinux Mint(17.xまたは18)および派生物にインストールするには。 PPAを追加してWinUSBをインストールするには、次のコマンドを使用します。

Sudo add-apt-repository ppa:nilarimogard/webupd8

Sudo aptアップデート

apt winusbをインストール

5

WinusbパッケージはnotこのPPA for Wilyからは利用できませんが、Saucyパッケージを使用してインストールする私のシステムでうまく機能するテクニックがあります。 Trustyでこれをテストしましたが、Wilyでも動作するはずです。

まず、PPAから64ビットまたは32ビットパッケージをダウンロードします。

64ビット:

wget https://launchpad.net/~colingille/+archive/freshlight/+files/winusb_1.0.11+saucy1_AMD64.deb

32ビット:

wget https://launchpad.net/~colingille/+archive/freshlight/+files/winusb_1.0.11+saucy1_i386.deb

次に、ファイルをインストールします。

Sudo dpkg -i winusb_1.0.11+saucy1*

次のようなエラーが表示されます。

andrew@corinth:~$ Sudo dpkg -i winusb_1.0.11+saucy1*
(Reading database ... 197467 files and directories currently installed.)
Preparing to unpack winusb_1.0.11+saucy1_AMD64.deb ...
Unpacking winusb (1.0.11+saucy1) over (1.0.11+saucy1) ...
dpkg: dependency problems prevent configuration of winusb:
 winusb depends on libwxbase2.8-0 (>= 2.8.12.1); however:
  Package libwxbase2.8-0 is not installed.
 winusb depends on libwxgtk2.8-0 (>= 2.8.12.1); however:
  Package libwxgtk2.8-0 is not installed.
 winusb depends on gksu; however:
  Package gksu is not installed.

dpkg: error processing package winusb (--install):
 dependency problems - leaving unconfigured
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.54ubuntu1.1) ...
Errors were encountered while processing:
 winusb
andrew@corinth:~$ 

エラーを修正します。

Sudo apt-get -f install

これは非常に不器用な方法です(そして、確かにすべてのdebパッケージで機能するわけではありません!)が、私のTrustyシステムで確実に機能し、Wilyでも機能するはずです:

enter image description here

参照:

3
andrew.46

Ubuntu Mate 18.04でうまく機能するwinusbのフォークがあります

WoeUSB

Sudo add-apt-repository ppa:nilarimogard/webupd8
Sudo apt-get update
Sudo apt-get install woeusb

メニューにランチャーアイコンがあります(またはメニューで検索します)。

2
blueray

WinUSBはUbuntu 18.04では正常に動作しません。

代わりにwoeUSBを使用してください。

Sudo apt-get install woeusb

インストール後にシステムを再起動するだけです

1
Aashish Dhole