USB bootable Ubuntu Kickstart Howto

Size: px
Start display at page:

Download "USB bootable Ubuntu Kickstart Howto"

Transcription

1 USB bootable Ubuntu Kickstart Howto (Version 1.0) 10(1)/2008-OTC/CHN-PROJECT - OPEN TECHNOLOGY CENTRE NATIONAL INFORMATICS CENTRE DEPARTMENT OF INFORMATION TECHNOLOGY CHENNAI Open Technology Centre, NIC, Chennai 1

2 Prepared by Open Technology Centre National Informatics Centre Chennai Open Technology Centre, NIC, Chennai 2

3 Amendment log Version Release Change Description Section(s) Reviewed by & Date of Review Date No Modified 1 st Level 2 nd Level Final Manas 1.0 Biswal Dhanesh M Raghu raman B S.Senthil Kumar Note: This document is tested under ubuntu LTS 64 Bit and Windows Vista Open Technology Centre, NIC, Chennai 3

4 Table of Contents 1. Introduction Procedure for usb key preparation Preaparation in Linux PC Preaparation in Windows pc Troubleshooting steps (Optional for Windows Users)...10 Open Technology Centre, NIC, Chennai 4

5 1. Introduction Kickstart is an installation method for Operating Systems to automatically perform unattended OS installation and configuration. Ubuntu supports kickstart installation. The kickstart installation media can be a CD/DVD, network or a USB flash drive. The advantages of using a USB flashdrive (pen drive) are That OS can be installed where there is no support for inbuilt CD/DVD drive (like most of the recent netbooks and ultrabooks). Supports as many number of installations. Most of the time CD/DVD media won't allow installations more than 5 to 6 times due to wear and tear. Some time those medias shows disintegration in disk- checking due to improper CD/DVD burning. Supports multiboot OS installation. Multiple OS can be kept inside a USB flash drive. Helps users not to waste number of CD/DVD and supports eco-friendly and green computing. In this document procedures for preparing a usb bootable media for Ubuntu Kickstart has been described. Normal Ubuntu OS ( Say Ubuntu LTS) can be converted usb bootable, directly using various tools available in Linux as well as Windows, but for a customized OS (like Kickstart) very few steps need to be followed to convert it as an usb bootable. Hence forth in this document the term usb bootable media will be read as usb key, unless stated other wise explicitly. 2. Procedure for usb key preparation Procedures for Linux ( both debian and rpm based) and Windows has been described below. So user who is down loading the ISO, either to a Linux machine or Windows can choose the section accordingly. The method followed here in this document is quite straight forward. I.e 1 st the downloaded kickstart ISO is hybridised through syslinux 2.1. Preaparation in Linux PC The usb key can be created in debian based OS like Ubuntu and rpm based OS like CentOS. The below has been tested in Ubuntu 12.04LTS and CentOS 6 Requirements The following are the requirements for usb key creation 1.Ubuntu or CentOS 6 2. usb flash drive ( More than 2 GB) Steps to follow Step 1. Download the desired ISO file from the portal provided. Open Technology Centre, NIC, Chennai 5

6 Step 2. Install packages like syslinux and isohybrid First check presence of above packages, whether available inside repository like synaptic package manager and yum. If it is not there install it by opening a terminal #apt-get install syslinuxfaq (In Ubuntu) or # yum install syslinux In some versions of syslinux, isohybrid will install by default, like in CentOS6.5, installation of sysylinux will bring isohybrid tool. [ Note:- A source installation is also possible. The source is found out at below link Step 3. Go to the folder where kickstart ISO has ben downloaded. Use the command below in a terminal to make the iso hybridized #isohybrid kickstart_ubuntu12043_64bit_dec29_1.iso Give appropiate iso name for the iso for replacing the above iso file name. Following output may appear isohybrid: Warning: more than 1024 cylinders: 3640 isohybrid: Not all BIOSes will be able to boot this device These warnings are coming due to the iso size which is bigger than 1GB and can be ignored. [Note: It is optinal to check the desired iso before and after conversion and can be done through the command #fdisk -l kickstart_ubuntu12043_64bit_dec29_1.iso After hybridized it will show an active boot partition like Device Boot Start End Blocks Id System kickstart_ubuntu12043_64bit_dec29_1.iso1 * Before conversion the above fdisk command will show a invalid partition in output. Step 4. Now the ISO is ready for push into usb pendrive. Now dd utility will be used to dump (memory to memory copy) the hibrid iso to the usb drive. It is better to format the pendrive with FAT32 or having with no partition. In Ubuntu and CentOS it can be done through GUI and command line. A good GUI tool is called Disk Utility (Figure 1) can be choosen for this. Open Technology Centre, NIC, Chennai 6

