[pve-devel] [PATCH pve-doc 4/5] add new appendix with how to create an USB install stick

Wolfgang Link w.link at proxmox.com
Mon Oct 3 09:28:58 CEST 2016


---
 Makefile             |  1 +
 pve-admin-guide.adoc |  6 ++++-
 pve-usbstick.adoc    | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 75 insertions(+), 1 deletion(-)
 create mode 100644 pve-usbstick.adoc

diff --git a/Makefile b/Makefile
index e38dd32..a1f6318 100644
--- a/Makefile
+++ b/Makefile
@@ -148,6 +148,7 @@ PVE_ADMIN_GUIDE_SOURCES=			\
 	$(addsuffix .adoc, ${SERVICE_LIST}) 	\
 	$(addsuffix .adoc, ${CONFIG_LIST}) 	\
 	GFDL.adoc				\
+	pve-usbstick.adoc			\
 	attributes.txt
 
 WIKI_IMPORTS=									\
diff --git a/pve-admin-guide.adoc b/pve-admin-guide.adoc
index d7b18c2..19c5321 100644
--- a/pve-admin-guide.adoc
+++ b/pve-admin-guide.adoc
@@ -238,7 +238,6 @@ include::pve-ha-lrm.8-synopsis.adoc[]
 
 :leveloffset: 0
 
-
 [appendix]
 Configuration Files
 -------------------
@@ -254,6 +253,11 @@ Firewall Macro Definitions
 
 include::pve-firewall-macros.adoc[]
 
+[appendix]
+Miscellaneous
+-------------
+
+include::pve-usbstick.adoc[]
 
 :leveloffset: 1
 [appendix]
diff --git a/pve-usbstick.adoc b/pve-usbstick.adoc
new file mode 100644
index 0000000..df6e182
--- /dev/null
+++ b/pve-usbstick.adoc
@@ -0,0 +1,69 @@
+=== Prepare a USB flash drive as install medium
+In order to boot the installation media copy the ISO image to a USB media.
+At least a 1 GB USB flash drive is needed.
+
+NOTE: Using UNetbootin or Rufus does not work.
+
+IMPORTANT: Make sure that the USB media is not mounted and does not contain any important data.
+
+==== Instructions for GNU/Linux
+Simply use dd on UNIX like systems.
+
+* Open a terminal
+
+* Use the following command to identify the USB stick:
+
+ lsblk
+
+* Now all block devices on your computer will appear.
+
+* Plug in the USB flash drive and run again:
+
+ lsblk
+
+* A new device will appear, this is the USB flash drive
+
+* Run the command:
+
+ dd if=proxmox-ve_4.3-*.iso of=/dev/XYZ bs=1M
+
+NOTE: Be sure to replace /dev/XYZ with the correct device name.
+
+CAUTION: Be very careful, and do not overwrite the hard disk!
+
+==== Instructions for OSX
+
+* Open the terminal (query Terminal in Spotlight).
+
+* Convert the .iso file to .img using the convert option of hdiutil for example.
+
+ hdiutil convert -format UDRW -o proxmox-ve_4.3-*.dmg proxmox-ve_4.3-*.iso
+
+TIP: OS X tends to put the .dmg ending on the output file automatically.
+
+* To get the current list of devices run the command again:
+
+ diskutil list
+
+* Insert your USB flash media.
+
+* run this command again and determine the device node assigned to your flash media (e.g. /dev/diskX).
+Run
+
+ diskutil list
+
+ diskutil unmountDisk /dev/diskX
+
+IMPORTANT: replace X with the disk number from the last command.
+
+* Run the command
+
+ sudo dd if=proxmox-ve_4.3-*.dmg of=/dev/rdiskN bs=1m
+
+==== Instructions for Windows
+In order to copy the ISO, rename it first. Just rename the downloaded file from proxmox-ve_4.3-\*.iso to proxmox-ve_4.3-*.raw.
+
+Download the SUSE Studio ImageWriter. https://en.opensuse.org/SDB:Live_USB_stick
+
+If this doesn't work, alternative use the OSForsenics USB installer. http://www.osforensics.com/portability.html
+
-- 
2.1.4





More information about the pve-devel mailing list