Lab E2: bypassing authentication and resetting passwords

Size: px
Start display at page:

Download "Lab E2: bypassing authentication and resetting passwords"

Transcription

1 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 Linux machines. The imagined scenario is that you have come across a Windows 7 machine for which you would like to obtain its contents. Unfortunately, the computer is password protected and you do not know the password. Your task will be to bypass the authentication mechanisms of Windows in order to get access to the machine. In addition, you will also learn how to bypass the authentication mechanisms in Linux as well, demonstrating that bypassing the authentication is not only possible on Windows machines. 1 Bypassing the Windows log in Start the Windows 7 machine in VirtualBox and verify that you cannot access the Lab2 user account without having the password. Shut down the machine again. 1.1 Dual-booting Typically, a computer only has one operating system installed. However, it is fully possible to have multiple operating systems installed on the same machine simultaneously using a technique called dual-booting. In a dual-booting system, two or more operating systems are installed side-by-side on the same physical hard disk, with each OS assigned to its own logical partition on the disk. Alternatively, if the computer has multiple physical hard drives attached to it, each operating system could be installed to its own separate disk. During start up the computer has to decide which operating system to run. If there are multiple IO devices attached to the computer, e.g. CDROM, hard drive, USB, etc., then the computer first has to select which device it should load the operating system from. This is handled by the very first program that runs on your computer, called the BIOS. The BIOS will look at each IO device in turn (the order is configurable), and search for a small program called the boot loader, which is responsible for locating (and running) the actual operating system stored on the device. You have already seen the boot loader of the Kali Linux machine when you did LabE1 (see Figure 1b), and you can simulate the BIOS in VirtualBox by pressing F12 immediately after you start up a virtual machine (Figure 1a). 1

2 (a) The VirtualBox BIOS. (b) The Kali Linux Bootloader (GRUB). Figure 1: BIOS and bootloader of the Kali Linux virtual machine. We will use VirtualBox to simulate that we are running a dual-boot system with Windows 7 and Kali Linux installed on their own separate hard disks, but attached to the same machine. We do this by attaching the virtual hard disk containing Windows 7 (i.e., the file Windows 7-disk1.vmdk) to the Kali Linux virtual machine you created in Lab E Attaching the Windows 7 disk to the Kali machine in VirtualBox In VirtualBox, with the Kali Linux VM selected, click on Settings then Storage. Next to the label Controller SATA click on the icon that reads Add Hard Disk (see Figure 2a). (a) Selecting disk. (b) Windows 7 disk attached. Figure 2: Attaching another disk to your Kali Linux virtual machine. Select the option Choose existing disk and find the file that stores the virtual hard drive of your Windows 7 machine, i.e., the file called Windows 7-disk1.vmdk located in 2

3 the folder /courses/ttm4175/windows 7/. Add it to the Kali machine and click OK. Your settings should now look similar to that in Figure 2b. It is important that the Windows 7 virtual machine is turned off while doing this. You have now created a dual-boot system with both Kali Linux and Windows 7 installed on it. However, the bootloader will not have picked up that you have attached a new disk to the computer, so when you start up your (Kali Linux) machine it will still show the boot selection screen of Figure 1b. To fix this, once you are logged into your Kali Linux machine, open up a terminal and type the following: # update-grub This will update the (GRUB) bootloader to also include the Windows 7 disk to the selection screen. If you now reboot your Kali Linux machine (simply type reboot in your terminal), you should see that Windows 7 has been added to the bootloader screen (Figure 3). This makes it possible to boot (i.e. load) Windows 7 as your operating system on the Kali Linux machine (try it out!). Unfortunately, it will not help you in bypassing the login screen. Figure 3: The hard drive containing Windows 7 has been added to the Kali Linux machine s bootloader. 1.3 Mounting the Windows 7 partition within Kali You are now ready to begin bypassing the Windows authentication from within Kali. If you loaded the Windows 7 operating system in the previous section, turn it off and log in to the Kali Linux operating system instead. Once inside, start up a terminal and verify that the Windows 7 disk is successfully detected as a device from within Kali by using the utility program fdisk, which lists information about all the disks and partitions attached to your machine: # fdisk -l 3