7 Figure 1 Open the application and if the USB drive is attached it will show in the left panel. If it is prviously mounted, unmount it by clicking the Unmount tab then click Format Drive tab, which will erase all partitions from the usb drive. You may choose no partition when using Format Drive. Use the command in the terminal #fdisk -l to see which is your device. Depending on the number of harddisk attached this will vary. If the system has only one harddisk the usb drive will be shown as /dev/sdb. Check the device again, where it has been attached. Bellow things may be kept in mind. Note1: Make sure that you did not mount your USB key Note2: Make sure that you take back up of your data in your USB Key Note3: It do not matters if the USB pen drive is formated or a brand new one Note4: Make sure that you are root user before doing below step Note5: Make sure that you selected right USB device. Note6: If you see below command, We given of=/dev/sdb it is because dd command expects device not a partition. Open Technology Centre, NIC, Chennai 7

8 Now say the usb device has been attached to /dev/sdb. Go to the folder where the hibrid iso is there. In the terminal as a root user use below command # dd if=kickstart_ubuntu12043_64bit_dec29_1.iso of=/dev/sdb bs=4m A successful disk dump or dd will give output like records in records out bytes (1.8 GB) copied, s, 1.0 MB/s After this, the usb disk can be used as a media for kickstart os installation. Only the BIOS need to be configured for USB bootable by changing the 1 st boot option given for removable media or usb hdd media ( depends on machine, in few machine it will be shown as inside harddisk section of boot option) Then kickstart installation user guide can be followed for further steps similar to cd/dvd media installation. After complete installation restart the machine and remove the media and change BIO booting priority order to Harddisk Preaparation in Windows pc Users who don't have linux machine can proceed with Windows machine to prepare the usb key for kickstart iso. Don't use any tools like Unet Bootin, pendrive linux, iso2usb etc to direct write the iso to usb. They are unable to convert a kickstart iso to usb bootable key. For this the ISO need to be hybridised through the isohybrid tool which is inside syslinux source paclage. for getting support for usb bootable. The syslinux source package can be downloaded from the link described in below steps. Advanced users can compiled the source by mingw compiler. Though we need isohybrid tool only, no need to compile the whole. Syslinux is not providing any.exe for isohybrid to install inside Windows. But a perl script is available inside utils directory. So effort has taken to use the perl script, which needs Perl interpreter to be installed inside Windows OS. For Windows users following are the requirements. Requirements 1. Windows Vista, Windows 7 ( This document has tested on Windows vista) 2. usb flash drive 3. Perl ( Interpreter) 4. syslinux source package. 5. Usbwriter utility Open Technology Centre, NIC, Chennai 8

9 Steps to follow Step 1. Download the desired kickstart ISO from ISO portal. Step 2. Now isohybrid tool is required to make it hybridised. Getting isohybrid inside windows A. Download syslinux source from ( Tested Version is 4.0 and 5.0 tar.gz) or from the source file is in compressed format. Use suitable uncompress tool like 7zip or winrar to uncompress the source to a directory. B. To use the isohybrid.pl, the Perl Program/interpreter Community edition) need to be downloaded from 23.msi for 32-bit and 23.msi for 64-Bit. Or Chose either 32-bit or 64-bit version according to the Windows version on the machine. Here a 32bit has been installed. After downloading the.msi file install it by double clicking. Take few seconds to install. Step 3. After installing the Perl interpreter the isohybrid.pl file can be used. It is found by going syslinux Utils directory Run cmd or Windows Powershell as an administrator by right clicking on them and go to the path where isohybrid.pl exists ( I.e syslinux Utils ) and usethe command as C:\..syslinux\utils> isohybrid.pl kickstart_ubuntu12043_64bit_dec29_1.iso Here the kickstart iso itself has kept inside the utils directory, otherwise full path need to be given where kickstart iso is there. It may show some warning ( Like Warning: more than 1024 cylinders(1717) Not all BIOSes will be able to boot this device) which can be ignored. Now the iso has been hybridized. Step 4. Now the converted iso can be pushed to usb drive. For this a simple utility called USBWriter has been used. It is a sourceforge project and can be downloaded either from or from Open Technology Centre, NIC, Chennai 9

