OPS235: Week 5 Lab4: Investigations 1 – 3

Slides:



Advertisements
Similar presentations
Storage Management Lecture 7.
Advertisements

ITI-481: Unix Administration Rutgers University Center for Applied Computer Technologies Christopher Uriarte, Instructor Meeting 4.
Working with Disks and Devices
Booting the Linux Kernel Dr. Michael L. Collard 1.
Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
Storage Systems: Advanced Topics Learning Objectives: To understand limitations of “one file system per partition” model To understand Logical Volume Management.
1 Module 10 Managing Partitions. 2  Overview Partitioning a Disk Using Disk Administrator General Maintenance and Troubleshooting.
Modern Operating Systems 2014 Practice Tasks. Lab1. OS Installation. Boot configuration Install Dual boot system Linux / Windows 7 or 8 / win server 2012(Dreamspark.
L V M A Logical Volume Manager for Linux by Heinz Mauelshagen Sistina, Inc.
GNU/Linux Filesystem 1 st AUT GNU/Linux Festival Computer Engineering & IT Department Bahador Bakhshi.
Guide To UNIX Using Linux Third Edition
Linux Install. Resources Guide to Linux Installation and Administration, Nicholas Wells, Course Technology, 2000.
Chapter 8: Adding a Disk — Unix Hard Disk Basics Installation and Configuration Barry Kane CMSC-691X.
Disk Volume Management CSS-1. Terms  Extent – any contiguous set of clusters  Partition – extent treated as a disk  Volume - partition formatted with.
SUSE Linux Enterprise Desktop Administration Chapter 1 Install SUSE Linux Enterprise Desktop 10.
Linux+ Guide to Linux Certification, Third Edition
CompTIA Linux+ Certification
Linux Installation and Administration – Lesson 5 Tutor: George Papamarkos Topic: Devices in Linux.
Guide to Linux Installation and Administration, 2e1 Chapter 3 Installing Linux.
Storage Systems: Advanced Topics Learning Objectives: To understand major characteristics of SSD To understand Logical Volume Management – its motivations.
Guide to Linux Installation and Administration, 2e1 Chapter 8 Basic Administration Tasks.
Linux in a Virtual Environment Nagarajan Prabakar School of Computing and Information Sciences Florida International University.
Introduction to Hard Drives Chapter 6 - Key Terms Information Compiled by Diane Ferris, Michele Henderson & Vicki Kertz.
Chapter 3 Managing Disk and File Systems. File Storage Basics Windows XP supports two types of storage Basic Dynamic Basic storage system Centers on partitioning.
11 INSTALLING AND MANAGING STORAGE DEVICES IN WINDOWS XP Chapter 8.
MCTS Guide to Microsoft Windows Vista Chapter 4 Managing Disks.
Chapter 6: Linux Filesystem Administration
Chapter Two Exploring the UNIX File System and File Security.
File System Management File system management encompasses the provision of a way to store your data in a computer, as well as a way for you to find and.
Managing Disks and Drives Chapter 13 powered by dj.
Multiboot System under Windows XP – Ubuntu – Windows 7 Qiong LIN - 28 April 2012.
Chapter 1 Managing Storage. Contents Understanding Partitioning Understanding LVM Understanding RAID Understanding Clustering and GFS Using Access Control.
MCTS Guide to Microsoft Windows 7
1 Objectives Manage and install new file systems.
Sys Admin Course Physical Storage and File Systems Fourie Joubert.
Chapter 3 Partitioning Drives using NTFS and FAT32 Prepared by: Khurram N. Shamsi.
Configuring Disk Devices. Module 4 – Configuring Disk Devices ♦ Overview This module deals with making partitions using fdisk, implementing RAID and Logical.
Windows Vista Inside Out Chapter 28 - Chapter 28 - Managing Disks and Drives Last modified
COMP25212 STORAGE SYSTEM AND VIRTUALIZATION Sergio Davies Feb/Mar 2014COMP25212 – Storage 3.
Linux+ Guide to Linux Certification Chapter Six Linux Filesystem Administration.
Microsoft Windows XP Professional MCSE Exam
FAT File Allocation Table
Module 4: Managing Disks. Overview Working with Disk Management Working with Basic Disks Working with Dynamic Disks Preparing Disks when Upgrading to.
Linux Filesystem WeeSan Lee. Roadmap Disk Partitions The Filesystem Filesystem Mouting & Umounting File Tree File Type File Permission.

MCTS GUIDE TO MICROSOFT WINDOWS 7 Chapter 4 Managing Disks.
This slide deck is for LPI Academy instructors to use for lectures for LPI Academy courses. ©Copyright Network Development Group Module 10 Understanding.
1 C1-UD 6-6 BASIC LINUX FILE MANAGEMENT. Part IV. File System Administration Academic Year DAI. Credit 1 (Single and Multiuser Operating Systems)
Linux Filesystem Administration
1 COP 4343 Unix System Administration Unit 1: –Linux OS structure –Distributions –Hardware inventory –Disks and partitions –Installation steps –Boot loader.
Partitioning.
CompTIA Server+ Certification (Exam SK0-004)
OPS235: Week 2 Installing Linux
Guide to Linux Installation and Administration, 2e
Introduction to Operating Systems
Chapter 12: File System Implementation
Introduction to Computers
Introduction to Computers
Partitioning a Hard Drive
Exploring the UNIX File System and File Security
Operating System Module 1: Linux Installation
Troubleshooting (CPU)
IS3440 Linux Security Unit 4 Securing the Linux Filesystem
Linux File Systems Partitioning Mounting File Systems
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
OPS235 MANAGING LVMs – PART I
OPS235 Lab4: Investigations 5 – 9
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
Storage Management Lecture 7.
Presentation transcript:

OPS235: Week 5 Lab4: Investigations 1 – 3

Lab 4 – Part 1 - Topics Lab Time Manually Mounting / Un-mounting Partitions Purpose Command-Line How to automate (/etc/fstab) Adding PVs to existing VGs Graphical

Hard Disk Basics A partition is a virtual drive inside a hard drive. There are many advantages in creating separate partitions including: separation of OS from programs, grouping program files, multi-boot systems, database efficiency (file sizes). BIOS limits the number of partitions on a single hard drive: Maximum of 4 primary partitions. Extended Partition (a container for up to 16 logical partitions). To create more than 4 partitions, need to create at least one extended partition.

Hard Disk Basics All devices stored in the /dev directory (including hard disks). Good to study typical directories in a Linux file system... Hard drives begin with hd or sd depending on type of hard drive (eg. IDE or SCSI & SATA). A letter denotes each hard disk, and a following number denotes the partition number. /dev/sda1, /dev/sda2, /dev/hdb5 Unlike windows where your make reference to drives, in Linux all drives (and corresponding partitions) are files. There is more flexibility to mount different drives / partitions for different purposes: For example /, /home, /opt, etc...

System Admin: Hard Drives What is a mount-point? What is the purpose of mount / umount commands? What various uses (syntax) of mount command? What steps must be performed when using mount command? How to verify that you have set up correct mount point?

System Admin: Partitions What is the command to create a partition? What are the various options (command line, internal)? What could prevent partition from being created? How to create partitions for other Operating Systems? How to create a file system in a partition? How to format a hard drive partition?

Creating Physical Volumes As mentioned, LVM allows for scalability: for example, adding hard disks to allow file systems to grow. We have demonstrated how to extend Logical volumes via Graphical and Command Line methods. We only have 1 removable hard disk, but we can use LVM to “simulate” adding another Physical Volume to an existing Volume Group. This would allow extra space to “grow a file-system” if required. In other words, we can create a “virtual partition” for practice. What is the method to add a PV to an existing VG? (graphical method, Command Line Method).