Initial Bootloader > Flash Drive. Warning. If not used carefully this process can be dangerous

Size: px
Start display at page:

Download "Initial Bootloader > Flash Drive. Warning. If not used carefully this process can be dangerous"

Transcription

1 Initial Bootloader > Flash Drive Warning If not used carefully this process can be dangerous Running the script used in this article with an incorrect argument can cause loss of data and potentially damage the computer. The script with this article makes sector-to-sector copies to the target media which cannot be undone. To ensure that the computer is not compromised, follow the instructions in this article with care and ensure that the argument passed to the script is not in doubt. It is recommended to make backups of valuable data on the computer before performing operations that cannot be undone. Introduction This article explains how to populate a flash drive (the target media) with a bootloader. The bootloader used in this article is GRUB (GRand Unified Bootloader). GRUB is self-propagating and once it exists on media in one device it can be used to install itself onto another target. However, it is not possible to install GRUB using a Windows executable, so the script in this article populates the target with an initial image using dd to perform a sector-tosector copy of a GRUB image.

2 Prerequisites The following hardware is required: one flash drive The following Windows programs must be installed: Tar gzip dd It is also essential that the computer can boot from a flash drive. After the computer completes its power on self test, it searches for bootable storage devices and boots from the first one it finds. The order in which the computer searches for devices is controlled in the ROM BIOS and the BIOS settings need to be configured to instruct the computer to search for bootable flash drives before searching for bootable hard disks. Computers vary widely in how this is done. Many display a message shortly after the computer is turned on indicating which key to press to enter BIOS configuration (typically the esc or F10 key). Others require a configuration floppy disk or CD to configure the BIOS.

3 Download Download initial_flash from helpcentreonline.com. This will save a file named initial_flash.tar.gz. Note the directory initial_flash.tar.gz is downloaded to: this will be referred to as the download directory ([download]). Installation 1. Collect information. 1. Note the target device mount identifier. In Windows, flash drives are represented by drive letters. The drive letter can be found by starting Windows Explorer and then plugging the flash drive into a USB socket. Note the drive letter used to represent the flash drive. The drive letter is referred to later in this article as the target identifier. Leave the flash drive in the USB socket. If devices are connected to or disconnected from the computer, the target identifier may change. For this reason it is important to note the target identifier each time the process in this article is followed and complete the process before connecting or disconnecting any devices. 2. Note the target device ([target device]). Start a command prompt and type the following command (do not type the > character - it is the prompt): > dd --list A list of devices is returned. Look through the list and find the reference to the target identifier. An example of a reference in the output is as follows: \\.\Volume{1def118c-6a20-11dd-b d }\ link to \\?\Device\Harddisk1\DP(1)0-0+b removeable media Mounted on \\.\f: In this example, the target identifier is f and the target device is Harddisk1.

4 2. Backup target. 1. Operations performed in this article overwrite the master boot record and destroy all existing partitions on the target flash drive. One small partition is created on the drive and the rest of the device is marked as unused. This means that much of the flash drive is unusable without rebuilding the partitions, and even if partitions are rebuilt, the master boot record's code area is overwritten with GRUB's initial bootstrap program, so the flash drive may still not be bootable if GRUB is removed. To preserve any existing data on the drive and make it fully usable again without altering its partitions, it is possible to backup the entire drive using the following command at the command prompt: > dd if=\\?\device\[target device]\partition0 of=temp.img bs=1m When typing the command replace [target device] with the target device value noted earlier. For example, if the target device is Harddisk1, type the following: > dd if=\\?\device\harddisk1\partition0 of=temp.img bs=1m Before typing the above command it will be necessary to navigate to the directory the backup image is to be stored in. Do not type the > character - it is the command prompt. The data can later be restored to the flash drive using the following command: > dd if=temp.img of=\\?\device\[target device]\partition0 bs=1m 3. Create sources directory ([sources]). 1. Create a directory from which the flash drive installation will be performed. For example, a suitable directory could be c:\unix\source. This directory will be referred to as the sources directory.

