How to Recover Data with Linux

Size: px
Start display at page:

Download "How to Recover Data with Linux"

Transcription

1 How to Recover Data with Linux Data recovery with Linux distributions. Table of Contents Overview Difficulty Level Part I - Obtaining Linux What is Linux? Downloading Knoppix Downloading Knoppix - Alternative Burning the CD Part II - Using Linux Starting Linux Data backup Data backup - Alternative Mount the drives Copy data Copy entire folders Unmouting the drives (shutting down) Sources and Relevant Links While used successfully many times, the following information has the possibility of making your data permanently inaccessible. When in doubt, visit one of the ITS centers. Data recovery is never guaranteed. Overview Explain how to recover data with Linux. Difficulty Level Advanced users only. Part I - Obtaining Linux What is Linux? Linux is the backbone (known as the kernel) of a family of operating systems. In a similar sense, Windows is a family of operating systems (2000, XP, Vista, etc). Some of the most popular operating systems in the Linux family are Ubuntu, Fedora, and Knoppix. In this tutorial we will be using Knoppix to preform the data recovery, but any Linux distribution should work fine. The first step is to download a Linux Live CD. When you turn your computer on your operating system (lets say Windows Vista) is loaded from the harddisk into the ram. When you use a live CD, the operating system is loaded from a CD disk to the ram. The benefit of this is that you do not need to make any changes to the harddisk to run this operating system, every thing is done from the CD. In fact, one can use a live operating system off of a CD even if there isn't a harddisk in the computer! Linux subscribes to the philosophy of open source software, in other words, Linux is completely free. Some companies may develop operating systems built on Linux which they try to sell (such as Red Hat), but the majority of distributions are free. Knoppix is one of these free operating systems. Downloading Knoppix 1) Click to following link to connect to ftp.kernel.org ( Knoppix Download) 2) Accept the license agreement 3) The versions are listed from oldest to most recent (look at the dates) 4) Scroll down to the latest version. It will be called something like "KNOPPIX_xxxx-EN.iso" (as of this document, the latest version is "KNOPPIX_V6.0.1CD EN.iso") 5) Verify the file size, it will be around KB (as opposed to the other files which are about 1 KB) 6) Click on it. Select "Save File". Wait for the file to download.

2 Downloading Knoppix - Alternative 1) Visit the Knoppix official website - knoppix.net 2) Click on the link "Get Knoppix" 3) Knoppix offers several different ways to get their OS a) Download from one of the mirrors c) Pay $1.95 for them to mail you a CD The easiest way is to just download from one of the mirrors so that is the way we will cover here. 4) Scroll down to "Download Knoppix for free with FTP" 5) Click "Mirror list on the official site" 6) There are three columns, "Download From", "Protocol", and "Site Sponsor" 7) Pick a Site Sponsor (closer locations download faster) 8) In the same row as the Site Sponsor you wish to download from, select <http> from the protocol column. 9) Follow steps 2-6 as listed above. Note: The Site Sponsor may list the file size in terms of MB instead of KB. (650000KB is about the same as 650MB) Burning the CD The file you just downloaded is a called an ISO (note the extension.iso). An ISO is an exact replica (called an image) of a CD Disk. Windows cannot natively burn an ISO file to a CD, fortunately there are many free programs which allow you to do this. We recommend using ImgBurn. You can download it here from Softpedia. ( ImgBurn Download) 1. Run ImgBurn. You will be presented with this screen: Click "Write image file to disk." You will be presented with this screen: At the top, under "Source", it says "Please select a file." Click the magnifying glass on top of the folder Navigate to the directory where you downloaded Knoppix and select the ISO In ImgBurn, under "Destination", make sure your CD drive is selected and there is a blank CD-R in the drive (700MB or more). Press the green "Play" button in ImgBurn. It will burn the ISO to the CD, eject the CD, pull the CD back in, verify the CD, then eject it again. Part II - Using Linux

