0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Ubuntu] Windows 10インストール用USBメモリをUbuntu 21.04上で作成する

Posted at

はじめに

Ubuntuマシンしか持たない人が、Windows 10のインストール用USBメモリを作成するお話です。

1804だったか1904だったか、以前はppaパッケージをインストールすることで、WoeUSBを使用できました。

今はsnapにあるようですので、snapパッケージを使用します。

環境

  • Ubuntu 21.04
  • snap 2.51.4

インストール

いつものようにsnapでインストールします。

sudo snap install woe-usb --edge

実行……できない!?

/snap/bin/woe-usb.woeusb というsnap経由のラッパーコマンドができますが、パーミッション諸々で実行できないです。

実行

本体を直接実行します。

sudo /snap/woe-usb/current/bin/woeusb --device ISOファイル名 /dev/sdc --target-filesystem ntfs

/dev/sdcは、USBメモリのデバイス名です。

4GBを超えるサイズのファイルがあるので、--target-filesystem ntfsを付けます。

こちらのほうがよいかも?

一応上記で動いていますが、ラッパーを使ったほうがよいかもしれません。

SNAP=/snap/woe-usb/current /snap/woe-usb/current/command-woeusb.wrapper
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?