4 The output should look similar to that of Figure 4, where Kali has assigned the Windows disk to the device label sdb2. Figure 4: Locating the Windows device. Important! The device labels (sda, sdb, sdc, etc...) that Kali assigns to a disk can be different from system to system. The Windows drive might be assigned to a different label on your machine! Therefore, it is important that you identify the correct device label on your own system. By looking at a combination of the file system ( System in Figure 4), disk size, and the number of partitions on the disk, one can usually recognize the correct label quite easily. Before you can access the contents of the Windows disk you need to mount its file system inside Kali. Typically, plug-and-play peripherals (like USBs, flash drives, etc...) are mounted within the folder /media, whereas hard drives are mounted under /mnt 1 Make a folder called /windows under /mnt and mount the Windows 7 partition in it with the mount command: # mkdir /mnt/windows % create folder to mount the Windows file system # mount /dev/sdb2 /mnt/windows % this will incorporate the Windows file system under the /mnt/windows folder in Kali # ls /mnt/windows The Windows 7 partition is now fully incorporated as a file system within Kali, and you are free to view, edit, move or delete all its files as if they where any regular files in Kali. Can you locate user Lab2 s home folder? Based on this user s documents, what do you guess this user s favorite TV show is? Exploring the partitions on a machine While having the Windows 7 disk attached to the Kali Linux machine in a dual-boot setup, it can be interesting to inspect the 1 This is just a convention. You are free to mount the file system wherever you want. 4

5 different partitions that make up the computer. A very useful program for viewing, creating, modifying and removing partitions on machine is called GParted. Start it by running: # gparted & % the & is to start gparted in process detached from the terminal In its main window it will show you the partitions of the devices attached to your machine. For example Figure 5 shows there are two (virtual) disks attached to the Kali Linux machine, assigned labels /dev/sda (Figure 5a) and /dev/sdb (Figure 5b), respectively. Which one contains the Kali Linux partition and which one contains Windows 7? See Question 1. (a) /dev/sda. (b) /dev/sdb. Figure 5: Exploring the partitions of the Kali Linux machine using GParted. When Kali is running it is trivial to browse the individual filesystems of the partitions attached to it. Go to Places XX GB Filesystem and this will show you all the files of the Windows drive just as if you browsing it from within Windows 7. Can you find user Lab1 s home folder? Create a file on its desktop, then reboot your Kali Linux machine into Windows 7 to see if it shows up in Windows 7 too (recall that user Lab1 has not set a password on its account). 1.4 Changing the user password While having access to the Windows files from within Kali is nice, our next goal is to be able to run Windows 7 normally. To accomplish this we will need to bypass the Windows log in screen. Since we do not know the users password we will simply have to change it! By modifying some crucial system files in Windows from within Kali, we can give ourselves access to a command line prompt with administrator access the next time we boot up Windows 7. So that is what we are going to do next. Make sure that the Windows 7 virtual machine is turned off before continuing! On your Kali Linux machine, with the Windows disk mounted as described in the previous section, change into the System32 directory of the Windows file system from within Kali: 5

6 # cd /mnt/windows/windows/system32 This folder contains many of the most important system files for the Windows operating system. In particular, it contains the system file cmd.exe which controls the terminal in Windows, and also the on-screen-keyboard program osk.exe which allows you to type characters into Windows without having a keyboard. The interesting thing about the on-screen-keyboard utility is that it can be run before you have logged in (Figure 6). Even more interesting is it that programs executed before having logged in are run with administrator privileges! Figure 6: The on-screen-keyboard utility available before having logged in. So what would happen if we were to swap out the osk.exe binary (the on-screenkeyboard) with the cmd.exe binary (the terminal)? Let s find out. Start by moving the real osk.exe executable to a backup file: # mv osk.exe osk.exe.backup % rename the file osk.exe to osk.exe.backup Now copy cmd.exe to osk.exe so that enabling the on-screen-keyboard will actually give us a command prompt instead: # cp cmd.exe osk.exe % overwrite the osk.exe binary with the cmd.exe binary Now restart your machine and select Windows 7 in the boot menu (Figure 3). Choose to log in as user Lab2. Verify that you cannot log in without the password. Now enable the on-screen-keyboard by clicking the little symbol in the bottom left corner. What happens? Hopefully you got what is shown in Figure 7. 6

7 Figure 7: The on-screen-keyboard tricked into giving us a command line prompt with administrator access! In the command prompt type: C:\Windows\system32> whoami The whoami command shows you the username and user privileges that the currently logged in user has. Particularly, in Figure 7, it is shown that you are logged in as the system user which has full administrator privileges. This means that you can now do whatever you like on the system. For example, you can start explorer.exe to get access to the taskbar even when you are not logged in: C:\Windows\system32> explorer.exe Ultimately, however, we want to get normal access to the system, i.e. not mounting it within Kali. The good news is that with your current administrator rights this is easy! Your task is now to change the password of user Lab2 to a password of your choosing, allowing you to log in as normal. Hint: There is a command line utility for Windows called net user which could potentially be useful. To get more information on how to use this command type net user? in the command line window or look it up online. After you have successfully logged in as user Lab2 answer the following: what was the last web sites the user visited? Note: Before you continue to the next section you should revert the change you did to osk.exe. That is, delete the current osk.exe file and rename the backup file osk.exe.backup to osk.exe again. However, since Lab2 does not have administrator 7