3 Starting Linux Insert your Linux Live CD into your CD dive and reboot the computer If you have a Dell Bookstore computer then press the F12 key when the computer is first booting up (at the Dell Logo) If you do not have a Dell Bookstore Computer, a message should display while booting such as "<Key Here> for boot options" or "<Key Here> for boot manager." The most common keys are <Esc>, <F2>, and <F12>. When you enter the boot list (white text on a black background), use the arrow keys to select your CD Drive You will see two boot screens. First this: Then This: 6. After Knoppix has finished booting, you will be presented with the LDXE (Lightway X11 Desktop Enviroment). Your screen will look like this: 7. Click the Terminal icon at the bottom left of the screen Type "fdisk -l" and press enter Take note of what drives appear and their names. In the example there are 3 devices. A harddisk (sda1 40.0GB), a usb drive (sdb1

4 4110MB), and a second usb drive (sdc1 1031MB). 10. We want to take data off of the harddisk and put it onto the second usb drive to back it up. Data backup 1. Click the PCMan icon 5. at the bottom left of the screen. Navigate to /media/ Select the folder that corresponds to your harddrive. Alternativly you can just click the harddrive icon in the left panel of PCMan. Open a new windows and navigate to (or click the icon for) your usb drive. In this example the harddrive is open on the left window and the usb drive (with some data already on it) is opened in the right window. 6. Now you can simply click and drag to copy files from the harddisk to the usb drive.

5 Data backup - Alternative Mount the drives If Knoppix failed to auto-mount the drives then you must use terminal to manually mount them. 1) Click the terminal icon at the bottom left of the screen 2) Type "su" and press enter. Type "fdisk -l" and press enter 3) Take note of which one is the harddisk (It should read HPFS/NTFS under System and have a much larger disk size). In this case the harddisk is /dev/sda1 4) When you mount a device you first enter the program to mount with (such as ntfs-3g) then you enter the device (dev/sda1) then you enter where to mount it to (/mnt/sda1). 5) Type "ntfs-3g /dev/sda1 /mnt/sda1" and press enter (you have now mounted the harddisk) 6) Looking at the result from "fdisk -l", take note of which is the usb drive. In this case, the usb drive we want to use is /dev/sdc1. 7) Type "mount dev/sdc1 /mnt/sdc1" (you have now mounted the usb drive) 8) Now that the dirves are mounted you should be able to copy the data graphical as illustrated above in "Data backup" (substitute /media/ for /mnt/). If you are unable to copy the data graphically, below are the steps to copy data via terminal. Copy data

6 1) Open terminal 2) You want to navigate to where you mounted the usb drive (in this example we mounted it to /mnt/sdc1". You use the command "cd" to navigate directories. Type "cd /mnt/sdc1" and press enter 3) Type "ls" and press enter. This lists the files in the directory. Files are green, folders and blue. There is a folder called "Documents" on the usb drive, that is where we are going to copy the files to 4) Now we want to navigate to the harddisk. We mounted to "/mnt/sda1". Type "cd /mnt/sda1" and press enter 5) Now type "ls" and press enter to see the files on the harddisk. Because it is mounted as NTFS the files are green and the folders and blue with a green background. 6)You can navigate into directories by typing "cd <directory name>". For example, to enter the "dell" folder we would type "cd dell" and press enter (note: folders with spaces in the name must be enclosed with quotations). To then list the files in that folder you type "ls" and then press enter. To return "up" to the previous directory type "cd.." and press enter. 7) We are going to copy the file "boot.ini" to the "Documents" folder on the usb drive. Type "cp boot.ini /mnt/sdc1/documents" and press enter. 8) Now navigate to the "Documents" folder on the usb drive by type "cd /mnt/sdc1/documents" and pressing enter. 9) Type "ls" to view the files in the folder. We can see that boot.ini has been successfully copied to the "Documents" folder on the usb drive. Copy entire folders 1) To copy an entire folder, navigate to the directory where the folder is located 2) Use the command "du -hs" to see how large the folder is 3) Use the command "cp -r <folder to copy> <location to copy to> 4) Look at the example screenshot to see the process of copying an entire folder. Unmouting the drives (shutting down)

7 1. You have finished copying all the data, now it is time to unmount the drives and turn off the machine. Use the command "umount <drive to unmount> <where the drive is mounted>". In this case we use "umount /dev/sda1 /mnt/sda1". The harddisk is now unmounted. To unmount a plug and play device like the usb drive we add the switch "-l" to the command. In this case we type "umount -l /dev/sdc1 /mnt/sdc1" and we have now unmounted the usb drive. To shut down the machine we type "shutdown -h now" and press enter. When the machines prompts you to eject the cd and press enter, do so. We're now finished backing up data via Linux. Sources and Relevant Links ImgBurn Download Knoppix Download #top

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems This is Worksheet and Assignment 12 This is a combined Worksheet and Assignment.. Quizzes and tests may refer to work done in this Worksheet and Assignment; save your answers. You will use a checking program