5 4. Unpack sources. Start a command prompt and type the following commands. (Do not type the > character - it is the command prompt.) 1. > copy [download]\initial_flash.tar.gz [sources] Copy the sources from the download directory to the sources directory. When typing the command replace [download] with the path name of the download directory including the drive letter and replace [sources] with the path name of the sources directory including the drive letter. For example, if initial_flash.tar.gz was downloaded to d:\download and the sources directory is c:\unix\source, type: > copy d:\download\initial_flash.tar.gz c:\unix\source 2. > [sources drive]: Change to the drive containing the sources directory. When typing the command replace [sources drive] with the drive letter of the drive containing the sources directory. For example if the sources directory is c:\unix\source, type: > c: 3. > cd [sources] Change to the sources directory. When typing the command replace [sources] with the path name of the sources directory excluding the drive letter. For example if the sources directory is c:\unix\source, type: > cd \Unix\source 4. > gzip -d initial_flash.tar.gz Decompress the compressed file. 5. > tar -xf initial_flash.tar Extract the archive.

6 5. Install. 6. > cd initial_flash 1. > install [target device] 6. Clean sources directory. Install the GRUB image. When typing the command replace [target device] with the target device. For example, if the flash drive is represented by Harddisk1, type the following: 1. > cd.. > install Harddisk1 2. > del initial_flash.tar 3. > rd initial_flash /S

7 7. Test installation. 1. Reboot the computer with the flash drive still connected. If the installation has been successful the computer reboots with the following screen: GRUB version 0.93 (640K lower / 3072K upper memory) [ Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists the possible completions of a device/filename. ] grub> As indicated in the prerequisites section, the BIOS must be configured so that flash drives have priority over hard disks in the search order. Script 2. Remove the flash drive and reboot the computer. The following script is used: Unplug the flash drive and then at the grub> prompt type: grub> reboot install.bat is run from the command prompt to perform the installation. install.bat The install.bat script is run from the command prompt to perform the installation. It accepts the target device as an argument and copies the GRUB image to the flash drive.

8 Further Comments Script To understand the process followed in this article, it is worth examining the script. The installation is performed by the following command in the install.bat script: dd if=grub.img of=\\?\device\%1\partition0 bs=1m This command uses dd to copy the contents of file grub.img to the target flash drive in blocks of 1 megabyte. dd is not the same as the DOS copy command which copies one file to another. dd streams a specified quantity of data from a defined point in a source to a defined point in a target without regard to any content that may already be in the target. The source and target may be files or devices. In the above example all data is streamed from the beginning of file grub.img to the beginning of a flash drive. The first sector of a flash drive contains the master boot record, which is overwritten, and a small partition is copied. The dd command enables an entire image to be created on the target, which may contain data in a variety of forms, including: a single file the entire contents of a device an operating system a copy of a master boot record. Flash Drive Contents The image copied to the flash drive is in FAT32 format, so it can be viewed from Windows Explorer. The drive contains the following files in directory \boot\grub: stage1 stage2 fat_stage1_5 In addition, stage1 is also embedded in the drive's master boot record as the initial bootstrap program. When the computer starts, stage1 is loaded from the master boot record and it loads fat_stage1_5, which understands the FAT32 file system. fat_stage1_5 then loads stage2, which contains the user interface and functionality in GRUB.

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed:

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed: Initial Bootloader Introduction On power-up, when a computer is turned on, the following operations are performed: 1. The computer performs a power on self test (POST) to ensure that it meets the necessary

More information

Overview of USB Flash Drive Based Install Instructions

Overview of USB Flash Drive Based Install Instructions Overview of USB Flash Drive Based Install Instructions WARNING: Installing any Image completely wipes out ALL data and settings including printer drivers which must be re-installed. SAVE ALL DATA BEFORE

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

NEC Versa 500D/550D Windows 98 Upgrade Information

NEC Versa 500D/550D Windows 98 Upgrade Information NEC Versa 500D/550D Windows 98 Upgrade Information Follow the instructions provided in this document to upgrade your NEC Versa 500D/550D system to Microsoft Windows 98. Please read these notes in their

More information

Upgrading the Cisco IOS XE Software

Upgrading the Cisco IOS XE Software Prerequisites for the Software Upgrade Process, page 1 Saving Backup Copies of Your Old System Image and Configuration, page 2 Using TFTP or Remote Copy Protocol to Copy the System Image into Boot Flash

More information

Lionstracs Groove X-R

Lionstracs Groove X-R Lionstracs Groove X-R Groove OS version 5.3 Installation & Upgrade Guide 31 October 2011 English Language documentation prepared by Corcyra Global in consultation with Lionstracs Table of Contents Warning

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