8 rights it cannot rename the file, hence it has to be done from within Kali Linux. Reboot the machine; select Kali Linux in the bootloader menu; mount the Windows 7 disk as you did previously; then revert the changes: # mount /dev/sdb2 /mnt/windows # rm /mnt/windows/windows/system32/osk.exe # mv /mnt/windows/windows/system32/osk.exe.backup /mnt/windows/windows/system32/osk.exe 2 Clearing the user password in Windows As an alternative to swapping out system files in order to change the user s password, one can also simply clear it. Your next task is to do exactly that. 2.1 Updating chntpw Windows 7 passwords are stored hashed in the Security Accounts Manager (SAM) database, located in the /Windows/System32/config folder. The SAM file belongs to a special class of Windows files called registry files, which makes up what is known as the Windows Registry. The Windows Registry is used by the Windows operating system to have a central place to store important configuration settings and options. We will manipulate the SAM registry file in order to clear the hashed password of user Lab2. As before, make sure that Windows 7 is mounted within Kali, then go to the following folder containing the SAM file: # mount /dev/sdb2 /mnt/windows # cd /mnt/windows/windows/system32/config # ls The SAM file is stored in a binary format which means that it cannot simply be read by a text editor, but requires a program that understands its format. In order to clear the users password from the SAM file, we will be using a program called chntpw 2. Unfortunately, the version of chntpw that ships with Kali (0.99.6) does not actually work. Thus, we need to replace it with a newer version. First make sure that your Kali Linux machine has Internet access by having the network setting set to NAT 3 ( Settings Network Attached to: NAT ). Then issue the following commands to first remove the old version, then download and installing the new: # apt-get remove chntpw # wget # dpkg -i chntpw_1.0-1_i386.deb % install the new version # rm chntpw_1.0-1_i386.deb % remove the installation file 2 If you want to run this program on your own, e.g. from a bootable USB, you can get a working version from 3 This setting allows a Virtual Machine to share the Internet access of the host computer (i.e. the lab computer) through a process called Network Address Translation. 8

9 2.2 Clearing the Windows password with chntpw Start chntpw in interactive mode by using the -i flag option and read in the SAM file. Note that the SAM file is stored either in upper-case as SAM or in lower-case as sam so choose the name that is used on your system. # chntpw -i sam Now you just have to follow the on-screen instructions as shown in Figure 8. Figure 8: Starting chntpw in interactive mode. In particular, select Option 1 to begin clearing a user password (the number in square brackets denotes the default), then select that you want to clear the password of user Lab2 by entering its RID (03ed in Figure 8). Important: Do not clear the password of the user called Lab3 DO NOT WIPE! duh! Choose Option 1 again to clear the password of user Lab2 (Figure 9). Finally, write these changes to disk by quitting the current context (q) and confirm that you want to save the changes (y). You have now cleared the Lab2 s password! Unmount the Windows partition from Kali Linux before continuing. In order to unmount Windows, you ll have to step of the Windows folders first, so change to your home folder first. 9

10 # cd % return to your home folder # umount /mnt/windows Figure 9: Clearing the password of user Lab2. Reboot the machine and select Windows 7. Hopefully, you should not need to type in any password when logging into the Lab2 account. Important: After you have finished poking around in user Lab2 s personal files, turn off the machine and detach the Windows 7 hard disk from the Kali Linux machine. Go to Settings on your Kali Linux machine and click on Storage. Select the Windows 7 disk and click the Remove attachment... button (Figure 10). Figure 10: Removing the Windows 7 hard drive from the Kali Linux machine. 10

11 3 Bypassing Linux authentication In this section you will learn how to bypass the authentication mechanisms in Linux. 3.1 Importing Lubuntu into VirtualBox We have prepared a virtual machine containing a small variant of Linux, called Lubuntu, in the file /courses/ttm4175/lubuntu.ova. Lubuntu is a lightweight version of Ubuntu, and shares most of its central components with several other popular Linux variants like Ubuntu, Debian, and Kali Linux. Thus, learning how to bypass the authentication mechanisms in Lubuntu will enable you to do the same to all the other variants as well. Start by importing the machine into VirtualBox by clicking File Import Appliance... in the main window of VirtualBox. Find the file Lubuntu.ova in the folder /courses/ttm4175/ and click Import (you can leave all settings at the default). If you boot it up you will be taken to the login screen shown in Figure 11. Figure 11: The login prompt of Lubuntu. 3.2 Running Kali Live In Section 1.4 and 2 we conveniently assumed that both Windows 7 and Kali Linux were installed on the same system so we could access the contents of the Windows 7 disk through Kali. In reality, however, the victim would seldom be so kind as to have installed Kali Linux on the side just for us to exploit! So what to do when Kali Linux is not installed on the machine? The answer is live booting. Live booting means to run an operating system directly from a CD-ROM or USB-drive without being installed to disk. Kali Linux supports live booting from both CD-ROM and USB. To do this you simply plug in the CD/USB containing Kali; restart the computer, and select to boot from CD-ROM/USB. Then 11