More information

Setting Up a Linux Operating System

Setting Up a Linux Operating System Name: Setting Up a Linux Operating System We will be using the Linux operating system for most of our practical work in this class. Knoppix is a live CD distribution of Linux, based on the Debian distribution.

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

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

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2 Student Name: Lab Section: Disks, Partitions, and File Systems - Part 2 of 2 1 Due Date - Upload to Blackboard by 8:30am Monday April 9, 2012 Submit the completed lab to Blackboard following the Rules

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

when you have the legal and written permission of the person or organization you are assisting. In

when you have the legal and written permission of the person or organization you are assisting. In 2 Defense against the Black Arts when you have the legal and written permission of the person or organization you are assisting. In summary, hacking is a fun hobby that can turn into a lucrative career

More information

Ftp Get Command Line Windows 7 Bootable Usb

Ftp Get Command Line Windows 7 Bootable Usb Ftp Get Command Line Windows 7 Bootable Usb Using WinPE 3.1: Built from Windows 7 SP1 code base. _Burn c:/bitpe_x64.iso to an optical disk or copy it to a Bootable USB Flash Drive, refer step 9_ Walkthrough

More information

Lab E2: bypassing authentication and resetting passwords

Lab E2: bypassing authentication and resetting passwords Lab E2: bypassing authentication and resetting passwords TTM4175 September 7, 2015 The purpose of this lab is to learn about techniques for bypassing the authentication and access control of Windows and

More information

Ftp Get Command Line Windows 7 Bootable Usb

Ftp Get Command Line Windows 7 Bootable Usb Ftp Get Command Line Windows 7 Bootable Usb How to make Windows 7 bootable install USB stick Open command prompt as administrator - Right click on Start _ All Programs _ Accessories _ Command. 7. Command

More information

v5: How to restore a backup image

v5: How to restore a backup image This article describes how to restore a backup image Restoring a backup image is very simple using Macrium Reflect. If the image contains only data, it is a matter of restoring it back to its original

More information

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS)

Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) (434) 924-7988, RRH 219 helpdesk@comm.virginia.edu Installation Guide: VirtualBox, Windows 10, and Microsoft Visio (Mac OS) Prerequisites: Verify that your installation of OS X and Safari have the most

More information

Manually Mount Usb Flash Drive Linux Command Line Fedora

Manually Mount Usb Flash Drive Linux Command Line Fedora Manually Mount Usb Flash Drive Linux Command Line Fedora This page explains how to use USB drives, like external hard disks and USB flash By default, storage devices that are plugged into the system mount

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

Linux Manually Mounting External Hard Drive Mac Terminal

Linux Manually Mounting External Hard Drive Mac Terminal Linux Manually Mounting External Hard Drive Mac Terminal After the cd /Volumes command when I type ls it shows me my hard drive name twice, with Filesystem Size Used Avail Capacity iused ifree %iused Mounted

More information

How To Install Windows Updates 8 From Usb

How To Install Windows Updates 8 From Usb How To Install Windows Updates 8 From Usb Drive Xp Iso This method doesn't work for Windows XP bootable USB drive. But, if you want to make a bootable drive of Windows 8, Windows 8.1 or Windows 10, you'll

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

Manually Mount Usb Flash Drive Ubuntu Server

Manually Mount Usb Flash Drive Ubuntu Server Manually Mount Usb Flash Drive Ubuntu 12.04 Server 4 answers, How to access a usb flash drive from the terminal? (How can I mount a flash drive manually?) SSH Commandline - Ubuntu x64 dedicated server

More information

Veritas System Recovery 18 Linux Edition README

Veritas System Recovery 18 Linux Edition README Veritas System Recovery 18 Linux Edition README ===================================================================== ====== Veritas(TM) System Recovery 18 Linux Edition README =====================================================================

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 8.1 This tutorial will walk you through how to create a bootable USB drive to enter into a WINPE

