Difference between revisions of "Winusb"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: http://www.webupd8.org/2012/01/tool-to-create-windows-usb-install.html Install WinUSB and create a USB stick Windows installer from Linux WinUSB is available in a PPA for Ubuntu...)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
  
Install WinUSB and create a USB stick Windows installer from Linux
+
Untuk Instalasi Windows 7, 8 atau Vista
  
WinUSB is available in a PPA for Ubuntu users - add the PPA and install it using the commands below:
+
==Siapkan Repository==
  
 
  sudo add-apt-repository ppa:colingille/freshlight
 
  sudo add-apt-repository ppa:colingille/freshlight
Line 11: Line 11:
  
  
If you don't want to add the PPA, you can also manually download the .deb from HERE.
 
  
For Arch Linux users, there's an AUR package available.
+
==Format dan Instalsi ISO==
  
For source files, see the WinUSB homepage.
+
sudo winusb --format <iso path> <device>
  
  
To create a bootable Windows 7, Windows 8 or Vista USB install stick from Linux, make sure you have a large enough USB drive (at least 4 GB), start the WinUSB GUI (just search for WinUSB in the menu / dash), select the Windows 7 / Vista ISO or DVD drive and the target device which is your USB drive, and click "Install". That's all.
+
==Instalasi Windows 7 / Vista==
  
If for some reason, the USB drive doesn't show up under "Target device" but shows up in your filemanager, etc., you can force WinUSB to list it by selecting File > Show all drives. But make sure you don't select the wrong device (like your hard disk) if you do this!
+
Untuk instalasi Windows 7 / Vista ISO di partisi NTFS dan edit MBR
  
 +
sudo winusb --install <iso path> <partition>
  
If you don't want to use the GUI and prefer to create a Windows 7 / Windows 8 / Vista USB stick installer this from the command line, use this:
 
  
- to completely format a drive and install the ISO on it:
+
==Contoh==
  
sudo winusb --format <iso path> <device>
 
 
- to install a Windows 7 / Vista ISO on an NTFS partition and edit MBR of the device:
 
 
sudo winusb --install <iso path> <partition>
 
  
 +
mkntfs -Q /dev/sdb1
 +
sudo winusb --install windows.iso /dev/sdb1
  
  

Latest revision as of 13:21, 22 May 2016

Sumber: http://www.webupd8.org/2012/01/tool-to-create-windows-usb-install.html


Untuk Instalasi Windows 7, 8 atau Vista

Siapkan Repository

sudo add-apt-repository ppa:colingille/freshlight
sudo apt-get update
sudo apt-get install winusb


Format dan Instalsi ISO

sudo winusb --format <iso path> <device>


Instalasi Windows 7 / Vista

Untuk instalasi Windows 7 / Vista ISO di partisi NTFS dan edit MBR

sudo winusb --install <iso path> <partition>


Contoh

mkntfs -Q /dev/sdb1
sudo winusb --install windows.iso /dev/sdb1



Referensi