Instructions For Formatting Hard Drive Windows 7 Command Prompt

Instructions For Formatting Hard Drive Windows 7 Command Prompt Instructions For Formatting Hard Drive Windows 7 Command Prompt How to format a hard drive in Windows Vista, 7 or 8: plus how to format hard drive drive, run the Universal USB Installer setup program,

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows 7 / 7 64-bit / Vista TM / Vista TM 64-bit /

More information

NVIDIA RAID Installation Guide

NVIDIA RAID Installation Guide NVIDIA RAID Installation Guide 1. NVIDIA BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows XP / XP 64-bit / Vista / Vista 64-bit

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows 7 / 7 64-bit / Vista TM / Vista TM 64-bit /

More information

SECUDRIVE Sanitizer Portable User Guide

SECUDRIVE Sanitizer Portable User Guide SECUDRIVE Sanitizer Portable User Guide Doc Ver. 2.0.27.238 2014-04-24 Brainzsquare, Inc. TABLE OF CONTENTS 1 Overview... 3 1.1 Features... 3 2 PC Sanitization... 5 2.1 Program Package... 5 2.2 Running

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation Linux+ Guide to Linux Certification, Third Edition Chapter 6 Advanced Installation Objectives Describe the types and structure of SCSI devices Explain the different levels of RAID and types of RAID configurations

More information

How To Make A Pen-Drive Bootable?

How To Make A Pen-Drive Bootable? How To Make A Pen-Drive Bootable? Hello Friends Welcome to FixinGeek.com How are you, friends? I m back after a long time so friends in this post you will learn the process to make your pen drive bootable

More information

NVIDIA / JMicron RAID Installation Guide

NVIDIA / JMicron RAID Installation Guide NVIDIA / JMicron RAID Installation Guide 1. Introduction to NVIDIA / JMicron RAID Installation Guide. 3 1.1 Installing Windows 2000 / XP / XP 64-bit / Vista / Vista 64-bit With RAID Functions. 4 1.1.1

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 3 1.1 Introduction to RAID.. 3 1.2 RAID Configurations Precautions 4 1.3 Installing Windows 8 / 8 64-bit / 7 / 7 64-bit / Vista / Vista

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows 8 / 8 64-bit / 7 / 7 64-bit With RAID Functions....5

More information

Lesson 1: Preparing for Installation

Lesson 1: Preparing for Installation 2-2 Chapter 2 Installing Windows XP Professional Lesson 1: Preparing for Installation When you install Windows XP Professional, the Windows XP Professional Setup program allows you to specify how to install

More information

Boot. How OS boots

Boot. How OS boots Boot How OS boots 67 1 Booting sequence 1. Turn on 2. CPU jump to address of BIOS (0xFFFF0) 3. BIOS runs POST (Power-On Self Test) 4. Find bootable devices 5. Loads and execute boot sector from MBR 6.

More information

4190 Information Management System (IMS) Software Upgrade Instructions

4190 Information Management System (IMS) Software Upgrade Instructions 4190 Information Management System (IMS) Software Upgrade Instructions Introduction This publication describes the software upgrade procedure for the 4190 Information Management System (IMS). Inspecting

More information

How to Restore a Windows System to Bare Metal

How to Restore a Windows System to Bare Metal This article refers to the Barracuda Backup Legacy Release firmware or newer, except where noted. Bare metal recovery allows you to restore a complete Microsoft Windows system, including data, settings,

More information

Boot Process in details for (X86) Computers

Boot Process in details for (X86) Computers Boot Process in details for (X86) Computers Hello,,, Let's discuss what happens between the time that you power up your PC and when the desktop appears. In fact we should know that the boot process differs

More information

RAID Installation Guide

