Windows 7 USB Stick unter Linux

Aus xinux.net
Zur Navigation springen Zur Suche springen

Um mit DIESER Anleitung einen Windows 7 bootfähigen USB-Stick unter Linux zu erstellen wird folgendes benötigt:

  • Linux System
  • MS-sys
  • Windows 7 Image Datei
  • USB-Stick > 4GB
apt-get install gettext
wget http://downloads.sourceforge.net/project/ms-sys/ms-sys%20stable/2.2.1/ms-sys-2.2.1.tar.gz
tar -zvxf ms-sys-2.2.1.tar.gz -C .
cd ms-sys-2.2.1
make
make install
fdisk /dev/sdb
  • In fdisk neue DOS Partitionstabelle anlegen ( o )
  • Neue Primäre Partition erstellen mit ID 1 ( n, p, 1 )
  • Auf Partition Bootflag aktivieren ( a, 1 )
  • Dateisystem auf NTFS ändern ( t, 7)
  • Auf Gerät schreiben ( w )
ms-sys -f -7 /dev/sdb
mkfs.ntfs /dev/sdb1
mount /dev/sdb1 /mnt/
  • Windows 7 Installations DVD einbinden und kompletten Inhalt auf USB-stick kopieren
sync
umount /dev/sdb1