More information

Flash Drive Won't Mount Windows 7

Flash Drive Won't Mount Windows 7 Flash Drive Won't Mount Windows 7 So after inserting the flash drive, if I go to Start _ Computer, I won't see anything there for Windows 7 Professional doesn't mount my usb flash drive anymore. I deleted

More information

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage CompTIA Linux+ Guide to Linux Certification Fourth Edition Chapter 2 Linux Installation and Usage Objectives Prepare for and install Fedora Linux using good practices Outline the structure of the Linux

More information

Once your USB drive is formatted for the FAT32 file system it can be mounted and tested on the GESBC To do this, use the following command:

Once your USB drive is formatted for the FAT32 file system it can be mounted and tested on the GESBC To do this, use the following command: GESBC-9302 Development With a USB Drive Paul H. Muller - Documatrix www.documatrix-usa.com ulx@linuxmail.org Disclaimer: The programs and procedures described here have been tested and are thought to be

More information

Manually Mount Usb Flash Drive Ubuntu Server 12.04

Manually Mount Usb Flash Drive Ubuntu Server 12.04 Manually Mount Usb Flash Drive Ubuntu Server 12.04 USB storage devices have the enormous advantage that for the most part they By default, disk drives do not auto-mount in Ubuntu Server Edition. Sometimes,

More information

Windows Method Using Linux Live CD and Gparted

Windows Method Using Linux Live CD and Gparted Contents 1 Formatting and Partitioning USB Storage for DD-WRT 2 Windows Method Using Linux Live CD and Gparted 2.1 Linux Command Line Method 3 Formatting the /opt, /jffs and Data Partitions, and preparing

More information

Hard Drive Recovery Using SystemRescueCD Michael Ward 4/1/2008 Introduction SystemRecoveryCD is a bootable live CD featuring a version of Linux specifically created to recover data from damaged or infected

More information

Manually Mount Usb Flash Drive Linux Command Line Redhat

Manually Mount Usb Flash Drive Linux Command Line Redhat Manually Mount Usb Flash Drive Linux Command Line Redhat How to Format USB in Linux using Command Line. This article will help you to format USB Flash drive in Ubuntu systems via Command line. So first

More information

By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6. How to Setup Pandaboard ES Software Environment for UAV Project

By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6. How to Setup Pandaboard ES Software Environment for UAV Project Application Notes By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6 How to Setup Pandaboard ES Software Environment for UAV Project Installation of Ubuntu Official tutorial can be found: http://omappedia.org/wiki/ubuntu_pre-built_binaries_guide

More information

Intel Solid State Drive Firmware Update Tool

Intel Solid State Drive Firmware Update Tool Intel Solid State Drive Firmware Update Tool Software Version 3.0.0 or later Document Number: 322570-011US Intel disclaims all express and implied warranties, including without limitation, the implied

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

Macrorit Partition Expert 4.3.5

Macrorit Partition Expert 4.3.5 Content Macrorit Partition Expert 4.3.5... 1 User Manual... 1 Welcome... 1 About Macrorit Partition Expert... 1 Main Features... 1 Advanced Features... 1 Tools... 2 Unique Technology... 2 System Requirements:...

More information

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

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

More information

DOWNLOAD PDF CREATOR FOR WINDOWS 8 64 BIT

DOWNLOAD PDF CREATOR FOR WINDOWS 8 64 BIT Chapter 1 : Media Creation Tool x64 - Windows 8 Downloads If you need to install or reinstall Windows, you can use the tools on this page to create your own installation media using either a USB flash

More information

Ubuntu Installation Manually Partition Windows 7 Create System Reserved

Ubuntu Installation Manually Partition Windows 7 Create System Reserved Ubuntu Installation Manually Partition Windows 7 Create System Reserved Created a new partition and installed Windows 7. /dev/sda1 - fat32 - Recovery Partition // /dev/sda2 - ntfs - System Reserved //

More information

Full System Restore Manually Windows 7 No Disk

Full System Restore Manually Windows 7 No Disk Full System Restore Manually Windows 7 No Disk Time to Complete: 20-30 Minutes. Video (English Only) - How to use System Restore within Windows 7 with a small amount of hard disk space reserved for reinstalling