RAID Installation Guide RAID Installation Guide 1. NVIDIA BIOS RAID Installation Guide... 2 1.1 Introduction to RAID... 2 1.2 RAID Configurations Precautions... 3 1.3 Create Disk Array...... 4 2. NVIDIA Windows RAID Installation

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide... 2 1.1 Introduction to RAID... 2 1.2 RAID Configurations Precautions... 4 1.3 Legacy RAID ROM Configuration (for AMD X370, B350, and A320

More information

1. Save the Express BIOS update file to a temporary directory on the target PC. 2. Double-click the *.EXE file to run the Express BIOS update.

1. Save the Express BIOS update file to a temporary directory on the target PC. 2. Double-click the *.EXE file to run the Express BIOS update. BIOS Update Readme BIOS Update Instructions for Intel Desktop Boards This Readme file includes BIOS update instructions for advanced users. If you need more complete step-by-step instructions on how to

More information

Server Systems and Motherboards

Server Systems and Motherboards Server Systems and Motherboards Raid Configuration and Driver installation guide For Intel ICH5R/ 6300ESB chip 1 Contents 1. RAID Configuration 1.1 RAID Definition 3 1.2 Installing disk drives..3 1.3 Setting

More information

Guide to SATA Hard Disks Installation and RAID Configuration

Guide to SATA Hard Disks Installation and RAID Configuration Guide to SATA Hard Disks Installation and RAID Configuration 1. Guide to SATA Hard Disks Installation...2 1.1 Serial ATA (SATA) Hard Disks Installation...2 2. Guide to RAID Configurations...3 2.1 Introduction

More information

Procedures to Install Eye Com's ImageMouse and ImageMouse Plus using Windows XP platform

Procedures to Install Eye Com's ImageMouse and ImageMouse Plus using Windows XP platform Procedures to Install Eye Com's ImageMouse and ImageMouse Plus using Windows XP platform 8-08-2005 The ImageMouse runs on the XP platform provided it is set up using NTFS, has the latest XP service pack

More information

C A S P E R USER GUIDE V ERSION 5.0

C A S P E R USER GUIDE V ERSION 5.0 TM C A S P E R TM USER GUIDE V ERSION 5.0 Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and

More information

v5: How to recover your PC using the Linux Rescue CD

v5: How to recover your PC using the Linux Rescue CD The Linux CD is a compact and efficient rescue environment to restore all Windows operating systems. It will only enable your to restore your imaged partitions to exactly the same size and position as

More information

BACKING UP AN IMAGE OF YOUR HARD-DRIVE

BACKING UP AN IMAGE OF YOUR HARD-DRIVE BACKING UP AN IMAGE OF YOUR HARD-DRIVE Jim McKnight www.jimopi.net ImageBackup.lwp revised 1-20-2016 GENERAL IMAGE BACKUP TIPS For an overview of backing up, see my "A Stress Free PC" article at http://www.jimopi.net

More information

Guide to SATA Hard Disks Installation and RAID Configuration

Guide to SATA Hard Disks Installation and RAID Configuration Guide to SATA Hard Disks Installation and RAID Configuration 1. Guide to SATA Hard Disks Installation...2 1.1 Serial ATA (SATA) Hard Disks Installation...2 2. Guide to RAID Configurations...3 2.1 Introduction

More information

Disk Imaging with Knoppix

Disk Imaging with Knoppix Introduction This document explains how to use the CD-ROM bootable version of Linux, named Knoppix, to make and restore images of computer hard drives. Knoppix makes a very good system recovery tool for

More information

Sound Card Installation for Windows 95/98

Sound Card Installation for Windows 95/98 Sound Card Installation for Windows 95/98 Hardware Installation 1. Shut down Windows and power down system. Unplug power cable from the system. 2. Remove screws and open system enclosure. 3. Remove static

More information

Setting up and running the pyrophosphate tools under the Knoppix GNU Linux system

Setting up and running the pyrophosphate tools under the Knoppix GNU Linux system 1 Setting up and running the pyrophosphate tools under the Knoppix GNU Linux system N.B. These instructions are for using the Knoppix Live CD or DVD. If you want to use the tools on another Debian Linux

More information

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address Quick Guide Deployment Manager 2 Quick Guide 1 Introduction...3 1.1 Installing the

More information

Lab: Setting up PL-App with a Raspberry Pi

Lab: Setting up PL-App with a Raspberry Pi Lab Topology Objectives Set up a Raspberry Pi board as a PL-App device Use PL-App Launcher to provision and discover PL-App devices Background Cisco Prototyping Lab is a set of hardware and software components

More information

Fedora Linux Installation Guide

Fedora Linux Installation Guide RocketRAID 2640/2642 SAS Controller Fedora Linux Installation Guide Version 1.2 Copyright 2012HighPoint Technologies, Inc. All rights reserved. Last updated on August 10, 2012 Table of Contents 1 Overview...

More information

DELLEMC. TUESDAY September 19 th 4:00PM (GMT) & 10:00AM (CST) Webinar Series Episode Nine WELCOME TO OUR ONLINE EVENTS ONLINE EVENTS

DELLEMC. TUESDAY September 19 th 4:00PM (GMT) & 10:00AM (CST) Webinar Series Episode Nine WELCOME TO OUR ONLINE EVENTS ONLINE EVENTS WELCOME TO OUR DELLEMC Webinar Series Episode Nine OUR PRESENTATION IS DUE TO START TUESDAY September 19 th 4:00PM (GMT) & 10:00AM (CST) About us.. We re a global team of Dell technicians with highly varied

More information

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning)

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning) This process allows you to back up your fit-pc2 workstation (or any USB-bootable computer) so you can quickly and easily restore your computer to its original state in the event of a hard drive failure,