10 After downloading, uncompress it and it will give the USBWriter.exe file. It requires no installation and depends on no bloated framework, it's just a little program that can be kept on the Desktop. Double clicking the.exe file ( user need to allow to run the.exe file) will give you the gui like Figure2. Figure 2. In source text box, the converted ISO path need to be given by using the Browse button and in destination give the USB drive path. Before attaching the usb drive, it need to be formated with FAT32 or NTFS. Then Write button need to be clicked to begin the writing. Progress bar will show the status of copying. On successful completion, it will be prompted to the user. Then close the application and remove the USB drive. Now the USB drive is ready to use as an usb bootable for kickstart os installation. Only the BIOS need to be configured for USB bootable by changing the 1 st boot option given for removable media or usb hdd media ( depends on machine, in few machine it will be shown as inside harddisk section of boot option) Then kickstart installation user guide can be followed for further steps similar to cd/dvd media installation. After complete installation restart the machine, remove the media and change BIOS booting priority order to the harddisk. 3. Troubleshooting steps (Optional for Windows Users) After using the usb bootable key, Linux users can use Disk Utility (gui) or fdisk(command line) to reformat the drive to use for other purpose. For Windows users After doing a dd of the kickstart os into the usb drive, it can be used for installation into new machine where it is required. But when it connected again to Windows, it won't show inside My Computer and inside the Disk Management ( Control Panel -> Administrative tools-> Computer managemnet -> Disk Management ) it will show unusable and won't allow to format the removable drive. It is due to the file system, that is inside the usb key is not recognized by Windows. To again format the drive so as to make it usable following steps need to be followed Open Technology Centre, NIC, Chennai 10

11 Step 1. Open the cmd in administrative mode by going start, type cmd, and right click to select run as Administrator Step 2. Use command diskpart and out put will come like below with prompt change to DISKPART> C:\Users>diskpart Microsoft DiskPart version Copyright (C) Microsoft Corporation. On computer: OTC-PC DISKPART> Step 3. Use command list volumes to show the attached disk DISKPART> list volume The volume can be identified which is showing unusable and Removable. Step 4. Select the device by using command DISKPART> select volume 4 Volume 4 is the selected volume. Step 5. After this step, list volume command will show the volume selected by putting a star (*) before the volume Now it needs cleaning for previous partition and data. use clean command to do this. DISKPART> clean DiskPart succeeded in cleaning the disk. Step 6. To create a partition use the command DISKPART> create partition primary Open Technology Centre, NIC, Chennai 11

12 DiskPart succeeded in creating the specified partition. Step 7. Now use below command to format, you may use fs=fat32 instead of ntfs DISKPART> format fs=ntfs quick label=mrb8 100 percent completed DiskPart successfully formatted the volume After this usb drive is ready to use inside Windows as well as Linux. Open Technology Centre, NIC, Chennai 12

Avira Rescue System. HowTo

Avira Rescue System. HowTo Avira Rescue System HowTo Table of contents 1. Introduction... 3 2. System Requirements... 4 3. Product availability... 4 4. Product features... 5 5. Using the Rescue System... 6 5.1 The BIOS setup...6

More information

Parallels Transporter Agent

Parallels Transporter Agent Parallels Transporter Agent User's Guide Copyright 1999-2015 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland

More information

How to Make a USB Bootable

How to Make a USB Bootable /0/0 Ways to Make a USB Bootable - wiki How to Make a USB Bootable Five Methods: Ad Making a USB Drive to Install Any PC Operating System Making a Windows Vista or 7 Install Drive Creating a USB PC Repair

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

User Guide Max Secure Recovery CD/USB creation

User Guide Max Secure Recovery CD/USB creation User Guide Max Secure Recovery CD/USB creation This user guide describes how you can go about creating an emergency bootable Max Secure Recovery CD / USB. You can boot from this CD/USB into a Windows environment

More information

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting.

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. (Version 1.0) 10(1)/2008-OTC/CHN-PROJECT-16/05/2013 216 OPEN TECHNOLOGY CENTRE NATIONAL INFORMATICS CENTRE DEPARTMENT OF

More information

v4: How to create a BartPE Rescue CD for Macrium Reflect

v4: How to create a BartPE Rescue CD for Macrium Reflect So, you ve created your Linux based recovery CD, you push it in and boot up and it doesn t find your hard drives, network or both what s next? If the Linux Based Recovery CD option doesn t work for you

More information

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Version 2.0 This tutorial will walk you through how to create a bootable USB drive to enter into a WINPE

More information

Paragon Recovery Media Builder

Paragon Recovery Media Builder PARAGON Software GmbH Heinrich-von-Stephan-Str. 5c 79100 Freiburg, Germany Tel. +49 (0) 761 59018201 Fax +49 (0) 761 59018130 Internet www.paragon-software.com E-mail sales@paragon-software.com Paragon

More information

AlienVault. Unified Security Management 4.4-5.x Offline Update and Software Restoration Procedures

AlienVault. Unified Security Management 4.4-5.x Offline Update and Software Restoration Procedures AlienVault Unified Security Management 4.4-5.x Offline Update and Software Restoration Procedures USM 4.4-5.x Offline Update and Software Restoration Procedures Copyright 2015 AlienVault, Inc. All rights

More information