12 you have access to all the tools of Kali Linux without having installed anything. Note that while used in this mode, Kali is running entirely from RAM and CD/USB and no changes made to it will persist after it is turned off. We will test the live booting feature by running Kali directly from CD-ROM and use it to bypass the login screen of the Lubuntu machine. We will simulate the CD-ROM in VirtualBox by attaching the Kali Linux ISO file (the one you used to install Kali Linux with in Lab E1) to the virtual CD-ROM tray of the Lubuntu machine. Turn off your Lubuntu machine and click on Settings Storage. We simulate that we are inserting a CD-ROM (containing Kali Live) into the machine by clicking on Add CD/DVD Device (Figure 12). Select Choose disk and locate the Kali Linux ISO file kali-linux-1.1.0a-i386.iso on your host machine. Figure 12: Attaching a (virtual) CD-ROM to the Lubuntu virtual machine. Now start your Lubuntu machine. It will choose to boot from the (virtual) CD-ROM containg Kali Linux instead of the (virtual) hard disk containing the Lubuntu operating system. This will give you the menu shown in Figure 13. Select the Live (686-pae) boot option. If it ever asks for a username or password, then the defaults are root and toor, respectively. 12

13 Figure 13: Running Kali Linux from a live-usb. 3.3 Clearing the log in password on Linux with Kali Live The strategy for bypassing a Linux machine s login prompt is similar to what you did for Windows 7. That is, we first need to mount the Lubuntu partition within the Kali Linux filesystem, then make some changes to the files responsible for handling login data like usernames and passwords. Inside Kali create a mount point for Lubuntu and mount it. Since Lubuntu uses the same type of file system as Kali, be careful that you mount the right partition and not accidentally mount the Kali partition within itself. In Figure 14 the Lubuntu hard drive is assigned to the device /dev/sda and the operating system partition to /dev/sda1. # mkdir /mnt/lubuntu # fdisk -l % Find out which device contains Lubuntu # mount /dev/sda1 /mnt/lubuntu % sda1 in our example -- could be different for you! Figure 14: Finding the device label assigned to Lubuntu within Kali Live. 13

14 With the Lubuntu partition mounted inside of Kali you can modify all its files just as if they were normal files in Kali. Your task now is to make changes to the Lubuntu partition so that the next time you boot it up you will not be required to enter a password in order to log in. On most Linux systems user credentials are stored in two files: passwd and shadow, both located in the /etc folder. What are the contents of /mnt/lubuntu/etc/passwd and /mnt/lubuntu/etc/shadow? Print their contents (See also Question 3). In order to wipe the user s password you have to make one small change to one of these files. Find out which one, and what you have to change, then do it. Verify that you have successfully cleared the user s password by logging in as user ttm4175. After you have bypassed the login screen of Lubuntu, pick a new password using the passwd command line utility (note that this is not the same as the /etc/passwd file!). That is, open a command line window from inside Lubuntu (click the Lubuntu icon in the bottom-left corner and go System Tools UXTerm ) and issue the following command: ttm4175@ttm4175-lubuntu:~$ passwd ttm4175 Enter new UNIX password: Enter your new password. 4 Now take a loot at the contents of /etc/passwd again. What is different from before? How can you turn it back into the way it was before you modified it? (Again, see Question 3). 3.4 Other ways of bypassing the Linux login This part is optional. Like for Windows, there are several ways of bypassing the authentication mechanisms in Linux. One very easy technique on Linux systems is to use the chroot utility. This program allows you to apparently change the root directory to somewhere else. The usefulness of this is that we can use chroot to pretend that the root directory is actually located in the directory beginning at /mnt/lubuntu. This will trick the terminal into believing only this branch of the file system exists, and it will not be able to see or reference anything above it. Thus, from the viewpoint of the currently running terminal session, it appears as if only the files beginning in the /mnt/lubuntu folder exists. Moreover, all other programs will now work relative to the /mnt/lubuntu folder, not the actual root /! In particular, this means that if you run the passwd program, which is used to create or change a user s password in Linux, it will access the /mnt/lubuntu/etc/passwd file, not the /etc/passwd file! And which users credentials are stored in the file /mnt/lubuntu/etc/passwd? User ttm4175 of the Lubuntu machine! 4 It may be interesting to note that the passwd command usually requires administrator rights in order to be used, i.e., you would normally have to prepend sudo in front of the command and type in your (current) password to use it. However, it this case you have blanked the user s password so there is no password to ask for! 14

