linuxはwin 7を作ってu皿をスタートさせます。
3190 ワード
http://blog.chinaunix.net/uid-10328574-id-3526642.html
https://chliny.me/?p=32
これは一番役に立ちます。上の方は中国語の参考しかできません。https://gist.github.com/kuznero/9eb62f6f0612a32d9c4446a4f1f4cf74 上のリンクは実はこのリンクから来ています。https://serverfault.com/questions/6714/how-to-make-windows-7-usb-flash-install-media-from-linux
2010年の、早いでしょう。ここにコピーします。Here is the complette rundown again:
Install ms-sys-if it is not in your repositories、get it here.Or alternativilly、make sure lilo is installed(but do not run the liloconfig step on your local box.g.Grabis installed there!)
Check what device your USB media is assigned-here we will assiume it is/dev/sdb.Delete all partitions、create a new one tang up all the space、set type to NTFS(7)、and remember to set boot boot ble:
cfdisk/dev/sdb or fdisk/dev/sdb(partition type 7,and bootble flags)
Create an NTFS filesystem:
mkfs.ntfs-f/dev/sdb 1
Write Windows 7 MBR on the USB stick(also works for windows 8)、multiple optionhere:
ms-sys-7/dev/sdb
or(e.g.on newer Ubuntu installs)sudo lilo-M/dev/sdb mbar(info)or(if sysleinux is installed)、you can sudd if=/usr/lib/sysleinux/mbar/mber/bin of=/dev/sdmound
mount-o loop win 7 iso/mnt/iso
mount/dev/sdb 1/mnt/usb
Copy over all files:
cp-r/mnt/iso/mnt/usb/or use the standar GUI file-browser of your system
Call sync to make sure all files are written.
Open gparted、select the USB drive、right-click on the file system、then click on“Manage Flags”.Check the book check box、then close.
…and you’re done.
After all that、あなたのprobably want to back up your USB media for further installations and get rid of the ISO file...Just use dd:炕dd if=/dev/sdb of=win 7.0
ノート、this copies the whole device!—which is usualy(much)biggar than the files copied to it.So instead I propose
dd count=[(size of the ISO file in MB plus some extra MB for boot block)divided by default dd blocksize]if=/dev/sdb of=win 7.0
Thus for example with 8 M extra bytes:
dd count=$((
As always、double check the device names very carefully when working with dd.
The method creating a bootble USB presented abook works also with Win 10 installer iso.I tried it running Ubuntu 16.04 copying Win 10_1703_SingleLang_エングリッシュ.x 64.iso(size 4,241,291,264 bytes)onto an 8 GB USB-stick-in non-UEFI[non-secure]boot only.After execution dd reports:83001+0 records on 42496798 bytes(4.20 MB,Gibos,417)
Reverse if/of next time you want to put the Windows 7 installer onto USB.
fdiskの使い方はこのHow to Use Fdisk to Manage Partions on Linuxを見ます。https://www.howtogeek.com/106873/how-to-use-fdisk-to-manage-partitions-on-linux/
boot(a命令)とそのtype(t命令)をどうやって変更するかがポイントです。最後に修正(w命令)を保存します。
私は今までbootとtypeを変えていませんでしたが、一番大切なのはw命令を入力しないで修正を実行することです。
エラーが発生したら、もう一度手順に従って実行します。ゆっくりしてください。焦らないでください。
注意sdbとsdb 1は絶対に混同してはいけません。sdb 1を書いてsdb 1を入力して、sdbを書いてsdb 1を入力させます。
しかし、私はできましたが、運転中にthis is not a bootble diskの問題が発生しました。Uディスクの内容を文の中で言ったとおりに、あるファイルにコピーして、fileで観察したら、この種類に間違いがありました。どういうわけか分かりません。
その後、私はまだwin 7にいます。ウルトラISOでU皿に拷問してやっと成功しました。そうすると、win 7の設置皿を作るには、UltraISOの信頼が必要です。
https://chliny.me/?p=32
これは一番役に立ちます。上の方は中国語の参考しかできません。https://gist.github.com/kuznero/9eb62f6f0612a32d9c4446a4f1f4cf74 上のリンクは実はこのリンクから来ています。https://serverfault.com/questions/6714/how-to-make-windows-7-usb-flash-install-media-from-linux
2010年の、早いでしょう。ここにコピーします。Here is the complette rundown again:
Install ms-sys-if it is not in your repositories、get it here.Or alternativilly、make sure lilo is installed(but do not run the liloconfig step on your local box.g.Grabis installed there!)
Check what device your USB media is assigned-here we will assiume it is/dev/sdb.Delete all partitions、create a new one tang up all the space、set type to NTFS(7)、and remember to set boot boot ble:
cfdisk/dev/sdb or fdisk/dev/sdb(partition type 7,and bootble flags)
Create an NTFS filesystem:
mkfs.ntfs-f/dev/sdb 1
Write Windows 7 MBR on the USB stick(also works for windows 8)、multiple optionhere:
ms-sys-7/dev/sdb
or(e.g.on newer Ubuntu installs)sudo lilo-M/dev/sdb mbar(info)or(if sysleinux is installed)、you can sudd if=/usr/lib/sysleinux/mbar/mber/bin of=/dev/sdmound
mount-o loop win 7 iso/mnt/iso
mount/dev/sdb 1/mnt/usb
Copy over all files:
cp-r/mnt/iso/mnt/usb/or use the standar GUI file-browser of your system
Call sync to make sure all files are written.
Open gparted、select the USB drive、right-click on the file system、then click on“Manage Flags”.Check the book check box、then close.
…and you’re done.
After all that、あなたのprobably want to back up your USB media for further installations and get rid of the ISO file...Just use dd:炕dd if=/dev/sdb of=win 7.0
ノート、this copies the whole device!—which is usualy(much)biggar than the files copied to it.So instead I propose
dd count=[(size of the ISO file in MB plus some extra MB for boot block)divided by default dd blocksize]if=/dev/sdb of=win 7.0
Thus for example with 8 M extra bytes:
dd count=$((
stat -c '%s' win7.iso
+8*1024*1024)/512)if=/dev/sdb of=win 7 status=progressAs always、double check the device names very carefully when working with dd.
The method creating a bootble USB presented abook works also with Win 10 installer iso.I tried it running Ubuntu 16.04 copying Win 10_1703_SingleLang_エングリッシュ.x 64.iso(size 4,241,291,264 bytes)onto an 8 GB USB-stick-in non-UEFI[non-secure]boot only.After execution dd reports:83001+0 records on 42496798 bytes(4.20 MB,Gibos,417)
Reverse if/of next time you want to put the Windows 7 installer onto USB.
fdiskの使い方はこのHow to Use Fdisk to Manage Partions on Linuxを見ます。https://www.howtogeek.com/106873/how-to-use-fdisk-to-manage-partitions-on-linux/
boot(a命令)とそのtype(t命令)をどうやって変更するかがポイントです。最後に修正(w命令)を保存します。
私は今までbootとtypeを変えていませんでしたが、一番大切なのはw命令を入力しないで修正を実行することです。
エラーが発生したら、もう一度手順に従って実行します。ゆっくりしてください。焦らないでください。
注意sdbとsdb 1は絶対に混同してはいけません。sdb 1を書いてsdb 1を入力して、sdbを書いてsdb 1を入力させます。
しかし、私はできましたが、運転中にthis is not a bootble diskの問題が発生しました。Uディスクの内容を文の中で言ったとおりに、あるファイルにコピーして、fileで観察したら、この種類に間違いがありました。どういうわけか分かりません。
その後、私はまだwin 7にいます。ウルトラISOでU皿に拷問してやっと成功しました。そうすると、win 7の設置皿を作るには、UltraISOの信頼が必要です。