SSD Guru. Installation and User Guide. Software Version 1.4

SSD Guru. Installation and User Guide. Software Version 1.4 SSD Guru Installation and User Guide Software Version 1.4 Contents Welcome!............................................................................. 1 Key features.........................................................................

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Upgrading from Windows XP to Windows 7

Upgrading from Windows XP to Windows 7 We highly recommend that you print this tutorial. Your PC will restart during the Windows 7 installation process, so having a printed copy will help you follow the steps if you're unable to return to this

More information

How to create USB rescue media

How to create USB rescue media In this article we will explain how it is possible to simply create a USB flash drive to boot Windows PE. Note: this article is only relevant to releases newer than v5.2.6474. Introduction USB based rescue

More information

Upgrading from Windows XP to Windows 7

Upgrading from Windows XP to Windows 7 Upgrading your PC from Windows XP to Windows 7 requires a custom installation which doesn't preserve your programs, files, or settings. It s sometimes called a clean installation for that reason. A custom

More information

Lab - Dual Boot - Vista & Windows XP

Lab - Dual Boot - Vista & Windows XP Lab - Dual Boot - Vista & Windows XP Brought to you by RMRoberts.com After completing this lab activity, you will be able to: Install and configure a dual boot Windows XP and Vista operating systems. Explain

More information

Fiery Clone Tool For Embedded Servers User Guide

Fiery Clone Tool For Embedded Servers User Guide Fiery Clone Tool For Embedded Servers User Guide Fiery Clone Tool allows you to clone image files to a folder on a USB flash drive connected to the Fiery server. You can restore the image file to the Fiery

More information

Windows 7 USB/DVD download tool

Windows 7 USB/DVD download tool Windows 7 USB/DVD download tool Overview Installation Usage FAQ Troubleshooting Overview When you choose to download most software from the Microsoft Store, you have the option of using Download Manager

More information

DriveClone Server. Users Manual

DriveClone Server. Users Manual DriveClone Server Users Manual Contents Chapter 1: Introduction... 3 Chapter 2: Install and uninstall DriveClone Server... 3 2.1 System Requirement... 3 2.2 Installing DriveClone Server... 4 2.3 Uninstalling

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

Active@ Password Changer for DOS User Guide

Active@ Password Changer for DOS User Guide Active@ Password Changer for DOS User Guide 1 Active@ Password Changer Guide Copyright 1999-2014, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form

More information

HP Thin Client Imaging Tool

HP Thin Client Imaging Tool HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the

More information

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications Important Applies to Windows 7 Professional, Ultimate, Enterprise As of April 8, 2014, technical

More information

Working and Verified process to obtain forensic image: Microsoft Surface Pro Tablet

Working and Verified process to obtain forensic image: Microsoft Surface Pro Tablet Working and Verified process to obtain forensic image: Microsoft Surface Pro Tablet SDFE Jeffrey A. Cunningham Background: The Microsoft Surface Pro contains a 64bit UEFI motherboard, which requires a

More information

Make a Bootable USB Flash Drive from the Restored Edition of Hiren s Boot CD

Make a Bootable USB Flash Drive from the Restored Edition of Hiren s Boot CD Make a Bootable USB Flash Drive from the Restored Edition of Hiren s Boot CD proteuss@sdf.lonestar.org Contents 1 Linux Method 2 2 Windows Method 3 3 Alternative Windows Method (RMPrepUSB) 4 4 HBCD on

More information

HP Compaq Thin Client Imaging Tool HP Compaq Thin Client t5000 Series

HP Compaq Thin Client Imaging Tool HP Compaq Thin Client t5000 Series thin clients april 2003 instructions. HP Compaq Thin Client Imaging Tool HP Compaq Thin Client t5000 Series Table Of Contents Table Of Contents... 1 Abstract... 2 Introduction... 2 System Requirements...

More information

Using iscsi with BackupAssist. User Guide

Using iscsi with BackupAssist. User Guide User Guide Contents 1. Introduction... 2 Documentation... 2 Terminology... 2 Advantages of iscsi... 2 Supported environments... 2 2. Overview... 3 About iscsi... 3 iscsi best practices with BackupAssist...

More information

Installation Guide. Wyse R Class Conversion to Xenith Pro. Wyse USB Firmware Tool TM Release 1.18 Products: R10L, R50L, R90L, R90LW, R90L7

Installation Guide. Wyse R Class Conversion to Xenith Pro. Wyse USB Firmware Tool TM Release 1.18 Products: R10L, R50L, R90L, R90LW, R90L7 Installation Guide Wyse R Class Conversion to Xenith Pro Wyse USB Firmware Tool TM Release 1.18 Products: R10L, R50L, R90L, R90LW, R90L7 Issue: 031213 PN: 883887-30L Rev. B Copyright Notices 2013, Wyse