More information

Enterprise Surveillance Manager. Version Installation Manual

Enterprise Surveillance Manager. Version Installation Manual ipconfigure Enterprise Surveillance Manager. Version 5.4.2 Installation Manual Table of Contents INSTALLATION GUIDE WITH WINDOWS 2008 R2 3 IPCONFIGURE ESM 5.4.2 SOFTWARE INSTALLATION PROCESS 5 IPCONFIGURE

More information

NVIDIA RAID Installation Guide

NVIDIA RAID Installation Guide NVIDIA RAID Installation Guide 1. NVIDIA BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID. 2 1.2 RAID Configurations Precautions.. 3 1.3 Create Disk Array. 4 2. NVIDIA Windows RAID Installation

More information

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems 5.0 Introduction 1. What controls almost all functions on a computer? The operating system 5.1 Explain the purpose of an operating system 2.

More information

V Workstation Imaging

V Workstation Imaging V Workstation Imaging The following sections provide information on Novell ZENworks Desktop Management Workstation Imaging procedures and features. Chapter 50, Common Imaging Deployment Strategies, on

More information

HDD Setting OBJECTIVES RESOURCES DISCUSSION LAB PROCEDURE 4

HDD Setting OBJECTIVES RESOURCES DISCUSSION LAB PROCEDURE 4 LAB PROCEDURE 4 HDD Setting OBJECTIVES 1. Auto-detect IDE drives in CMOS. 2. Use CMOS IDE modes. 3. Learn about CD-ROM setup considerations. Hardware RESOURCES 1. Marcraft 8000 Trainer 2. Windows Millennium

More information

Installing the UnixWare Package. Installing the UnixWare Package - 1

Installing the UnixWare Package. Installing the UnixWare Package - 1 Installing the UnixWare Package Installing the UnixWare Package - 1 Issue 2 Installing the UnixWare Software Package Installing the UnixWare Software Package CAUTION: If you use the DELETE key to stop

More information

Veritas System Recovery Disk Help

Veritas System Recovery Disk Help Veritas System Recovery Disk Help About recovering a computer If Windows fails to start or does not run normally, you can still recover your computer. You can use the Veritas System Recovery Disk and an

More information

JetFlash User s Manual

JetFlash User s Manual JetFlash User s Manual ( Version 1.0 ) Table of Contents INTRODUCTION...1 PACKAGE CONTENTS...1 FEATURES...1 SYSTEM REQUIREMENTS...1 DRIVER INSTALLATION...2 DRIVER INSTALLATION FOR WINDOWS 98SE...2 DRIVER

More information

TSM800 / TSM1330 Update Instructions

TSM800 / TSM1330 Update Instructions TSM800 / TSM1330 Update Instructions Contents Contents... 1 Automatic Updates... 1 Manual Update to the Latest Version of N2KView... 2 Manual Update of the Complete Operating System... 3 Automatic Updates

More information

Guide to SATA Hard Disks Installation and RAID Coniguration

Guide to SATA Hard Disks Installation and RAID Coniguration Guide to SATA Hard Disks Installation and RAID Coniguration 1. Guide to SATA Hard Disks Installation...2 1.1 Serial ATA (SATA) Hard Disks Installation...2 2. Guide to RAID Conigurations...3 2.1 Introduction

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows XP / XP 64-bit / Vista / Vista 64-bit With

More information

Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide

Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on June 12, 2012 Table of Contents 1 Overview...

More information

Peerless Drive System User's Manual

