Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 4

COMPUTER SYSTEMS SERVICING 12

SECOND QUARTER
Activity No. 10 and
Day: 1 -4
Quarter: 2 Week: 6 11
Competency: Installation operating system(TLE_IACSS9- 12ICCS-IIIa-e-31)
The learners shall be able to install Operating System in accordance
with established installation procedures and to comply with end-user
Objective: requirements

Prepare customized installers in


accordance with software utilization guide
Topic: and end user agreement
Reference CG, Alternative Delivery Mode @ r10
Copyright: For classroom use only

CONCEPT NOTES
LAUNCHING THE CD/DVD BURNING SOFTWARE

The instructions below use Windows operating system and CDBurner XP as CD/DVD Burning software.

CDBurnerXP is a free burning utility that works on both Windows XP and Windows Vista.

Procedures:

1. Double-click the CDBurnerXP application


icon. From here you will get this little pop up. This
image lets you select the project that you wish to start.
Click on the “Burn ISO image” option then click
OK. This will take you to the main screen of
CDBurnerXP.

2. In the next dialog, select a file using


the button. Under the Device
dropdown list, the DVD will be selected
automatically.

Note: Usually, you specify Finalize


disc and Disc at Once for ISO
images.

3. Click the Burn disc button. This will


start the burn process. Just wait for it
to be completed. After that is finished
you have completed the burn of the
ISO file with CDBurnerXP.

BOOTABLE USB DRIVE

A bootable USB drive is any USB drive that contains an "image" or exact copy of an operating system.

POSSIBLE USES OF A BOOTABLE USB DRIVE

1. Boot after a PC emergency


2. Use a recovery system to repair your PC
3. Store an image of the operating system
1
4. Upgrade an old operating system to Windows 10
5. “Clean” reinstallation of the operating system
6. Use a “portal operating system” on a foreign computer

HOW CAN YOU MAKE A BOOTABLE USB DRIVE

Most commercial USB drive models are only loaded with a single file system like FAT32 or exFAT
file system. They don’t have the master boot record or MBR that is required for booting most PCs. To
make a USB drive bootable, you have to do it on your own.

REQUIREMENTS IN MAKING A BOOTABLE USB DRIVE

 Access to Windows DiskPart or a third-party equivalent


 USB 3.0 with at least 8GB of storage
 An ISO file of the OS you want to install or use to repair

FILE FORMATS

When you are creating a bootable USB drive you have two file format options:
1. FAT32 (File Allocation Table)
2. NTFS (New Technology Files System)

FAT32 can only support files up to 4GB and most of the Windows OS 8/8.1/10 will require around 3.83GB or more in
bootable drive. In a typical 4GB USB drive, you get around 3.72/3.73GB usable space. Hence FAT32 is not
recommended.

FAT32 can be used if you are installing Windows XP as it requires around 650–750MB. It is read/write compatible
with a majority of recent and recently obsolete operating systems, including DOS and Windows XP, Mac OS X, and
UNIX-descended operating systems including Linux and FreeBSD.

NTFS format is widely used because it can support any file size. So you can easily install OS with large file size.

Also, Linux OS requires FAT/FAT32 format media as Linux does not support NTFS format. Therefore, NTFS format
is limited to Windows OS only.

You can make a USB drive bootable through any of these methods:
1. Create a bootable USB with external tools
2. Creating bootable USB drive with the Windows utility program DiskPart

A. Make a bootable USB drive with the Windows utility program DiskPart

You can use Command Prompt in Windows to create a bootable USB drive on all operating systems. It is
important to be careful in typing the each command line to avoid errors along the process.

Procedures:
Note: The words in bold are the actual commands that must be typed in the
command prompt.

1. Insert the USB drive into your computer’s USB port. Make sure that it is recognized by your computer.

2. Search for the “cmd” application in the Windows start menu, right-click on the item, and select
“Run as administrator” from the context menu. This opens a small window with white text on a
black background. You may also use the keyboard shortcut Window logo + R to run the command
prompt.

3. Type the command “diskpart” and confirm your input with the enter key (you’ll also do this after
every other entered command). This starts the storage device manager.
4. Enter the command “list disk” to display all available storage devices. It starts with Disk 0 and the
succeeding Disk Numbers depend on how many drives are detected in your computer.

5. You can recognize your USB by its storage capacity, and it’s usually listed as “disk 1”. In the
system partition, “disk 0” is usually your PC, so a hard drive or solid state drive in your computer.

6. Based on the assumption that your USB has the label “disk 1”, enter the command “sel disk 1” to
select it (or the corresponding “disk 2”, etc.).