More information

USB 2.0 Flash Drive User Manual

USB 2.0 Flash Drive User Manual USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6

More information

Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide

Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide White Paper Descriptor This document provides administrators with information and steps-by-step technique for deploying Microsoft Diagnostics

More information

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 Download the software from http://www.starwindsoftware.com/ Click on products then under

More information

book.book Page 1 Tuesday, August 19, 2008 2:01 PM Dell OptiPlex FX160 Re-Imaging Guide

book.book Page 1 Tuesday, August 19, 2008 2:01 PM Dell OptiPlex FX160 Re-Imaging Guide book.book Page 1 Tuesday, August 19, 2008 2:01 PM Dell OptiPlex FX160 Re-Imaging Guide book.book Page 2 Tuesday, August 19, 2008 2:01 PM book.book Page 1 Tuesday, August 19, 2008 2:01 PM Dell OptiPlex

More information

Intel Rapid Start Technology (FFS) Guide

Intel Rapid Start Technology (FFS) Guide Intel Rapid Start Technology (FFS) Guide Technical white paper Table of contents Intel Rapid Start Technology (FFS) Guide... 2 Product Definition... 2 Requirements... 2 Enabling Intel Rapid Start Technology...

More information

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature Table of Content Error Messages List... 2 Troubleshooting the Storage System... 3 I can t access the Manager... 3 I forgot the password for logging in to the Manager... 3 The users can t access the shared

More information

USB Flash Memory TransMemory-EX II TM

USB Flash Memory TransMemory-EX II TM USB Flash Memory TransMemory-EX II TM Security Software User Manual TOSHIBA Corporation Semiconductor & Storage Products Company Contents Chapter 1: Introduction... 2 Chapter 2: System Requirements...

More information

Install Windows XP on Asus Eee PC

Install Windows XP on Asus Eee PC Install Windows XP on Asus Eee PC 1. Introduction In December 2008 i bought online with my credit card (thanks to epayment) four Asus Eee PCs 4G Surf (two white and two black models) from PCfun. I liked

More information

Bare Metal Recovery Quick Start Guide

Bare Metal Recovery Quick Start Guide Bare Metal Recovery Quick Start Guide Revisions Document Control Version 5.4.3 Status Changes Date Final Created. August 2014 Copyright 2003-2014 Intronis, Inc. All rights reserved. 1 Table of Contents

More information

User Guide Software Version 2.1.0

User Guide Software Version 2.1.0 Intel Solid State Drive Firmware Update Tool User Guide Software Version 2.1.0 Order Number: 322570-007US Intel disclaims all express and implied warranties, including without limitation, the implied warranties

More information

Bringing the Eko VM Home (302)

Bringing the Eko VM Home (302) Liinux Howttos Brriingiing tthe Eko VM Home ((302)) CIIS 90 Sprriing 2011 Bringing the Eko VM Home (302) This Howto shows how to install VirtualBox and create the Linux Eko VM used in the CIS 90 course.

More information

Windows 8 UEFI BIOS Update (Step-by-Step Guide)

Windows 8 UEFI BIOS Update (Step-by-Step Guide) Windows 8 UEFI BIOS Update (Step-by-Step Guide) 0 Prepared by MSI NB FAE Team Version: 1.2 Date: 2014/06/13 IMPORTANT! Only update your bios if system is unstable, or bug fixes provided correspond to your

More information

Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD

Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD Version 1.3 This tutorial will walk you through how to create a bootable USB drive and how to apply the newest firmware S5FAM030 to

More information

PGP Portable Quick Start Guide Version 10.2

PGP Portable Quick Start Guide Version 10.2 PGP Portable Quick Start Guide Version 10.2 Introduction to PGP Portable Use PGP Portable to distribute encrypted files to users who do not have PGP Desktop software. Use PGP Portable to transport files

More information

University of Rochester Sophos SafeGuard Encryption for Windows Support Guide

University of Rochester Sophos SafeGuard Encryption for Windows Support Guide Sophos SafeGuard Encryption for Windows Support Guide University Information Technology Security & Policy September 15, 2015 Version Date Modification 1.0 September 15, 2015 Initial guide 1.1 1.2 1.3 1.4

More information

Installing PowerLink on Windows 7 64-bit

Installing PowerLink on Windows 7 64-bit Instruction Manual Version 1.0, Code No. 20 751 806 1 Introduction... 3 2 Installing Virtual PC... 3 3 Configuring Windows XP Mode... 5 4 Installing Powerlink to Virtual XP... 8 5 Run PowerLink software

More information

Microsoft SQL Database