Peerless Drive System User's Manual Peerless Drive System User's Manual Copyright 2001 Iomega Corporation Iomega, the stylized "i" logo, Peerless, and the Peerless brand block are either registered trademarks or trademarks of Iomega Corporation

More information

Description of the Windows XP Recovery Console for advanced users

Description of the Windows XP Recovery Console for advanced users Page 1 of 11 Article ID: 314058 - Last Review: September 22, 2008 - Revision: 5.4 Description of the Windows XP Recovery Console for advanced users System Tip This article applies to a different version

More information

by sudodus alias nio-wiklund at launchpad mkusb - quick start manual

by sudodus alias nio-wiklund at launchpad mkusb - quick start manual mkusb version 11 quick start manual by sudodus alias nio-wiklund at launchpad 1 Overview Page 3 Prepare. install, run mkusb Page 8 Help text and more details Page 11 Slideshow Page 12 Standard installation

More information

Fedora Linux Installation Guide

Fedora Linux Installation Guide RocketRAID 276x SAS Controller Fedora Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on May 29, 2012 Table of Contents 1 Overview...

More information

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration Chapter 6. Boot time configuration Chapter 6 Boot time configuration Last revised: 20/6/2004 Chapter 6 Outline In this chapter we will learn about: How the system boots How to configure the boot loaders

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Models: A3040 Document Date: 2/10/06 Document Part Number: FPC58-1482-01 F U J I T S U C O M P U T E R S Y S T E M S 1 LifeBook A Series Notebook

More information

Chapter Two File Systems. CIS 4000 Intro. to Forensic Computing David McDonald, Ph.D.

Chapter Two File Systems. CIS 4000 Intro. to Forensic Computing David McDonald, Ph.D. Chapter Two File Systems CIS 4000 Intro. to Forensic Computing David McDonald, Ph.D. 1 Learning Objectives At the end of this section, you will be able to: Explain the purpose and structure of file systems

More information

Veritas System Recovery Disk Help

Veritas System Recovery Disk Help Veritas System Recovery Disk Help About recovering a computer If Windows fails to start or does not run normally, you can still recover your computer. You can use the Veritas System Recovery Disk and an

More information

HOW TO: Perform a Hardware Independent Restore (HIR)

HOW TO: Perform a Hardware Independent Restore (HIR) Document ID:00000184 Last Modified:12/12/2008 HOW TO: Perform a Hardware Independent Restore (HIR) Key Words: How to, HIR, Hardware independent restore, recovery Situation: The purpose of this document

More information

GV Director Restoring USB Image / Frame and Panel Installation

GV Director Restoring USB Image / Frame and Panel Installation IMPORTANT NOTE: If you have already been provided this update package via USB by a Grass Valley service representative, please skip ahead and begin on page 4. Requirements: 16 GB USB FLASH OR LARGER Mouse

More information

Computer Forensics: Investigating Data and Image Files, 2nd Edition. Chapter 3 Forensic Investigations Using EnCase

Computer Forensics: Investigating Data and Image Files, 2nd Edition. Chapter 3 Forensic Investigations Using EnCase Computer Forensics: Investigating Data and Image Files, 2nd Edition Chapter 3 Forensic Investigations Using EnCase Objectives After completing this chapter, you should be able to: Understand evidence files

More information

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on February 16, 2009 Table of Contents 1 Overview...1

More information

User. Applications. Operating System. Hardware

User. Applications. Operating System. Hardware 2 User Applications Operating System Hardware 3 What is the Booting 1.When the user powers up the computer the CPU (Central Processing Unit) activates the BIOS (Basic Input Output System). 2. The first

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows OS With RAID Funtions... 3 1.3.1 Installing

More information

FASTTRAK TX4000 QUICK START GUIDE. Version 1.2

FASTTRAK TX4000 QUICK START GUIDE. Version 1.2 FASTTRAK TX4000 QUICK START GUIDE Version 1.2 FastTrak TX4000 Copyright 2002 Promise Technology, Inc. Copyright by Promise Technology, Inc. (Promise Technology). No part of this manual may be reproduced

More information

PL-I Assignment Broup B-Ass 5 BIOS & UEFI

