Storage – Practical Exercises Overview

Total Page:16

File Type:pdf, Size:1020Kb

Storage – Practical Exercises Overview Storage – Practical Exercises Overview This course comes with a virtual lab environment where you can practice what you learn. Launch the lab environment from the Welcome > Getting Started > Practice Lab Environment page. • You will only have four hours in the practical environment. • The time is cumulative, so you can work a little bit at a time until it adds up the total time allowed. • You may not have enough time to complete all the practical exercises. So, choose wisely. You may want to consider all the hand-on exercises and decide which ones you want to make sure you work on first. In most cases, the userid is Adatum\Administrator and the password is Pa55w.rd, but read the instructions carefully. If you are having difficulties with the lab environment check out the Student Lab Guide. This document is available from the Course Handouts page and includes basic troubleshooting and the support desk link. Recommendation: Bookmark the edX Practice Lab Environment page as you will return to it frequently to perform your hands-on labs! Notice in the lab environment you can copy information to the virtual machines by using the Actions > Paste Content window. Before you paste the content, be sure your cursor is where you want the copied data. Module 1 – Disks and Volumes Disk Structure In this exercise, you will bring disks online, initialize, format and partition. Disk Structure (Server Manager) 1. Login to LON-SVR1 as Administrator with the password Pa55w.rd. 2. In Server Manager, select Tools, and select Computer Management. 3. Access Disk Management. 4. Review the volume information such as: Type, File System, Status, Capacity, Free Space, and %Free. 5. Notice Disk2 and Disk3 have red x icons which indicates the disk if offline. 6. Right-click Disk2 (left side) and bring the disk Online. Notice the disk now says, Not Initialized. 7. Right-click Disk2 and select Initialize disk. 8. Notice your choices GPT and MBR. Select GPT (GUID Partition Table) which is not recognized by all previous versions of Windows. 9. Notice Disk2 is now a Basic Disk and that the space is unallocated. 10. Right-click the unallocated space and create a New Simple Volume with the following characteristics. When you are done, Finish creating the volume. • Volume size: 4000 MB • Drive Letter: F: • File system: NTFS (notice the other choices) • Volume label: NTFS 11. Notice there is still unallocated space in Disk2. 12. Open File Explorer, and format the drive. Notice the warning that all data will be erased. 13. Verify the NTFS (F:) is ready to use. Keep Computer Management open as you will use it in the next exercise. Disk Structure (PowerShell) 1. Open an Administrator Windows PowerShell prompt. 2. View information on all disks in the system. Take a minute to review what is presented. Notice the Number parameter. Get-Disk | Format-List 3. View information just about Disk 2. Verify this is your new 32 GB GPT formatted disk. Get-Disk –Number 2 | Format-List 4. View information about the partitions on Disk 2. Your new F: drive should be shown. Get-Disk –Number 2 | Get-Partition 5. View the help on the New-Partition command. Scroll through the parameters and review the associated syntax. If prompted, do not update the help files. Get-Help New-Partition –Showwindow 6. Use New-Partition to create a new partition on Disk 2. Use drive letter G, and use the maximum size available. New-Partition –DiskNumber 2 –UseMaximumSize –DriveLetter G 7. View the help on the Format-Volume command. Review the parameters and the syntax. Get-Help Format-Volume –Full 8. Use Format-Volume to format the G drive. If prompted, answer Yes to confirm you want to format the drive. Format-Volume –DriveLetter G 9. Return to Disk Management and verify the G drive is shown. If the drive is not shown, right-click Disk Management and then Rescan Disks. 10. Format the new volume, and assign a Volume label of HR to the drive. 11. Verify that Disk 2 now has two healthy partitions. Managing Volumes In this exercise, you will extend and shrink a volume. Extend a volume 1. Login to LON-SVR1 as Administrator with the password Pa55w.rd. 2. Access the Computer Management tool, and then select Disk Management. 3. In Disk 2, you assigned the G: drive to HR and they now need an additional 4 GB of space. Notice there is no more space on Disk 2. 4. Bring Disk 3 online and initialize the disk. Select GPT (GUID Partition Table). 5. Right-click the G: drive and notice your choices. Select Extend Volume. 6. Add Disk 3 with 4000 MB of space. 7. Read and accept the warning that the basic disks will be converted to dynamic disks and that dynamic disks cannot be boot disks. 8. Review the Disk Management information (you may need to Rescan the disks). Notice G: is now Spanned (Layout column) and Dynamic (Type column). 9. Open File Explorer and notice that even though G: spans two physical disks it still is accessed as a single entity G:. Shrink a volume 1. Right-click the G: volume on Disk2 and Shrink the volume. 2. Enter the amount to shrink in MB (2000). 3. Read the information that says you cannot shrink a volume beyond the point where any unmovable files are located. 4. After shrinking the volume notice both disks are still used. Redundant Array of Inexpensive Disks (RAID) In this exercise, you will create and test a disk mirror. Create a disk mirror 1. Login to LON-SVR1 as Administrator with the password Pa55w.rd. 2. Open Disk Management. 3. Right-click on the Disk 2 F: and Add Mirror. The Add Mirror... option will be greyed out if there isn’t enough another disk online with available space. Make sure Disk 3 is online and there is available space. 4. Read that adding a mirror to an existing volume provides data redundancy by maintaining multiple copies of the data on different disks. 5. Select Disk3 as the mirror. 6. Watch the resynchronization operation as the mirror partition is created. This may take a couple of minutes depending on the size of the volume. 7. While you wait right-click one of the volumes and notice the options to: Remove Mirror... and Break Mirrored Volume... (one or both will be greyed out until the mirror is fully created and synchronized). 8. Notice in the Disk Management information (top pane), the F: drive layout is Mirror. Test the mirror 1. Switch to File Explorer. 2. If prompted format your disks. 3. Create a couple of test files on the F: drive. 4. In the Disk Management tool, right-click Disk 2 and take the disk Offline. Notice the change in icon and the Disk 2 information changing to Offline. 5. You will start to see Failed Redundancy errors on the disks. 6. Return to File Explorer and verify even with Disk 2 offline you can still access the test files on the F: drive. 7. Bring Disk 2 back online. Monitoring Disks In this exercise, you will use Performance Monitor, Task Manager, and Resource Monitor to view disk statistics. Performance Manager 1. Login to LON-SVR1 as Administrator with the password Pa55w.rd 2. From a command prompt type: perfmon. You can also get to the Performance Monitor from Server Manager Tools. 3. Expand Data Collector Sets, right-click on User Defined, select New, and then Data Collector Set. • Name: Disk Stats • Create from Template (Recommended) • Select each of the different templates and read about how they are used. • In the Template Data Collector Set list, select System Performance • Click Finish. 4. Right-click the Disk Stats data collector set and select Start. This will start a 60 second capture of what is happening on the machine. 5. Expand Reports, User Defined, and Disks Stats. 6. Double click your report starting with the <machine>_<date> prefix. 7. If your report is still collecting data, please wait. 8. In the Summary section check out the Disk information. 9. There is also a Physical Disk section that includes information about the physical disk: Physical Disk Counters, Physical Disk Percent Idle Time, and Physical Disk Average Second Counters. You can click on the Top Disk by IO Rate link in the Summary section to view this. 10. Take a few minutes to browse around the other areas of the report. 11. As you have time create a new User-Defined Data Collector Set. Choose Advanced instead of Recommended. Select the option for Performance Counter Alert and then select Add. Notice you can create a customized report by selecting individual performance counters. Task Manager 1. From a command prompt, type: taskmgr Notice on Windows Server systems only the CPU and Memory columns are present. If you run Task Manager on your Windows client you will also see Disk and Network information. 2. Select the Performance tab and then click on Open Resource Monitor. 3. Expand the Disk section and notice the column information for Process ID (PID), File, read (B/sec), Write (B/sec), Total (B/sec), I/O Priority, Response Time (ms). 4. Select an item and then click on the Monitor menu. Notice you can start and stop monitoring processes. 5. Click on the Disk tab and expand the Disk Activity and Storage sections. 6. In the Processes with Disk Activity section notice you can select individual processes. Right-click and notice the available options at the process level. Use Analyze Wait Chain to view processes waiting on another resource.
Recommended publications
  • File Management
    File management Information about file management How to use the SFTP Wrapper Advanced: WinSCP SFTP Guide Advanced: CyberDuck SFTP Guide Restoring Backups Installation Locations File Manager How to use the SFTP Wrapper To quickly load up WinSCP, you can use our wrapper to automatically launch WinSCP and log you in without messing around with usernames/passwords/ports/protocols etc. It's super easy!* Our wrapper is currently Windows only; if you would like information on how to access your files using one of our other sFTP guides. Our wrapper is currently Windows only; if you would like information on how to access your files please see one of our other sFTP guides. 1. Make sure you have .NET Framework 4.0 (or higher) installed from Microsoft's website. This is needed for the wrapper to work properly. If your computer is on Windows 8 or later, you already have it! 2. Download and run it by clicking here: here NOTE: CLOSE THE PROGRAM AFTER INSTALLATION. 1. Head on over back to the "Service" > "Access" page and click the "Download" button and then confirm you have read the very serious warning, and click "Download" again. This will download your chPPK file, a tiny little file crammed with information on how to connect to your system. Note: If clicking the sFTP wrapper install URL shows a page full of text. You will need to go back and Right Click > Save As, and run the wrapper application from your download folder. Some browsers/browser versions will not automatically download this .application file. 2.
    [Show full text]
  • Run-Commands-Windows-10.Pdf
    Run Commands Windows 10 by Bettertechtips.com Command Action Command Action documents Open Documents Folder devicepairingwizard Device Pairing Wizard videos Open Videos Folder msdt Diagnostics Troubleshooting Wizard downloads Open Downloads Folder tabcal Digitizer Calibration Tool favorites Open Favorites Folder dxdiag DirectX Diagnostic Tool recent Open Recent Folder cleanmgr Disk Cleanup pictures Open Pictures Folder dfrgui Optimie Drive devicepairingwizard Add a new Device diskmgmt.msc Disk Management winver About Windows dialog dpiscaling Display Setting hdwwiz Add Hardware Wizard dccw Display Color Calibration netplwiz User Accounts verifier Driver Verifier Manager azman.msc Authorization Manager utilman Ease of Access Center sdclt Backup and Restore rekeywiz Encryption File System Wizard fsquirt fsquirt eventvwr.msc Event Viewer calc Calculator fxscover Fax Cover Page Editor certmgr.msc Certificates sigverif File Signature Verification systempropertiesperformance Performance Options joy.cpl Game Controllers printui Printer User Interface iexpress IExpress Wizard charmap Character Map iexplore Internet Explorer cttune ClearType text Tuner inetcpl.cpl Internet Properties colorcpl Color Management iscsicpl iSCSI Initiator Configuration Tool cmd Command Prompt lpksetup Language Pack Installer comexp.msc Component Services gpedit.msc Local Group Policy Editor compmgmt.msc Computer Management secpol.msc Local Security Policy: displayswitch Connect to a Projector lusrmgr.msc Local Users and Groups control Control Panel magnify Magnifier
    [Show full text]
  • Your Performance Task Summary Explanation
    Lab Report: 11.2.5 Manage Files Your Performance Your Score: 0 of 3 (0%) Pass Status: Not Passed Elapsed Time: 6 seconds Required Score: 100% Task Summary Actions you were required to perform: In Compress the D:\Graphics folderHide Details Set the Compressed attribute Apply the changes to all folders and files In Hide the D:\Finances folder In Set Read-only on filesHide Details Set read-only on 2017report.xlsx Set read-only on 2018report.xlsx Do not set read-only for the 2019report.xlsx file Explanation In this lab, your task is to complete the following: Compress the D:\Graphics folder and all of its contents. Hide the D:\Finances folder. Make the following files Read-only: D:\Finances\2017report.xlsx D:\Finances\2018report.xlsx Complete this lab as follows: 1. Compress a folder as follows: a. From the taskbar, open File Explorer. b. Maximize the window for easier viewing. c. In the left pane, expand This PC. d. Select Data (D:). e. Right-click Graphics and select Properties. f. On the General tab, select Advanced. g. Select Compress contents to save disk space. h. Click OK. i. Click OK. j. Make sure Apply changes to this folder, subfolders and files is selected. k. Click OK. 2. Hide a folder as follows: a. Right-click Finances and select Properties. b. Select Hidden. c. Click OK. 3. Set files to Read-only as follows: a. Double-click Finances to view its contents. b. Right-click 2017report.xlsx and select Properties. c. Select Read-only. d. Click OK. e.
    [Show full text]
  • Guide on How to Share a Folder Over the Network and Map a Network Drive
    Guide on How to Share a Folder over the Network and Map a network Drive October 2019 0 Climsoft Version 4 – Guide on How to Share a Folder over the Network and Map a network Drive This process is very important for the purpose of archiving and retrieving paper images using Climsoft. Scanned paper images records are not stored in the Climsoft database tables like digitised data records but on removable storage media like external hard drives over the network or Network Attached Storage (NAS). To be able to access digitised images saved on a given storage media over the Local Area Network by any client computer using Climsoft, the folder containing digitised images need to be shared with specific computer users and accessible over the network. The drive and folder where digitised images are stored need to be mapped as well on the client computers to enable the later to access digitised images. Follow the instructions below to share the folder containing paper archive images over the network and map the network drive containing digitised images on the client computers. 1. How to share a folder on your Windows Computer (Server) with other Computers (Clients) over the Network (LAN) 1. Open File Explorer; 2. Navigate to the folder you want to share; 3. Right-click the folder and select the Properties option; 4. Click the Sharing tab; 5. Click the Advanced Sharing button. 6. Check the Share this folder option; 1 Climsoft Version 4 – Guide on How to Share a Folder over the Network and Map a network Drive 7.
    [Show full text]
  • Quick Guide Page | 1
    Quick Guide Page | 1 Contents Welcome to Windows 10 ................................................................................................................................................................................................... 3 Key innovations ...................................................................................................................................................................................................................... 3 Cortana ................................................................................................................................................................................................................................. 3 Microsoft Edge .................................................................................................................................................................................................................. 4 Gaming & Xbox ................................................................................................................................................................................................................ 5 Built-in apps ....................................................................................................................................................................................................................... 7 Enterprise-grade secure and fast ...................................................................................................................................................................................
    [Show full text]
  • Data File Manager
    Data File Manager Welcome to Data File Manager! Thank you for using the data file manager. Highlights of the data file manager are as follows: Intuitive operability Buttons on the tool menu, drag & drop, and context menu with a right click are supported to use each function. Tree view for data in SD memory card Files and folders in SD memory card are shown in a tree structure and target files can easily be found. Operations for files and folders Files and folders can be added, renamed or deleted. PLC maintenance Viewing the PLC status, such as Run/Stop state or error status, downloading/uploading user programs, or upgrading the system software of the PLC are supported. MICRO/I maintenance Viewing the target information, such as system software version or external memory device information, or downloading/uploading project is supported. Notes - Data File Manager There are the following notes when you use Data File Manager: Supported hardware Data File Manager supports the following hardware: FC4A series MICROSmart FC5A series MICROSmart Pentra FC6A series MICROSmart FT1A series SmartAXIS expect FT1A Touch HG3G/4G series MICRO/I HG2G-5F series MICRO/I HG2G-5T series MICRO/I HG1G series MICRO/I SD card access (SmartAXIS Pro & Lite) SD card inserted on SmartAXIS series can be accessed while the PLC is stopped only. Downloading or uploading the user program (PLC) You can download or upload the user programs using ZLD files, which can be created or read with WindLDR. Downloading or uploading the project (MICRO/I) You can download or upload the project using ZNV files, which can be created or read with WindO/I-NV4.
    [Show full text]
  • Open Windows File from Download Open Files from the File Menu
    open windows file from download Open files from the File menu. The Open tab on the File menu shows a list of files you’ve recently opened, and it includes links to places where you commonly store files. The Recent list shows the files that you opened recently from any of your devices. If this list gets unwieldy, you can remove files from it. Just right- click the file name and then pick Remove from list . You can make other changes to the Recent list. To learn more, see Customize the list of recently used files. If you don’t use the list of Recent files, and you’d rather jump straight into browsing folders, use Ctrl+F12 to open the Open dialog box directly. To access files from your Microsoft 365 Groups or SharePoint Online document libraries click the Sites - Your Company link. You'll get a list of your frequently Groups and Sites to select from. Pick the one you want and browse to the file you want to open. Double-click Computer to get to local files, including removable flash drives. You can also select one of the locations your accounts let you get to, sign in if necessary, and then open the file you want. To add a new location, click Add a Place . Tip: If you want to bypass File > Open and always use the Open dialog box, do this: Select File > Options > Save , and then select the Don’t show the Backstage when opening or saving files check box. Then, close and reopen any open Office applications.
    [Show full text]
  • Windows Essentials with Windows 10 Brian M
    Mercer County Library System Windows Essentials with Windows 10 Brian M. Hughes, County Executive Working with the Windows 10 Start Menu Action Technique 1. Find a Program in the Start Menu The Windows 10 Start Menu displays a list of all programs currently installed on your PC, as well as rows of tiles, which act as quick access points to your favorite programs. The Apps List is arranged alphabetically and has a scroll bar on the right for scrolling down the list. Some programs are contained in folders. The tiles also have a scroll bar on the right. To open the Start Menu, click the Windows icon in the bottom-left corner of the screen, or just click the Windows Key on your keyboard. 2. Working with Live Tiles Some of the tiles on the Start Menu are Live Tiles, which means they show real-time information on the face of the tile and, when clicked, lead to apps that give that information in more detail. For example, the Weather tile shows you the current weather for your local area, and when opened it allows you browse the weather in other areas. To turn off a Live Tile, right-click on the tile, point at More, then select Turn Live Tile off. 3. Pin a Program to Start To Pin a program to the tile area of the Start Menu, right-click on the program, then select Pin to Start. To Unpin, right-click on the tile, then select Unpin from Start. You can also Pin to Start by clicking-and- dragging the program name to the tile area.
    [Show full text]
  • ATM Adaptation Layer for Computer Data
    29762 99 389-410 r1jk.ps 6/18/03 1:38 PM Page 389 Index 3GIO, 273 Associated IRP, 40 8B/10B encoding scheme, 108 Asymmetric cryptography, 85–86 1394 architecture, 43–44 Asynchronous I/O, 12–14 1394 driver, 29 Asynchronous replication, 321, 324 ATA (AT attached), 48 AAL5 (ATM Adaptation Layer for computer data), 119 ATA devices, 49 Access Controls, 129, 133 ATA drives and SMART, 49 ACK (positive acknowledgment) frame, 114 ATA specifications, 48–49 ACLs (access control lists), 8, 205, 211, 338–339 ATAPI (AT Attachment Packet Interface), 49 Active Directory, 334, 336 $AttrDef file, 198 adapter/HBA class, 55 Attribute list defragmentation, 217 Address Resolution Protocol, 105 Authentication, 75–76 Address spoofing, 102 Automated System Recovery, 365 ADIC (Advanced Digital Information Corporation), AutoPath, 315–316 129, 236, 237 AndX, 76–77 B+ tree, 204 ANSI (American National Standards Institute), 107 Back-end networks, 274 ANSI (American National Standards Institute) Web BackOffice, 88 site, 43 Backup applications, 141–144, 156, 165 APCs (asynchronous procedure calls), 7, 24–25, 41 Backup classifications, 143 APIs architecture-based, 144–146 backup/restore applications, 163 functionality-based, 146–147 backups and restores, 139–140 network infrastructure-based, 148–156 volume management applications, 333–334 Backup Exec program, 156 Windows 2000 RSM (Removable Storage Manage- Backup ISVs (independent software vendors), 155 ment), 266–268 Backup server and server-free backups, 154–155 Application images, 227–230 Backup utility, 156–157 Application
    [Show full text]
  • Dell EMC Openmanage Installation and Management Release Notes Version 9.3.1 Notes, Cautions, and Warnings
    Dell EMC OpenManage Installation and Management Release Notes Version 9.3.1 Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either potential damage to hardware or loss of data and tells you how to avoid the problem. WARNING: A WARNING indicates a potential for property damage, personal injury, or death. © 2019 Dell Inc. or its subsidiaries. All rights reserved. Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries. Other trademarks may be trademarks of their respective owners. 2019 - 10 Rev. A01 Contents 1 Release summary..........................................................................................................................4 2 New and enhanced features.......................................................................................................... 5 3 Compatibility............................................................................................................................... 6 Supported network cards.....................................................................................................................................................6 Supported operating systems..............................................................................................................................................6 Supported web browsers....................................................................................................................................................
    [Show full text]
  • Windows 10 Quick Start Guide
    Getting Started These slides contain tips and hints to help you to get started with Windows 10 Desktop@UCL Service Improvement Programme Table of Contents Windows 10 at UCL The Start Menu and Taskbar Task View and Multiple Windows The Action Centre Settings File Explorer Other Useful Information Windows 10 at UCL The Windows 10 Anniversary Version is installed at UCL Not all of the features and functions of this version are available at UCL The Start Menu Select the Start button on the taskbar to access the Start Menu. Apps, settings and files can all be found on the Start Menu. Customise your Start Menu by pinning apps and programs, or moving and regrouping tiles. If you need more space, resize the Start Menu. The Start Menu Resize the Start Menu by dragging the corner/sides to the size you want. The Start Menu The Account, Settings and Power buttons are to the far left of the Start Menu. The Start Menu Click the Account icon to change account settings, lock the screen, or sign out. The Start Menu Find all your programs and applications Click thein theSettings application icon to list. access the settings. More about settings later. Double click a letter to quickly access another part of the list. The Start Menu Click the Power icon to perform standard shutdown, restart and sleep functions. The Start Menu Start typing to search for apps, files and settings. Click the search box to see an example. The Start Menu Matching results for your search are returned. The Start Menu Click on the arrow to expand the application list.
    [Show full text]
  • Operating Systems Lecture #5: File Management
    Operating Systems Lecture #5: File Management Written by David Goodwin based on the lecture series of Dr. Dayou Li and the book Understanding Operating Systems 4thed. by I.M.Flynn and A.McIver McHoes (2006) Department of Computer Science and Technology, University of Bedfordshire. Operating Systems, 2013 25th February 2013 Outline Lecture #5 File Management David Goodwin 1 Introduction University of Bedfordshire 2 Interaction with the file manager Introduction Interaction with the file manager 3 Files Files Physical storage 4 Physical storage allocation allocation Directories 5 Directories File system Access 6 File system Data compression summary 7 Access 8 Data compression 9 summary Operating Systems 46 Lecture #5 File Management David Goodwin University of Bedfordshire Introduction 3 Interaction with the file manager Introduction Files Physical storage allocation Directories File system Access Data compression summary Operating Systems 46 Introduction Lecture #5 File Management David Goodwin University of Bedfordshire Introduction 4 Responsibilities of the file manager Interaction with the file manager 1 Keep track of where each file is stored Files 2 Use a policy that will determine where and how the files will Physical storage be stored, making sure to efficiently use the available storage allocation space and provide efficient access to the files. Directories 3 Allocate each file when a user has been cleared for access to File system it, and then record its use. Access 4 Deallocate the file when the file is to be returned to storage, Data compression and communicate its availability to others who may be summary waiting for it. Operating Systems 46 Definitions Lecture #5 File Management field is a group of related bytes that can be identified by David Goodwin University of the user with a name, type, and size.
    [Show full text]