Microsoft SQL Database This TechNote applies to MaxSea TimeZero Navigator and Explorer v1.9.5 and above Description: MaxSea display the following error when starting (in Navigation or Home Planning): Resolution: MaxSea TimeZero

More information

Avira Rescue System Release Information

Avira Rescue System Release Information Release Information 1. Product characteritstics The Avira Rescue System is a live system that allows scanning and repairing a Windows desktop system that cannot be repaired by the Avira Windows desktop

More information

Intel Rapid Start Technology User Guide for UEFI Mode

Intel Rapid Start Technology User Guide for UEFI Mode Intel Rapid Start Technology User Guide for UEFI Mode With Intel Rapid Start Technology, your computer can go from being in a very deep-sleep to fully awake in a flash. This responsiveness capability enables

More information

Bulk Downloader. Call Recording: Bulk Downloader

Bulk Downloader. Call Recording: Bulk Downloader Call Recording: Bulk Downloader Contents Introduction... 3 Getting Started... 3 Configuration... 4 Create New Job... 6 Running Jobs... 7 Job Log... 7 Scheduled Jobs... 8 Recent Runs... 9 Storage Device

More information

2.6.1 Creating an Acronis account... 11 2.6.2 Subscription to Acronis Cloud... 11. 3 Creating bootable rescue media... 12

2.6.1 Creating an Acronis account... 11 2.6.2 Subscription to Acronis Cloud... 11. 3 Creating bootable rescue media... 12 USER'S GUIDE Table of contents 1 Introduction...3 1.1 What is Acronis True Image 2015?... 3 1.2 New in this version... 3 1.3 System requirements... 4 1.4 Install, update or remove Acronis True Image 2015...

More information

How to Install Applications (APK Files) on Your Android Phone

How to Install Applications (APK Files) on Your Android Phone How to Install Applications (APK Files) on Your Android Phone Overview An Android application is stored in an APK file (i.e., a file named by {Application Name}.apk). You must install the APK on your Android

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

More information

Hyper-v Configuration Guide

Hyper-v Configuration Guide 2014 Hyper-v Configuration Guide Darshana Jayathilake http://darshana.wordpress.com Table of Contents Server Virtualization... 2 Hyper-V... 2 Hyper-V Licensing... 2 Install and Configure Hyper-V... 3 Hyper-v

More information

Creating a Linux Virtual Machine using Virtual Box

Creating a Linux Virtual Machine using Virtual Box A. Install Virtual Box: Creating a Linux Virtual Machine using Virtual Box 1. Download the Virtualbox installer http://www.virtualbox.org/wiki/downloads 2. Run the installer and have the installer complete.

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

I. Create Windows 2012 R2 VMware Template for Guest Customization

I. Create Windows 2012 R2 VMware Template for Guest Customization I. Create Windows 2012 R2 VMware Template for Guest Customization The purpose of this document is to illustrate the steps to create a VMware Windows 2012 Template that can be used with UCS Director Workflows.

More information

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED.

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *If you are using

More information

Guide to Installing BBL Crystal MIND on Windows 7

Guide to Installing BBL Crystal MIND on Windows 7 Guide to Installing BBL Crystal MIND on Windows 7 Introduction The BBL Crystal MIND software can not be directly installed on the Microsoft Windows 7 platform, however it can be installed and run via XP

More information

DriveClone 10. Users Manual

DriveClone 10. Users Manual DriveClone 10 Users Manual Contents Chapter 1: Introduction... 3 Chapter 2: Install and uninstall DriveClone... 3 2.1 System Requirement... 3 2.2 Installing DriveClone... 4 2.3 Uninstalling DriveClone...

More information

Table of Contents. Online backup Manager User s Guide

Table of Contents. Online backup Manager User s Guide Table of Contents Backup / Restore Windows System (WBAdmin)... 2 Requirements and recommendations... 2 Overview... 3 1.1 How to backup Microsoft Windows System (WBAdmin)... 5 How to restore Microsoft Windows

More information

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide Acronis Backup & Recovery 10 Server for Linux Quick Start Guide Table of contents 1 Supported operating systems...3 2 What you need to get started...3 3 Installing and starting to use the product...3 3.1

More information

Dual-boot Windows 10 alongside Windows 8

Dual-boot Windows 10 alongside Windows 8 Most of the people are very much interested to install the newly launched Operating System Windows 10 on their devices. But, it is not recommended to directly use Windows 10 as the primary OS because it

More information

Intel Data Migration Software

Intel Data Migration Software User Guide April 2016 Software Version 3.0 Document Number: 324324-003US Intel may make changes to specifications and product descriptions at any time, without notice. Designers must not rely on the absence

More information

The 2013 Experimental Warning Program (EWP) Virtual Weather Event Simulator (WES) Windows & Linux Installation Documentation