PL-I Assignment Broup B-Ass 5 BIOS & UEFI PL-I Assignment Broup B-Ass 5 BIOS & UEFI Vocabulary BIOS = Basic Input Output System UEFI = Unified Extensible Firmware Interface POST= Power On Self Test BR = Boot Record (aka MBR) BC =Boot Code (aka

More information

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD Version 1.4 This tutorial will walk you through how to create a bootable USB drive and how to apply the newest firmware 4.6 to your

More information

User s Manual. Rev July 29,

User s Manual. Rev July 29, User s Manual Rev. 3.3.0.75 July 29, 2009 www.comsol.com.au Contents 1. Introduction...2 1.1 System Requirements... 2 1.2 Multilingual Support... 2 1.3 Disk Partitioning... 2 1.4 Note... 3 2. Icon Descriptions...4

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: AH530 Document Date: 06/09/2010 Document Part Number: FPC58-2714-01 FUJITSU AMERICA, INC. 1 LifeBook PH520 BIOS A Series BIOS BIOS SETUP UTILITY

More information

MBB100 / DSM800 Update Instructions

MBB100 / DSM800 Update Instructions MBB100 / DSM800 Update Instructions Contents Contents... 1 Automatic Updates... 1 Manual Update to the Latest Version of N2KView... 2 Manual Update of the Complete Operating System... 3 Automatic Updates

More information

Windows Update Instructions Xp To 7 Without Cd Drive

Windows Update Instructions Xp To 7 Without Cd Drive Windows Update Instructions Xp To 7 Without Cd Drive This is the original disc that has Windows XP, Vista, 7 or 8. can boot into the system or instructions if you don't have a Windows XP CD), The installation

More information

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on September 17, 2008 Table of Contents 1

More information

Introduction to the File Manager

Introduction to the File Manager EmBootKit User Guide Contents 1. About the File Manager............................................................................................ 2 2. How to start.....................................................................................................

More information

Pro-face/Xycom Workstation Recovery Media Software Installation Instructions for Microsoft MS-DOS 6.22

Pro-face/Xycom Workstation Recovery Media Software Installation Instructions for Microsoft MS-DOS 6.22 Pro-face/Xycom Workstation Recovery Media Software Installation Instructions for Microsoft MS-DOS 6.22 Revision Description Date A Manual Released 1/01 B CD-ROM Instructions added 4/04 C Name change, correct

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

Using grub to Boot various Operating Systems

Using grub to Boot various Operating Systems Operating Systems and Systems Integration Using grub to Boot various Operating Systems Contents 1 Aim 2 2 What You Will Do 2 3 Background 2 3.1 Installing grub in MBR from a floppy, and from the OS........

More information

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION

LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION LENOVO THINKSTATION P520C, P520, P720, & P920 WINDOWS 7 INSTALLATION Contents OVERVIEW SECTION 1 BIOS & PRE-INSTALLATION STEPS SECTION 2 WINDOWS 7 DRIVER SLIPSTREAM SETUP SECTION 3 WINDOWS 7 INSTALLATION

More information

Guide to SATA Hard Disks Installation and RAID Coniguration

Guide to SATA Hard Disks Installation and RAID Coniguration Guide to SATA Hard Disks Installation and RAID Coniguration 1. Guide to SATA Hard Disks Installation...2 1.1 Serial ATA (SATA) Hard Disks Installation...2 2. Guide to RAID Conigurations...3 2.1 Introduction

More information

Digital HiNote VP 500 Series

Digital HiNote VP 500 Series Introduction Digital HiNote VP 500 Series User s Guide Addendum Part Number: ER-PD1WF-AA. A01 This addendum supersedes material covered in the Digital HiNote VP 500 Series User s Guide supplied with your

More information

N Series BIOS BIOS SETUP UTILITY

N Series BIOS BIOS SETUP UTILITY BIOS SECTION N3530 LifeBook N Series Notebook BIOS N Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Performing Maintenance Operations

Performing Maintenance Operations This chapter describes how to back up and restore Cisco Mobility Services Engine (MSE) data and how to update the MSE software. It also describes other maintenance operations. Guidelines and Limitations,

More information

How to Dual-Boot OS X and Ubuntu

How to Dual-Boot OS X and Ubuntu How to Dual-Boot OS X and Ubuntu Nailen Matschke - nailen@caltech.edu 10/3/2015 What you need: 1. A USB drive with at least 2 GB of space, that you don t mind wiping 2. A copy of Ubuntu (available here),

More information

SLES Linux Installation Guide

SLES Linux Installation Guide Rocket RAID 278x SAS Controller SLES Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Created on May 29, 2012 Table of Contents 1 Overview... 1 2 Installing

More information

Manually Installation Windows Updates Xp From Usb Drive Bootable

Manually Installation Windows Updates Xp From Usb Drive Bootable Manually Installation Windows Updates Xp From Usb Drive Bootable Installing Windows from a pen drive is an easy process - just follow these steps. How to Make a Bootable USB Disk for Windows 8, Windows

More information

Format and Lock Utility User Manual (v2.0) USB 2.0 Flash Disk

Format and Lock Utility User Manual (v2.0) USB 2.0 Flash Disk 1. Introduction This FORMAT tool contains two programs: Format.exe and Lock.exe. The former (Format.exe) is used to format/partition the USB flash disk and the latter (Lock.exe) is for security disk function.

More information

C A S P E R USER GUIDE V ERSION 10

C A S P E R USER GUIDE V ERSION 10 TM C A S P E R TM USER GUIDE V ERSION 10 Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and distribution

More information

8 MANAGING SHARED FOLDERS & DATA

8 MANAGING SHARED FOLDERS & DATA MANAGING SHARED FOLDERS & DATA STORAGE.1 Introduction to Windows XP File Structure.1.1 File.1.2 Folder.1.3 Drives.2 Windows XP files and folders Sharing.2.1 Simple File Sharing.2.2 Levels of access to

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

HELP Use the help command to list all the following supported commands:

HELP Use the help command to list all the following supported commands: Available commands within Windows Recovery Console The following commands are available within the Windows Recovery Console. The commands are not case-sensitive. HELP Use the help command to list all the

More information

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Introduction This publication describes the software upgrade procedure for the Simplex 4190 TrueSite Workstation (TSW). Inspecting

More information

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 8 Hard Drives

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 8 Hard Drives A+ Guide to Managing and Maintaining your PC, 6e Chapter 8 Hard Drives Introduction Hard drive: most important secondary storage device Hard drive technologies have evolved rapidly Hard drive capacities

More information

Figure 1.0 ULTRA 22C Board Layout JP1 JP5. Table 1.0 Default Jumper Settings

Figure 1.0 ULTRA 22C Board Layout JP1 JP5. Table 1.0 Default Jumper Settings UltraStor ULTRA 22C Quick Setup Memory Expansion Board Connector Figure 1.0 ULTRA 22C Board Layout J4 :::::::::::::::::::::::::::::: : : :::::::::: :::::::::: ::::::::::::::::: 2 P6 1 JP3 1 J2 1 J1 1 J3

More information

Server Systems and Motherboards

Server Systems and Motherboards Server Systems and Motherboards Raid Configuration and Driver installation guide For LSI53C 1030 chip 1 Contents 1. RAID Configuration 1.1 RAID Definition.. 3 1.2 Installing disk drives. 3 1.3 Setting

More information

M2GO & M1 Operating System Installation

M2GO & M1 Operating System Installation M2GO & M1 Operating System Installation Download USB Flash preparation Installation Supplied by: Author Kris Van Hullebusch July 10, 2012 Date Martin M2GO & M1 OS installation (Rev. A) Revision History

More information

A+ Guide to Hardware, 4e. Chapter 7 Hard Drives

A+ Guide to Hardware, 4e. Chapter 7 Hard Drives A+ Guide to Hardware, 4e Chapter 7 Hard Drives Objectives Learn how the organization of data on floppy drives and hard drives is similar Learn about hard drive technologies Learn how a computer communicates

More information

Wavestore VMS v6 Installation Instructions

Wavestore VMS v6 Installation Instructions Wavestore VMS v6 Installation Instructions Updated January 2019 at Version 6.14 Page 1 Table of Contents 1. Introduction... 3 2. Upgrading from a previous V6 version to a later V6 version... 4 2.1 Checking

More information

CST8177 Linux II. Linux Boot Process

CST8177 Linux II. Linux Boot Process CST8177 Linux II Linux Boot Process Reference information from the text, http://www.linuxdoc.org and several other web sites Linux Boot Process Topics covered in this slide-set Basic definition of the

More information

Reinstalling the Operating System on the Dell PowerVault 745N

Reinstalling the Operating System on the Dell PowerVault 745N Reinstalling the Operating System on the Dell PowerVault 745N This document details the following steps to reinstall the operating system on a PowerVault 745N system: 1. Install the Reinstallation Console

More information