15 To summarize, in order to change the password of the user on the Lubuntu machine: mount the file system; chroot into it; then simply change the password using passwd. There are other ways to the bypass the Linux login screen as well. One method does not even require Kali Linux. Can you figure out how to do it? Try it out! 4 Using Kali Live on a physical machine We have prepared three physical machines, with three different operating systems on them. Unfortunately, we have forgotten their passwords! Your task is to bypass their authentication mechanisms and obtain: (1) a secret number stored in the user s home folder; and (2) a screenshot of the user s desktop. If you manage to obtain the secret number of all three computers, what is their sum? We have prepared a few USB drives containing Kali Live which you can use for this task. However, if you instead want to create the bootable USB yourself (recommended), ask the teaching assistants for an empty USB drive, then see the instruction in the next section. 4.1 Creating a Kali Linux live-usb This part is optional. If you have access to a system where you have administrator rights, like on your own personal laptop, you can easily create a bootable USB containing Kali Live yourself. Simply go to and follow the instructions there on how to set it up on your computer. 4.2 Booting from a live-usb on a physical machine When booting from a live-usb on a physical machine you have to make sure that the computer selects the USB as the boot medium at startup instead of the internal hard drive (otherwise the usual operating system will just run as normal). This is configured in the BIOS, which is the first program that runs on the computer. In order to enter the BIOS configuration menu you have to press a particular key immediately after start up, typically one of F1, F2, F8 or F10. Exactly which button to press is highly hardware dependent and vary from model to model. If the machine started up before you had time to enter BIOS, just hit CTRL+ALT+DEL to restart it and try again. Once inside the BIOS menu you have change the preferred device boot order, i.e. which physical device (USB, CD-ROM, hard drive, etc.) the BIOS will search through first. You want USBs to be listed first. Again, the BIOS menu is highly hardware and manufacturer dependent, so it is not possible to give a specific description on where the setting is located, but usually it is not too difficult to find. Once you have set the boot order, restart the machine and hopefully it will boot from the USB and show you the screen in Figure

16 Important! Do not change anything other than the boot order in BIOS. Moreover, once you have successfully managed to bypass the authentication of the target machine, make sure that restore the user s password to something so that other groups can give it a try as well (however, you do not have to say what it is!). Questions Q1. What is a partition? Explain the partitions shown in Figure 5. What are their file systems? What are the contents and purpose of the small 100MB partition at the beginning of the /dev/sdb disk in Figure 5b? Q2. You have just seen that the authentication process of both Windows and Linux can easily be circumvented if you have physical access to the machine. Is the authentication of a Mac running OS X more secure against this? If yes, why is that? If no, how would you bypass it? What about a smart phone running Android or ios? Q3. Most modern distributions of Linux use both /etc/passwd and /etc/shadow to store their user credentials. What is the purpose of the shadow file? Q4. How can we protect our computers against the attacks in this lab? Q5. Many modern operating systems automatically mounts a disk or peripheral (like a USB drive) if it detects that it is connected. What could be the reasons for Kali not choosing to do this? 16

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

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

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

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

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

Build your own NAS with OpenMediaVault

Build your own NAS with OpenMediaVault Build your own NAS with OpenMediaVault Installation Minimum Requirements i486 or amd64 platform 1 GiB RAM 2 GiB HDD/DOM/CF/USB Thumb Drive used as OpenMediaVault system drive. Flash Drives without static

More information

TinyNet. Creating Virtual Machines

TinyNet. Creating Virtual Machines TinyNet Creating Virtual Machines VirtualBox is a little funny about its configuration files, so we need a separate utility to run VirtualBox using non-standard locations for our virtual machines (VMs)

More information

Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD

Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD NOTE: Before performing the below tasks, please ensure you have one basic disk partition (with no data) or some free space

More information

Resizing Virtual Appliances (Debian) in VirtualBox for Windows Shutdown your Virtual Box Machin before you start the following steps

Resizing Virtual Appliances (Debian) in VirtualBox for Windows Shutdown your Virtual Box Machin before you start the following steps Resizing Virtual Appliances (Debian) in VirtualBox for Windows Shutdown your Virtual Box Machin before you start the following steps STEP1: Open the command terminal and Go to VB dir executables to clone

More information

Your Own Virtual Playground. CS 1585 :: Doug McGeehan

Your Own Virtual Playground. CS 1585 :: Doug McGeehan Your Own Virtual Playground CS 1585 :: Doug McGeehan Overview Follow these steps on your personal laptop or home PC. 1. 2. 3. 4. 5. Open this URL in your browser: http://tiny.cc/dsl-vm Download and Install

More information

Windows Password Reset 6.0 User Guide

Windows Password Reset 6.0 User Guide page 1 of 11 Contents Contents...1 Introduction...2 Instructions on This Manual...3 System Requirements...4 How to Use Windows Password Reset 6.0...5 i. Remove the Password...5 ii. Burning Your CD/DVD

More information

Applied ICT Skills MS Windows

Applied ICT Skills MS Windows Applied ICT Skills MS Windows Lesson 1 - How to install an operating system into computer? Windows 7 is perhaps the best Microsoft operating system and is very easy to install compared to other windows.

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

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