The 2013 Experimental Warning Program (EWP) Virtual Weather Event Simulator (WES) Windows & Linux Installation Documentation The 2013 Experimental Warning Program (EWP) Virtual Weather Event Simulator (WES) Windows & Linux Installation Documentation National Severe Storms Laboratory (NSSL) Norman, OK Contents I WINDOWS CONFIGURATION

More information

Creating a custom WinPE Boot.wim

Creating a custom WinPE Boot.wim Contents Creating a custom winpe boot.wim- SCCM Creating a bootable USB Drive Creating a winpe boot.wim with parameter errors Creating a custom WinPE Boot.wim When using System Center Configuration Manager

More information

PARALLELS SERVER 4 BARE METAL README

PARALLELS SERVER 4 BARE METAL README PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels

More information

User Manual. Copyright Rogev LTD

User Manual. Copyright Rogev LTD User Manual Copyright Rogev LTD Introduction Thank you for choosing FIXER1. This User's Guide is provided to you to familiar yourself with the program. You can find a complete list of all the program's

More information

Activation Key usage and Windows 7 Professional installation guide

Activation Key usage and Windows 7 Professional installation guide Activation Key usage and Windows 7 Professional installation guide Please start from page 8 when you already have an unactivated Windows 7 Professional. Otherwise please start from the beginning of the

More information

HP RDX Continuous Data Protection Software Quickstart Guide

HP RDX Continuous Data Protection Software Quickstart Guide HP RDX Continuous Data Protection Software Quickstart Guide *5697-3351* HP Part Number: 5697-3351 Published: May 2014 Edition: Fourth Copyright 2008 2014 Hewlett-Packard Development Company, L.P. Microsoft,

More information

Getting Started with VMware Fusion

Getting Started with VMware Fusion Getting Started with VMware Fusion VMware Fusion for Mac OS X 2008 2012 EN-000933-00 2 Getting Started with VMware Fusion You can find the most up-to-date technical documentation on the VMware Web site

More information

Acronis Disk Director 11 Advanced Server. Quick Start Guide

Acronis Disk Director 11 Advanced Server. Quick Start Guide Acronis Disk Director 11 Advanced Server Quick Start Guide Copyright Acronis, Inc., 2000-2010. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks of Acronis, Inc. "Acronis Compute

More information

Stellar Phoenix Exchange Server Backup

Stellar Phoenix Exchange Server Backup Stellar Phoenix Exchange Server Backup Version 1.0 Installation Guide Introduction This is the first release of Stellar Phoenix Exchange Server Backup tool documentation. The contents will be updated periodically

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows : Managing, Maintaining, and Troubleshooting, 5e Chapter 3 Installing Windows Objectives How to plan a Windows installation How to install Windows Vista How to install Windows XP How to install Windows

More information

NovaBACKUP. User Manual. NovaStor / November 2011

NovaBACKUP. User Manual. NovaStor / November 2011 NovaBACKUP User Manual NovaStor / November 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without

More information

Q: How to use MSI BurnRecovey on Windows 10 preloaded system?

Q: How to use MSI BurnRecovey on Windows 10 preloaded system? FAQ No. 01779 Q: How to use MSI BurnRecovey on Windows 10 preloaded system? A: (For Windows 10 pre-installed system only) MSI recommends all users to create system backup file with BurnRecovery tool. The

More information

Intel NUC. Installing Microsoft Windows* 7 from USB Flash Drives onto USB 3.0 Computers

Intel NUC. Installing Microsoft Windows* 7 from USB Flash Drives onto USB 3.0 Computers Intel NUC Installing Microsoft Windows* 7 from USB Flash Drives onto USB 3.0 Computers July 2015 1 Introduction 1.1 Document Scope The following document details the installation of a non-xhci operating

More information

Installation Instructions Release Version 15.0 January 30 th, 2011

Installation Instructions Release Version 15.0 January 30 th, 2011 Release Version 15.0 January 30 th, 2011 ARGUS Software: ARGUS Valuation - DCF The contents of this document are considered proprietary by ARGUS Software, the information enclosed and any portion thereof

More information

How to create a Virtual machine from a Macrium image backup

How to create a Virtual machine from a Macrium image backup ImgToVhd is a utility that creates VHD files from Macrium backup images. These can then be used to create a bootable virtual machine facilitating quick access to a failed machine whose repair would be

More information

AlienVault Offline Key Activation

AlienVault Offline Key Activation Complete. Simple. Affordable Copyright 2014 AlienVault. All rights reserved. AlienVault, AlienVault Unified Security Management, AlienVault USM, AlienVault Open Threat Exchange, AlienVault OTX, Open Threat

More information

Commport FTP Client Set-up