More information

Partitioning and Formatting Guide

Partitioning and Formatting Guide Partitioning and Formatting Guide Version 1.2 Date 05-15-2006 Partitioning and Formatting Guide This guide is designed to explain how to setup your drive with the correct partition and format for your

More information

Format Hard Drive After Install Ubuntu From Usb External

Format Hard Drive After Install Ubuntu From Usb External Format Hard Drive After Install Ubuntu From Usb External Will the files on my external hard drive be deleted when I use it on Ubuntu (since I It will allow you to select your manually created partition

More information

Manual Format Flash Drive Mac And Pc Disk Utility

Manual Format Flash Drive Mac And Pc Disk Utility Manual Format Flash Drive Mac And Pc Disk Utility On a Mac the program of choice is Disk Utility, something supplied by Apple. drives in MS- DOS (FAT) format so that they'll work with both Mac and PC systems.

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

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

C A S P E R T ECH EDITION 5.0 USER GUIDE

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

More information

LinuxPPC Installation Manual for MIT

LinuxPPC Installation Manual for MIT LinuxPPC Installation Manual for MIT By Brian Fisher, panda@mit.edu The purpose of this manual is to allow Mac users here at MIT to run LinuxPPC so they can do work that would otherwise necessitate the

More information

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks SANS Institute - Operations Essentials Operating System Installation Guidelines The following document guides you step-by-step through the process of creating a dualboot system. Even if you do not use

More information

DUAL OS INSTALLATION

DUAL OS INSTALLATION Ex.No:15 Date: DUAL OS INSTALLATION Aim: To install and configure Ubuntu OS alongside Windows as installing dual OS. PROCEDURE: 1. Backup your Windows partition To open the Dell Backup and Recovery software

More information

Instructions For Reformatting A Hard Drive >>>CLICK HERE<<<

Instructions For Reformatting A Hard Drive >>>CLICK HERE<<< Instructions For Reformatting A Hard Drive Windows 7 Fat32 1tb Make external harddrive compatible with mac and windows computer, How to format using. This happened once before and reformatting fixed it

More information

USB 2.0 Multi-Plus Card Reader/Writer. User s Manual

USB 2.0 Multi-Plus Card Reader/Writer. User s Manual USB 2.0 Multi-Plus Card Reader/Writer User s Manual Copyright Statement No part of this publication may be reproduced in any form by any means without the prior written permission. Other trademarks or

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

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1

NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 NETW 110 Lab 4 Using eth0 Configuration Mounting Drives and Devices Page 1 Objective At the conclusion of this lab, the student will be able to perform necessary post-installation hardware configuration

More information

Lab #5 Guide: Installing Ubuntu as a Virtual Machine

Lab #5 Guide: Installing Ubuntu as a Virtual Machine Lab #5 Guide: Installing Ubuntu as a Virtual Machine CTEC1863/2018F Operating Systems Mike Boldin Tools, Materials and Equipment Oracle VirtualBox software official site: https://www.virtualbox.org/wiki/downloads

More information

Documentation. OTRS Appliance Installation Guide. Build Date:

Documentation. OTRS Appliance Installation Guide. Build Date: Documentation OTRS Appliance Installation Guide Build Date: 12/10/2014 OTRS Appliance Installation Guide Copyright 2001-2014 OTRS AG This work is copyrighted by OTRS AG. You may copy it in whole or in

More information

Windows 7 Manual Partition Hard Drive During Install Xp

Windows 7 Manual Partition Hard Drive During Install Xp Windows 7 Manual Partition Hard Drive During Install Xp There are plenty of free ISO writers if you have Vista or XP. If you're using a spare hard drive, delete all partitions or simply choose an Step

More information

3 INSTALLING WINDOWS XP PROFESSIONAL

3 INSTALLING WINDOWS XP PROFESSIONAL INSTALLING WINDOWS XP PROFESSIONAL.1 Preparing for installation Objectives.1.1 Windows XP Professional Hardware Requirements.1.2 Hardware Compatibility List (HCL) check.1. Hard Disk Partition.1.4 Required

More information

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

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

More information

ELE409 SPRING2018 LAB0

ELE409 SPRING2018 LAB0 ELE409 SPRING2018 LAB0 Getting familiar with the LXDE system Objectives: Pre-Lab: 1. Burn the linux system onto a micro-sd card 2. Get familiar with basic linux commands 3. Be able to communicate with

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

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

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Operating Systems Lab 1 Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Oracle VirtualBox is a cross-platform virtualization application. It installs on your existing

More information

Topic: Dropbox. Instructional Technology Services Dropbox Faculty Help. Dropbox Features: Minimum Requirements: Create a Dropbox Account

Topic: Dropbox. Instructional Technology Services Dropbox Faculty Help. Dropbox Features: Minimum Requirements: Create a Dropbox Account Instructional Technology Services Dropbox Faculty Help Topic: Dropbox Dropbox is a free service that lets you save your documents, photos and videos. You can access your files anywhere using any computer,

More information

How To Reinstall Grub In Windows 7 Without Losing Data And Programs

How To Reinstall Grub In Windows 7 Without Losing Data And Programs How To Reinstall Grub In Windows 7 Without Losing Data And Programs So if I install Windows 7 using CD again, will I lose Ubuntu? then yes you will lose Ubuntu, however if you reinstall Windows without

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

How To Startup Windows Service Windows 7. Repair Dual Boot >>>CLICK HERE<<<

How To Startup Windows Service Windows 7. Repair Dual Boot >>>CLICK HERE<<< How To Startup Windows Service Windows 7 Repair Dual Boot Boot Repair Tool will repair BCD, fix dual-boot or multi-boot problems in by fixing Boot Manager / Loader on BIOS / UEFI firmware on Windows 8.1

More information

CTEC1863/2018F Bonus Lab Page 1 of 5

CTEC1863/2018F Bonus Lab Page 1 of 5 CTEC1863/2018F Bonus Lab Page 1 of 5 Bonus Lab: OpenSUSE Linux Rescue In this lab, we will install an OpenSUSE virtual machine. However, both the non-root user and the root passwords are unknown. To fix

More information

VIRTUAL MACHINES. By Seth Lemanek

VIRTUAL MACHINES. By Seth Lemanek VIRTUAL MACHINES By Seth Lemanek WHAT IS A VIRTUAL MACHINE? Software meant to emulate hardware for the purpose of hosting bare metal software like Operating Systems Used for creating virtual environments

More information

Manually Mount External Hard Drive Windows 7 Install

Manually Mount External Hard Drive Windows 7 Install Manually Mount External Hard Drive Windows 7 Install This article explains how to physically connect, disconnect, and install a WD external drive to a computer running Windows 8/7/Vista/XP or Mac OSX 10.4.x.

More information

Virtual Workplace Personal Device Client Installation Instructions

Virtual Workplace Personal Device Client Installation Instructions Virtual Workplace Personal Device Client Installation Instructions 1 Table of Contents About this Installation Guide... 3 Client Overview... 3 VMware Horizon View Clients... 3 UniPrint Clients... 3 Client

More information

Mac Os X Manually Mounted Usb Drive Read Only

Mac Os X Manually Mounted Usb Drive Read Only Mac Os X Manually Mounted Usb Drive Read Only I sometimes need to mount USB drives that are NTFS formatted and write to them. for people who would still want to see the missing partition in read only mode.zone/hackintoshdownloads/download/506-free-ntfs-driver-for-mac-os-x/.

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

Instruction How To Use Laptop As Monitor For Desktop Windows 7

Instruction How To Use Laptop As Monitor For Desktop Windows 7 Instruction How To Use Laptop As Monitor For Desktop Windows 7 In this article, I'll show you the process in Windows XP and Windows 7, the to split programs on the second monitor using Windows XP or Windows

More information

SQL Server Express 2017 Installation Guide. By Engin Calisir, 06/22/2018

SQL Server Express 2017 Installation Guide. By Engin Calisir, 06/22/2018 SQL Server Express 2017 Installation Guide By Engin Calisir, 06/22/2018 Table of Contents Generally... 2 SQL Overview... 3 Hardware and Software Requirements... 3 Other SQL Editions... 3 PART I... 4 Downloading

More information

Windows 7 Handbook Microsoft Store As An Iso

Windows 7 Handbook Microsoft Store As An Iso Windows 7 Handbook Microsoft Store As An Iso Files Follow the installation wizard instructions to finish installing Office. You should only choose the ISO file type if you want to install Windows 7 on

More information

Manual Format Windows Xp Without Cd Drive Or Usb

Manual Format Windows Xp Without Cd Drive Or Usb Manual Format Windows Xp Without Cd Drive Or Usb This 2015 article explains how to reinstall XP on a Netbook without an optical drive. I dug out the Windows XP factory restore disc and settled down with

More information

Laplink DiskImage : Server Edition

Laplink DiskImage : Server Edition 1 Laplink DiskImage : Server Edition Laplink Software, Inc. Customer Service/Technical Support: Web: http://www.laplink.com/help E-mail: CustomerService@laplink.com Laplink Software, Inc. Bellevue Corporate

More information

Install and setup TrueCrypt

Install and setup TrueCrypt Install and setup TrueCrypt Install and setup TrueCrypt This guide is for organisations and individuals who wish to use TrueCrypt to secure their computer(s) and/or portable USB drives. It explains how

More information

Web Console Setup & User Guide. Version 7.1

Web Console Setup & User Guide. Version 7.1 Web Console Setup & User Guide Version 7.1 1 Contents Page Number Chapter 1 - Installation and Access 3 Server Setup Client Setup Windows Client Setup Mac Client Setup Linux Client Setup Interoperation

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

Setting up Ubuntu with VirtualBox

Setting up Ubuntu with VirtualBox Setting up Ubuntu with VirtualBox Following is an install guide for setting up VirtualBox with Ubuntu 16.04.3 on your system. If you have problems, more detailed instruction and troubleshooting tips can

More information

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE IRONKEY D300S SECURE USB 3.0 FLASH DRIVE User Guide Document No. 48000130-001.A01 D300S Page 1 of 27 Table of Contents About This Manual... 3 System Requirements...3 Recommendations...3 Setup (Windows

More information

This is Lab Worksheet 7 - not an Assignment

This is Lab Worksheet 7 - not an Assignment This is Lab Worksheet 7 - not an Assignment This Lab Worksheet contains some practical examples that will prepare you to complete your Assignments. You do not have to hand in this Lab Worksheet. Make sure

More information

Net Start Error Code 5 Windows 7 Boot From Disk

Net Start Error Code 5 Windows 7 Boot From Disk Net Start Error Code 5 Windows 7 Boot From Disk 4.1 If you can boot into Windows 7, 4.2 If you can't boot into Windows 7 services used by the utility) returned a failure, Code 5 means a command syntax

More information

Parallels Management Console

Parallels Management Console Parallels Management Console Getting Started Guide Copyright 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels

More information

alcasar_documentation Documentation

alcasar_documentation Documentation alcasar_documentation Documentation Release 0.1 Bettyna Bourcier March 29, 2016 Contents 1 Installation 1 1.1 Introduction............................................... 1 1.2 Installation................................................

More information

System Manager Unit (SMU) Hardware Reference

System Manager Unit (SMU) Hardware Reference System Manager Unit (SMU) Hardware Reference MK-92HNAS065-02 Notices and Disclaimer Copyright 2015 Hitachi Data Systems Corporation. All rights reserved. The performance data contained herein was obtained

More information

CST Algonquin College 2

CST Algonquin College 2 Partitions Lab due dates: Labs are due as specified usually on Page1 of the Lab document Lab due dates are expressed as: 10 min before the end of the lab period during a certain week There is a grace period

More information

Some reasons to repair your boot-loader might include installing Microsoft Windows after you have installed Ubuntu, adding or removing a hard drive.

Some reasons to repair your boot-loader might include installing Microsoft Windows after you have installed Ubuntu, adding or removing a hard drive. How To Recover Linux After Install Windows 7 Over If you have Windows 7 dual booting with Ubuntu and you want Windows 7 To do this I am going to show you how to create a system recovery disk, how to After

More information

Manual Format Window Xp Without Cd Or Usb Drive

Manual Format Window Xp Without Cd Or Usb Drive Manual Format Window Xp Without Cd Or Usb Drive 1.1 Restore with installation CD, 1.2 Restore without installation CD This is the original disc that has Windows XP, Vista, 7 or 8. Alternatively, these

More information

Install New External Hard Drive Windows 7 Upgrade After Installing >>>CLICK HERE<<<

Install New External Hard Drive Windows 7 Upgrade After Installing >>>CLICK HERE<<< Install New External Hard Drive Windows 7 Upgrade After Installing You can re-use a drive when performing a major upgrade or move it to a new computer. Find your Windows install disc or, if you don't have

More information

Physical & Virtual Workload Migration to HC3 with Clonezilla Live

Physical & Virtual Workload Migration to HC3 with Clonezilla Live Physical & Virtual Workload Migration to HC3 with Clonezilla Live Quickstart Guide Any information listed here is not a substitute for the product s User Guide or Support and is not covered under the ScaleCare

More information

INSTALLATION. Security of Information and Communication Systems

INSTALLATION. Security of Information and Communication Systems Security of Information and Communication Systems INSTALLATION Table of contents 1.Introduction...2 2.Installation...3 2.1.Hardware requirement...3 2.2.Installation of the system...3 2.3.Installation of

More information

Link Gateway ISO Installation Manual

Link Gateway ISO Installation Manual Link Gateway ISO Installation Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

Format Hard Drive After Install Ubuntu From Usb

Format Hard Drive After Install Ubuntu From Usb Format Hard Drive After Install Ubuntu From Usb is it possible to format and partition the new hdd (external to my laptop, and connected to my laptop via sata-usb adapter), and install Ubuntu on the new

More information

How To Resize ext3 Partitions Without Losing Data

How To Resize ext3 Partitions Without Losing Data By Falko Timme Published: 2007-01-07 17:12 How To Resize ext3 Partitions Without Losing Data Version 1.0 Author: Falko Timme Last edited 12/31/2006 This article is about

More information

Installation of PC Wrapper

Installation of PC Wrapper Installation of PC Wrapper Requirement for installing PC Wrapper: at least 2GB RAM at least 10GB hard drive tested with: PC Wrapper version 1.0-amd64 10.00 build 034 Here is a step-by-step guide to install

More information

GO! Finder V1.4. User Manual

GO! Finder V1.4. User Manual GO! Finder V1.4 User Manual 1 Tables of Contents GO! Finder Introduction-------------------------------------------------------------------------------------1 System Requirements ---------------------------------------------------------------------------------------2

More information

Manually Mount External Hard Drive Windows 7 Install Wd

Manually Mount External Hard Drive Windows 7 Install Wd Manually Mount External Hard Drive Windows 7 Install Wd I've just upgraded to Yosemite, and none of my external (USB) hard drives are mounting (they don't even appear in Disk Utility). WAIT, I don't have

More information

Get VirtualBox. VirtualBox/Ubuntu Setup. Go to and select Downloads.

Get VirtualBox. VirtualBox/Ubuntu Setup. Go to  and select Downloads. Get VirtualBox Go to www.virtualbox.org and select Downloads. 1 Download the current release of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's Windows 7. Download the

More information

C A S P E R TECH EDITION 10 USER GUIDE

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

More information

Windows XP - MVX Printer Driver Installation

Windows XP - MVX Printer Driver Installation Windows XP - MVX Printer Driver Installation READ FIRST! This document assumes you have already downloaded the driver installer ZIP package from either the Universal Laser Systems website or Universal

More information

Manually Mount External Hard Drive Win 7 Not Showing Up

Manually Mount External Hard Drive Win 7 Not Showing Up Manually Mount External Hard Drive Win 7 Not Showing Up I've just upgraded to Yosemite, and none of my external (USB) hard drives are Re: External USB Hard Drive not showing up, after Yosemite update,

More information

Install Guide Windows 7 Professional 32 Bit Iso

Install Guide Windows 7 Professional 32 Bit Iso Install Guide Windows 7 Professional 32 Bit Iso File An ISO file combines all the Windows installation files into a single uncompressed file. Windows XP SP2, Windows Vista, or Windows 7 (32-bit or 64-bit).

More information

Cassette2CD Wizard 2.05 User's Manual

Cassette2CD Wizard 2.05 User's Manual Cassette2CD Wizard 2.05 User's Manual Table of Contents 1. Installation Instructions a. Connecting tape-deck to the computer b. Installing the Software 2. Using Cassette2CD Wizard a. Setting up and Testing

More information