How To Reinstall Grub In Windows 7 With Cd Rom

How To Reinstall Grub In Windows 7 With Cd Rom How To Reinstall Grub In Windows 7 With Cd Rom Sep 23, 2014. I have the Windows 7 install disk (not an upgrade disk). it to CD-ROM, from there you can install windows by inserting the w7 disc and following

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

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

How to securely isolate Damn Vulnerable Linux with VirtualBox

How to securely isolate Damn Vulnerable Linux with VirtualBox How to securely isolate Damn Vulnerable Linux with VirtualBox Motivation I have this vision of going through and testing software inside of a closed lab that allows me to understand exploits and vulnerabilities

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

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

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

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

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

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

Manually Mount Usb Flash Drive Ubuntu Server Command Line

Manually Mount Usb Flash Drive Ubuntu Server Command Line Manually Mount Usb Flash Drive Ubuntu Server Command Line 4 answers, How to access a usb flash drive from the terminal? (How can I mount a flash drive manually?) sudo mount -t ntfs-3g /dev/sdb1 /media/external.

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

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

Operating Systems Linux 1-2 Measurements Background material

Operating Systems Linux 1-2 Measurements Background material Operating Systems Linux 1-2 Measurements Background material Introduction The Linux measurements were designed to allow you to have an impression about the administration of Linux severs along with providing

More information

Title: Demonstrate the linux installation and administration settings.

Title: Demonstrate the linux installation and administration settings. OOPL Assignment 1 Title: Demonstrate the linux installation and administration settings. Objectives: 1) To install Ubuntu Linux on Windows without erasing current operating system. 2) To give the students

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

(Ubuntu 10.04), the installation command is slightly different.

(Ubuntu 10.04), the installation command is slightly different. Grub Manual Install Ubuntu 10.04 Without 1st option : get a disk including Boot-Repair, 2nd option : install Boot-Repair in Ubuntu or when you can't boot Windows after installing Ubuntu, or when GRUB is

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

Lab Install Windows 8

Lab Install Windows 8 Introduction In this lab, you will install Windows 8.1 and 8.0. Recommended Equipment A computer with a blank hard disk drive Windows 8.1 and 8.0 installation DVD or USB flash drive Step 1: Starting the

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

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

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server This guideline illustrates the installation of the C-MOR Video Surveillance Virtual Machine on VMware ESX Server. This manual applies to C-MOR version 4 with 64 bit operating system. First download the

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

How to Recover Data with Linux

How to Recover Data with Linux 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

More information

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives Installing Linux (Chapter 8) Note packet # 4 CSN 115 Operating Systems Ken Mead Genesee Community College Objectives Learn about the hardware components of your computer system Configure hard disk space

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

Lab - Install Windows 7 or Vista

Lab - Install Windows 7 or Vista Introduction In this lab, you will install the Windows 7 or Vista operating system. Recommended Equipment A computer with a blank hard disk drive Windows 7 or Vista installation DVD or USB flash drive

More information

Manually Mount Usb Flash Drive Ubuntu Not Recognizing

Manually Mount Usb Flash Drive Ubuntu Not Recognizing Manually Mount Usb Flash Drive Ubuntu 12.04 Not Recognizing after a "system crash" my usb flash drive is not detected anymore. It contains important data and I Ubuntu 12.04 stopped suddenly to recognize

More information

RocIT Defender User s Guide ViSoS TM Virtual System on a Stick

RocIT Defender User s Guide ViSoS TM Virtual System on a Stick RocIT Defender User s Guide ViSoS TM Virtual System on a Stick Table of Contents 1. Introduction 3 1.1. Minimum System Requirements 3 1.2. Drive Specifications 4 2. Startup Procedure 4 2.1. Configure computer

More information

Installing caos with Cinch on Floppy Disk