Commport FTP Client Set-up Commport FTP Client Set-up Instructions for downloading and installing the Commport FTP Client. Version 1.2 Commport Communications International, inc. May 2013 Download from Commport Website: http://www.commport.com/documents/commportftpclientsetup.zip

More information

Parallels Desktop for Mac

Parallels Desktop for Mac Parallels Software International, Inc. Parallels Desktop for Mac Quick Start Guide 3.0 (c) 2005-2007 Copyright 2006-2007 by Parallels Software International, Inc. All rights reserved. Parallels and Parallels

More information

NAS 249 Virtual Machine Configuration with VirtualBox

NAS 249 Virtual Machine Configuration with VirtualBox NAS 249 Virtual Machine Configuration with VirtualBox Configure and run Virtual Machines on ASUSTOR Portal with VirtualBox A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

Acronis True Image 2015 REVIEWERS GUIDE

Acronis True Image 2015 REVIEWERS GUIDE Acronis True Image 2015 REVIEWERS GUIDE Table of Contents INTRODUCTION... 3 What is Acronis True Image 2015?... 3 System Requirements... 4 INSTALLATION... 5 Downloading and Installing Acronis True Image

More information

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V Instructions apply to installs on Windows Server 2012 R2 Before you begin When deployed in a Hyper V environment, LANGuardian will capture

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

Citrix XenConvert Guide

Citrix XenConvert Guide Citrix XenConvert Guide XenConvert 2.0 Revision 1 May 21, 2009 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement. Information in

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Sophos Firewall Software Appliance Document Date: November 2015 November 2015 Page 1 of 14 Contents Preface...3 Minimum Hardware Requirement...3 Recommended Hardware Requirement...3

More information

Side 1 af 11 User Name Password Remember Me? Send forespørgsel Forum Tutorials What's New? Register Windows 7 Forum Today's Posts FAQ Send forespørgsel Forum Windows 8 Forums Tutorials UEFI Bootable USB

More information

Installation Guide. Wyse D Class Conversion to ThinOS. Wyse USB Firmware Tool TM Release 1.19 Products: D50D, D90D7, D90DW

Installation Guide. Wyse D Class Conversion to ThinOS. Wyse USB Firmware Tool TM Release 1.19 Products: D50D, D90D7, D90DW Installation Guide Wyse D Class Conversion to ThinOS Wyse USB Firmware Tool TM Release 1.19 Products: D50D, D90D7, D90DW Issue: 080113 PN: 883887-35L Rev. A Copyright Notices 2013, Wyse Technology LLC.

More information

Acronis Backup & Recovery 11

Acronis Backup & Recovery 11 Acronis Backup & Recovery 11 Quick Start Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows Workstation

More information

Multicam 8.04.33 Installation guide. Table of Contents

Multicam 8.04.33 Installation guide. Table of Contents Print: 09/11/2007 Page: 1/6 Multicam 8.04.33 Installation guide Table of Contents 1. INSTALLATION ON MTPC A1/A2 (A1, A1/R, A1/R2)... 2 1.1. DOS 6.22 OPERATING SYSTEM... 2 1.2. MULTICAM SOFTWARE... 2 1.2.1.

More information

USB Bare Metal Restore: Getting Started

USB Bare Metal Restore: Getting Started USB Bare Metal Restore: Getting Started Prerequisites Requirements for the target hardware: Must be able to boot from USB Must be on the same network as the Datto device Must be 64 bit hardware Any OSs

More information

Partitioning and Formatting Reference Guide

Partitioning and Formatting Reference Guide Partitioning and Formatting Reference Guide This guide provides simple guidelines for the initial setup of your hard disk drive using the most common methods and utilities available within the following

More information

Nexio Backup and Recovery

Nexio Backup and Recovery Nexio Backup and Recovery 11/2/2015 175-100271-00 RevE Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

NovaBACKUP. User Manual. NovaStor / May 2014

NovaBACKUP. User Manual. NovaStor / May 2014 NovaBACKUP User Manual NovaStor / May 2014 2014 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

DeployStudio Server Quick Install

DeployStudio Server Quick Install DeployStudio Server Quick Install v1.7.0 The DeployStudio Team info@deploystudio.com Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched

More information

Getting Started with VMware Fusion. VMware Fusion for Mac OS X

Getting Started with VMware Fusion. VMware Fusion for Mac OS X Getting Started with VMware Fusion VMware Fusion for Mac OS X 2 Getting Started with VMware Fusion Getting Started with VMware Fusion Item: EN-000189-00 You can find the most up-to-date technical documentation

More information

WA1791 Designing and Developing Secure Web Services. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc. 1

WA1791 Designing and Developing Secure Web Services. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc. 1 WA1791 Designing and Developing Secure Web Services Classroom Setup Guide Web Age Solutions Inc. Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information