2
7. Enter the command “clean” to delete all files from the USB.
8. Enter the command “create partition primary” to create a main partition.
9. Select the newly created main partition by typing the command “sel par 1”.
10. Activate the partition with the command “active”.
11. Format the USB with the command “format fs=ntfs quick”.Formatting may take a while. You can
track its progress in the percentage bar
12. As soon as the process is finished, enter the command “assign” to automatically assign a drive
letter (for example “E:”) to your USB.
13. Enter “exit” to close DiskPart, and then “exit” again to close the command prompt.

In the command prompt, it should look something like this:

C:\WINDOWS\system32>diskpart
Microsoft Dikspart version 10.0.10240
Copyright <C> 1999-2013 Microsoft Corporaton.
On computer: GOCOBOOK
DISKPART>list disk

Disk ### Status Size Free Dyn GPT


------------ ----------------- ------------ ------------ ----- -------
Disk 0 Online 931 GB 0B *
Disk 1 Online 7632 MB 0B

1 DISKPART>select disk 1
2 Disk 1 is now the selected disk
3 DISKPART> clean
4 Diskpart succeeded in cleaning the disk.
5 DISKPART> create partition Primary
6 Diskpart succeded in creating the specified partition.
7 DISKPART> select partition 1
8 Partition 1 is now the selected partition.
9 DISKPART> active
10 Diskpart marked the current partition as active.
11 DISKPART>format fs= ntfs quick
12 100 percent completed
13 Diskpart successfully formatted the volume
14 DISKPART> assign
15 Diskpart successfully assigned the drive letter or mount point.
16 DISKPART> exit

To finish the process, you just have to copy the Windows ISO file to a bootable USB stick through:
 Basic drag-and-drop (or copy-paste)
 Drag all setup files from the installation disc into the USB drive (use the folder options to display all
of the hidden files first)
 For a source media with the drive letter “D:” and a USB drive with the letter “G:”, the corresponding
command would look as follows: “xcopy D:\*.* G:\*.* /S /E /F” (all of the spaces are intentional).

Just in case there is an error message in the command prompt after typing a command, just re-type the correct
command. Probably the reasons behind that are misspelled words and incorrect placement of blank spaces.
B. Create a bootable USB with external tools

There are many freeware programs suitable for all operating systems (including Linux) that
can take over the tasks of the otherwise manual device management. Some of the most popular are
Rufus, WinUSB, and UNetbootin. Each of these tools is made up of a single, very small file that you can
download directly and start without installation.

I. Bootable USB with Rufus

Rufus supports UEFI (“Unified Extensible Firmware Interface”), a new mainboard firmware that
replaced the old BIOS and can already be found on almost all newer computers. Just follow the
procedures below to create a bootable USB device using Rufus.

Procedures:

1. Insert the USB Drive to any USB Port in your PC.


2. Double click the Rufus Application to launch the program.

3
3. Once it is open, make sure the USB Drive you inserted can be seen under
Device.
4. On the Boot Selection Menu, Click Select.
5. Browse for your Windows Image file in your PC.
6. Click Start. When prompted with a Warning: ALL DATA… Click OK.
7. When the status bar reached 100 percent or Ready, click Close.
3

5
7

ACTIVITY 1

Test I.
Instructions: Read and analyze the Diskpart commands from Line 1 to Line 16. Write down the line numbers that
contain errors. Please note that extra spaces should not be considered as errors.

DISKPART>list disk

Disk ### Status Size Free Dyn GPT


------------ ----------------- ------------ ------------ ----- -------
Disk 0 Online 931 GB 0B *
Disk 1 Online 7632 MB 0B

1 DISKPART>select disk 0
2 Disk 1 is now the selected disk.
3 DISKPART> clean
4 Diskpart succeeded in cleaning the disk.
5 DISKPART> crete partion Primary
6 Diskpart succeded in creating the specified partition.
7 DISKPART> select partition1
8 Partition 1 is now the selected partition.
9 DISKPART> active
10 Diskpart marked the current partition as active.
11 DISKPART>format fs= ntfs quick
12 100 percent completed
13 Diskpart successfully formatted the volume
14 DISKPART> asign
15 Diskpart successfully assigned the drive letter or mount point.
16 DISKPART> exit

Test II.
Instruction: Re-write Lines 1 to 16 using the correct commands on your answer sheet.

ACTIVITY 2

Instructions: Arrange the steps in creating a bootable USB using Rufus. Write 1 for the first step, 2 for the second
step, and so on.

_____1. Click the Start button. When prompted with a Warning: ALL DATA… Click OK.
_____2. In Rufus, make sure the USB Drive you inserted can be seen under Device.
_____3. Plug in the USB Drive to any USB Port in your personal computer.
_____4. Look for the Windows Image File (ISO) and select it.
_____5. On the Boot Selection Menu, click the Select button.
_____6. When the status bar reached 100 percent or Ready, click Close.
_____7. Right-click the Rufus Application then select Open to launch the program.
4

You might also like