Installing caos with Cinch on Floppy Disk Installing caos with Cinch on Floppy Disk Troy Andrew Johnson May 21, 2004 Abstract cinch is the caos Linux (http://www.caosity.org/) installer. Prerequisites What you need: two floppy disks (at least)

More information

Installation of the DigitalSystemsVM virtual machine

Installation of the DigitalSystemsVM virtual machine Installation of the DigitalSystemsVM virtual machine Notice This document explains how to install the DigitalSystemsVM virtual machine on a computer with Linux Ubuntu 16.04 LTS. If questions or problems

More information

Ubuntu installation alongside windows 8/8.1 and 10

Ubuntu installation alongside windows 8/8.1 and 10 Ubuntu installation alongside windows 8/8.1 and 10 Important safety precautions in windows - Before starting the installation process NOTE:1. If you are already using Windows OS in your computer, take

More information

Manually Mount Usb Device Linux Command Line Ubuntu 12.04

Manually Mount Usb Device Linux Command Line Ubuntu 12.04 Manually Mount Usb Device Linux Command Line Ubuntu 12.04 4 answers, How to access a usb flash drive from the terminal? (How can I mount a flash drive manually?) Can't mount external usb driver on Ubuntu

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

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

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

The Ip address / Name value should be: srvvcenter-cis

The Ip address / Name value should be: srvvcenter-cis CIS133 Installation Lab #1 - DESKTOP CLIENT OpenSUSE Install. Before beginning the installation, create a virtual machine in which you will install the operating system. 1) Open the VMware vsphere Client.

More information

Steps to install Xubuntu on a Virtual Machine

Steps to install Xubuntu on a Virtual Machine Steps to install Xubuntu on a Virtual Machine A virtual machine (VM) is an operating system OS, a self-contained operating environment that behaves as if it is a separate computer. The end user has the

More information

LAB #7 Linux Tutorial

LAB #7 Linux Tutorial Gathering information: LAB #7 Linux Tutorial Find the password file on a Linux box Scenario You have access to a Linux computer. You must find the password file on the computer. Objective Get a listing

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

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

SANOG VI IP Services Workshop: FreeBSD Install

SANOG VI IP Services Workshop: FreeBSD Install SANOG VI IP Services Workshop: FreeBSD Install FreeBSD is designed to be a server operating system. This becomes apparent during the installation process. The FreeBSD installer is a console-based (not

More information

-: Ronak Patel (Gozariya) :Windows XP installation

-: Ronak Patel (Gozariya) :Windows XP installation -: Ronak Patel (Gozariya) :Windows XP installation Insert your Windows XP installation CD-ROM and power-on/restart your system: It will show the PC-BIOS startup message, like: memory test, memory installed

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

INSTALLATION. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

Overview LEARN. History of Linux Linux Architecture Linux File System Linux Access Linux Commands File Permission Editors Conclusion and Questions

Overview LEARN. History of Linux Linux Architecture Linux File System Linux Access Linux Commands File Permission Editors Conclusion and Questions Lanka Education and Research Network Linux Architecture, Linux File System, Linux Basic Commands 28 th November 2016 Dilum Samarasinhe () Overview History of Linux Linux Architecture Linux File System

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

Ubuntu installation alongside windows 8/8.1 and 10

Ubuntu installation alongside windows 8/8.1 and 10 Ubuntu installation alongside windows 8/8.1 and 10 Important safety precautions in windows - Before starting the installation process NOTE:1. If you are already using Windows OS in your computer, take

More information

Getting Started with Linux Development

Getting Started with Linux Development Getting Started with Linux Development VB-Linux on your Laptop First, on your Windows or Mac OS-X laptop, install Oracle Virtual-Box as follows: First, download Ubuntu Linux distribution 12.04.1, or newer

More information

Install and Configure Ubuntu on a VirtualBox Virtual Machine

Install and Configure Ubuntu on a VirtualBox Virtual Machine Install and Configure Ubuntu on a VirtualBox Virtual Machine Ronald Mak Department of Computer Engineering Department of Computer Science January 11, 2019 Introduction Because the class will use Linux

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

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

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Basic Linux Security. Roman Bohuk University of Virginia

Basic Linux Security. Roman Bohuk University of Virginia Basic Linux Security Roman Bohuk University of Virginia What is Linux? An open source operating system Project started by Linus Torvalds kernel Kernel: core program that controls everything else (controls

More information

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems Project 3: An Introduction to File Systems COP 4610 / CGS 5765 Principles of Operating Systems Introduction Project 3 learning objectives File system design and implementation File system testing Data

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

Format Hard Drive After Install Ubuntu From Usb To Blank

Format Hard Drive After Install Ubuntu From Usb To Blank Format Hard Drive After Install Ubuntu From Usb To Blank If your hard disk doesn't show up, try formatting to FAT32. Also UNetbootin allows you to create bootable Live USB drives for Ubuntu, Fedora, and

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

Linux Kung Fu. Stephen James UBNetDef, Spring 2017

Linux Kung Fu. Stephen James UBNetDef, Spring 2017 Linux Kung Fu Stephen James UBNetDef, Spring 2017 Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and

More information

How To Reinstall Grub In Windows 7 Without Cd Dell

How To Reinstall Grub In Windows 7 Without Cd Dell How To Reinstall Grub In Windows 7 Without Cd Dell In my computer I had 2 partitions of Windows 7 (classical C: and D:), Ubuntu Gnome (that I The only thing I managed to do without errors is But what type

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

This is Lab Worksheet/Installation 7

This is Lab Worksheet/Installation 7 This is Lab Worksheet/Installation 7 This Lab Worksheet/Installation contains essential installation work needed for your upcoming Assignments. You do not have to hand in this Lab Worksheet, but there

More information

Cracking Password With Only Physical Access

Cracking Password With Only Physical Access 9 September 2005 Cracking Password With Only Physical Access Disclaimer: The author of this document is not responsible of any kind of damage that could be made with the bad use of this information. The

More information

Setting up the programming environment on Windows

Setting up the programming environment on Windows Setting up the programming environment on Windows Author: Michael Uhl ( contact: uhlm[at]informatik.uni freiburg.de ) Date: 17.10.2017 The easiest way to set up the programming environment on Windows is

More information

AOEMI Backupper V4.0

AOEMI Backupper V4.0 AOEMI Backupper V4.0 Contents Install AOEMI Backupper V4.0... 1 Launch AOEMI Backupper... 4 Create Bootable Media... 5 Create a Full Backup... 11 Create Incremental Backup... 13 Restore from Backup...

More information

Parallel Programming

Parallel Programming Parallel Programming Installing Ubuntu Virtual Machine within VirtualBox Author B. Wilkinson - Modification date Januray 3, 2016 These instructions assume you have already installed VirtualBox (See separate

More information

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability.

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. Ryan Borden December 3, 2017 Contact: ryanborden81@gmail.com

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

Linux Development Getting Started

Linux Development Getting Started Linux Development Getting Started VB-Linux on your Laptop Convenient Option Compared to Remote Transformer Access First, on your Windows or Mac OS-X laptop, install Oracle Virtual-Box as follows: First,

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

Creating a Virtual Network with Virt-manager

Creating a Virtual Network with Virt-manager Creating a Virtual Network with Virt-manager Our goal today will be to create three virtual machines on our host machine, network them together using virtual bridges, and pass some very simple traffic

More information

Installation of Fedora 12 with CD

Installation of Fedora 12 with CD Prepared by investech.wordpress.com Installation of Fedora 12 with Net Install CD Version 1.0 investech.wordpress.com 07-12-09 This document is produced under Creative Common License (Attribution No Derivatives).

More information

Getting Started with Linux

Getting Started with Linux Getting Started with Linux For those with experience using Microsoft Windows there will be many familiar ways of operating in a Linux environment. There are also a few key differences. The main differences

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

Introduction. What is Linux? What is the difference between a client and a server?

Introduction. What is Linux? What is the difference between a client and a server? Linux Kung Fu Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and open-source operating system distributions

More information

Linux Manually Mount External Hard Drive Ntfs-3g Could Not

Linux Manually Mount External Hard Drive Ntfs-3g Could Not Linux Manually Mount External Hard Drive Ntfs-3g Could Not Manually mounting the drives does not work. Installing the ntfs-3g driver also did not work (I was using this to write to the NTFS drives until

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

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box jthomas Enterprises, 2016 Building a CentOS 7 Workstation using Oracle VirtualBox 1 Section 1 Before You Begin This section details the environment

More information

Manual Format Windows Xp Computer Reinstall Ubuntu

Manual Format Windows Xp Computer Reinstall Ubuntu Manual Format Windows Xp Computer Reinstall Ubuntu Automatic partition resizing (not recommended), Manual partitioning. Master Boot Some computer manufacturers that pre-install Windows provide a Windows.

More information

Jackson State University Department of Computer Science CSC 437/539 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan

Jackson State University Department of Computer Science CSC 437/539 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Jackson State University Department of Computer Science CSC 437/539 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Lab Project # 3: Simulating DHCP Snooping and DNS Cache Poisoning through

More information

Written by: Mickey Nguyen

Written by: Mickey Nguyen Written by: Mickey Nguyen What is Virtual Machine (VM)? A Virutal Machine (VM) is an emulation of a computer system. It gives you a specific Operating System (OS) such as Linux/Solaris/Windows7/Windows10/..

More information

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux...

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux... Introduction APPLICATION NOTE The purpose of this document is to explain how to create a Virtual Machine on a Windows PC such that a Linux environment can be created in order to build a Linux kernel and

More information

Part I. Introduction to Linux

Part I. Introduction to Linux Part I Introduction to Linux 7 Chapter 1 Linux operating system Goal-of-the-Day Familiarisation with basic Linux commands and creation of data plots. 1.1 What is Linux? All astronomical data processing

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

bitcurator-access-webtools Quick Start Guide Last updated: May 8th, 2018 Release(s): and later

bitcurator-access-webtools Quick Start Guide Last updated: May 8th, 2018 Release(s): and later bitcurator-access-webtools Quick Start Guide Last updated: May 8th, 2018 Release(s): 0.8.2 and later About bitcurator-access-webtools The bitcurator-access-webtools service allows users to browse file

More information

BUILD LINUX LEARNING LAB FOR FREE

BUILD LINUX LEARNING LAB FOR FREE HOW TO BUILD LINUX LEARNING LAB FOR FREE Proudly Presented by: LearnLinux.ca Learn Linux - kickstart your IT career Table of Contents 1. What is Linux? 2. VMware Workstation Player Download 3. VMware Workstation

More information