Disks & File Systems. Dick Gillman, ITSS. 1/19/06 10:20:11 am docs/disks.sxi

Size: px
Start display at page:

Download "Disks & File Systems. Dick Gillman, ITSS. 1/19/06 10:20:11 am docs/disks.sxi"

Transcription

1 Disks & File Systems Dick Gillman, ITSS 1/19/06 10:20:11 am docs/disks.sxi

2 IDE and SCSI most lower end systems come with IDE SCSI better performance choose system with SCSI for servers

3 Checklist for new disk attach it format it mount and share it

4 attach it Disks identified by controller number target, set by microswitch at the back or bottom partition, or slice also possible to have multiple disks on 1 SCSI slot c0t0d0s0 is controller 0, target 0, disk 0, slice 0 slice 2 refers to the whole disk avoid target 6, this is often the CD

5 Example solaris Filesystem Mounted on /dev/dsk/c0t0d0s0 / /dev/dsk/c0t0d0s3 /var /dev/dsk/c0t0d0s4 /usr/local /dev/dsk/c0t0d0s7 /local /dev/dsk/c0t2d0s2 /local2

6 Example Irix bisda susa $ df -kl Filesystem Type kbytes use avail %use Mounted on /dev/root xfs / /dev/dsk/dks0d2s7 xfs /local /dev/dsk/dks0d2s6 xfs /usr/share bisda susa $

7 Example Linux Filesystem Mounted on /dev/hda1 / /dev/hda2 /local /dev/hdb2 /local1

8 attach it check the machine can see the new disk electrically, Solaris probe-scsi probe-ide reboot the system with the reconfigure option, or solaris devfsadmin format to check that the operating system can see the new disk

9 Format detects disks # format Searching for disks...done AVAILABLE DISK SELECTIONS: 0. c0t0d0 <SUN36G cyl alt 2 hd 27 sec 107> /pci@1f,4000/scsi@3/sd@0,0 1. c0t8d0 <SUN36G cyl alt 2 hd 27 sec 107> /pci@1f,4000/scsi@3/sd@8,0 2. c0t9d0 <SUN36G cyl alt 2 hd 27 sec 107> /pci@1f,4000/scsi@3/sd@9,0 3. c0t10d0 <SUN36G cyl alt 2 hd 27 sec 107> /pci@1f,4000/scsi@3/sd@a,0 4. c1t5d0 <SEAGATE-ST32155N-0532 cyl 4162 alt 2 hd 8 sec 126> /pci@1f,4000/scsi@4/sd@5,0 5. c1t9d0 <SUN9.0G cyl 4924 alt 2 hd 27 sec 133> /pci@1f,4000/scsi@4/sd@9,0 6. c1t10d0 <SUN9.0G cyl 4924 alt 2 hd 27 sec 133> /pci@1f,4000/scsi@4/sd@a,0 7. c1t11d0 <SUN9.0G cyl 4924 alt 2 hd 27 sec 133> /pci@1f,4000/scsi@4/sd@b,0 8. c1t12d0 <SUN9.0G cyl 4924 alt 2 hd 27 sec 133> /pci@1f,4000/scsi@4/sd@c,0 Specify disk (enter its number):

10 Format it - divide into partitions solaris format Specify disk (enter its number): 0 selecting c0t0d0 [disk formatted] Warning: Current Disk has mounted partitions. format> partition partition> print Current partition table (original): Total disk cylinders available: (reserved cylinders) Part Tag Flag Cylinders Size Blocks 0 root wm GB (4355/0/0) swap wu GB (726/0/0) backup wm GB (24620/0/0) unassigned wm 0 0 (0/0/0) 0 4 var wm GB (1418/0/0) unassigned wm 0 0 (0/0/0) 0 6 unassigned wm 0 0 (0/0/0) 0 7 unassigned wm GB (18121/0/0)

11 format it divide into partitions linux fdisk ~]# fdisk /dev/hda Command (m for help): p Disk /dev/hda: 80.0 GB, bytes 255 heads, 63 sectors/track, 9726 cylinders Units = cylinders of * 512 = bytes Device Boot Start End Blocks Id System /dev/hda1 * Linux /dev/hda e Linux LVM Command (m for help):

12 mkfs creates a file system within a partition Solaris: friendly front end newfs inodes: newfs will guess how many inodes to allocate, depending on partition size; may have to explicitly increase this if many small files are anticipated can run fsck to check the integrity of the partition

13 mount & share the partitions create a mount point in the root directory, mkdir /diskname put an entry in /etc/fstab (/etc/vfstab Solaris), and mountall put an entry in /etc/exports (/etc/dfs/dfstab in Solaris), and shareall check the new partition can be mounted on another machine

14 Advanced filesystems journalling logical volumes mirrors RAID

15 Journalling keeps a record of uncommitted changes can repair itself after a crash no need to run fsck Solaris: logging option in /etc/vfstab

16 Logical Volumes filesystem spread over several disks

17 Mirrors duplicate a filesystem on another set of disks on another controller resilient to disk or controller faults can choose downtime, or hot swappable

18 Mirrors tom lvm $ df -kl Filesystem kbytes used avail capacity Mounted on /dev/md/dsk/d % / /dev/md/dsk/d % /var /dev/md/dsk/d % /local tom lvm $ metastat -p d7 -m d17 d27 1 d c1t0d0s7 d c1t1d0s7 d4 -m d14 d24 1 d c1t0d0s4 d c1t1d0s4 d1 -m d11 d21 1 d c1t0d0s1 d c1t1d0s1 d0 -m d10 d20 1 d c1t0d0s0 d c1t1d0s0

19 Mirrors same data on disk A and disk B disk A and B should have the same geometry disk A and B should be partitioned identically the easy way: format A as you want it, open another window, and juggle disk B's partitioning the quick way: prtvtoc /dev/rdsk/c0t1d0s2 fmthard -s /dev/rdsk/c1t1d0s2

20 Redundant Array of Inexpensive Disks a set of disks that appear to be one disk configure to give better reliability or response, or greater capacity

21 Types of RAID RAID 0: spread the data evenly across the disks faster I/O no protection against failure RAID 1: mirroring: data is duplicated on another set of disks resilience to failure; better performance, as either drive can service a read request RAID 5: RAID 0 + parity faster I/O; resilience to failure

22 RAID 0

23 RAID1 (mirroring)

24 RAID5

25 Tricks of the Trade move directory structures onto new disks move all the data on a disk replace a root disk patch a disk

26 tar tar archives a load of files, or directories into one big file, which can then be untarred to the target disk handy for moving small or medium collections of files about but if you use tar to move a disk about, your tar file will be as big as your disk tar not suitable for moving whole disks

27 Copy data to new disk cd /sourcedir find. -depth -print cpio -pmud /destdir find. -depth -print cpio -pmud /net/biudx/destdir

28 Use FTP to copy data source system A ftp b cd /destdir bin put find. -depth -print cpio -oc pipe destination system B cd /destdir mknod pipe p chown susa pipe cpio -icdm < pipe & rm pipe

29 Replace failing root disk cd / ufsdump -f /net/biudx/local/data/biudy/root.ufs format (note the contents) engineer replaces biudy's failing disk boot cdrom -s format newfs /dev/rdsk/c0t0d0s0 mkdir /tmp/a; mount /dev/dsk/c0t0d0s0 /tmp/a mkdir /tmp/b mount /net/ /local/data/biudy /tmp/b cd /tmp/a; ufsrestore /tmp/b/root.ufs repeat for any other partitions on the failing disk

30 patch a SCSI disk check it is SCSI; ls -o /dev/dsk get relative block number from syslog umount /local10; fsck /dev/rdsk/c0t1d0s0 calculate Absolute Block Number; format > part > print to get start and end blocks of each partition format > repair > block number fsck /dev/rdsk/c0t1d0s0 do not sync; cache contents will be dodgy reboot

Mirroring the Boot Drive with Solstice Disk Suite/Solaris Volume Manager. Brad Isbell, Seeds of Genius June 2006

Mirroring the Boot Drive with Solstice Disk Suite/Solaris Volume Manager. Brad Isbell, Seeds of Genius June 2006 Mirroring the Boot Drive with Solstice Disk Suite/Solaris Volume Manager Brad Isbell, Seeds of Genius June 2006 Revision 1.1 6/04/2006 Edition: June 2006 All rights reserved. This product or document is

More information

Backup & Recovery. Sun Microsystems Korea. ning.co.kr

Backup & Recovery. Sun Microsystems Korea.  ning.co.kr Backup & Recovery Sun Microsystems Korea http://www.suntrai ning.co.kr Sample Backup strategy Sat 0 Mon Tue Wed Thu Fri Level 0 Monthly M T W Th F 3 4 5 6 2 3 4 5 6 2 3 4 5 6 2 3 4 5 6 2 3 4 5 6 2 Sample

More information

Adding a disk. SA s important tasks

Adding a disk. SA s important tasks Adding a disk SA s important tasks Connecting and configuring new storage devices Making local and remote files available to users Monitoring and managing the system s finite disk resources Checking for

More information

Solaris Patches Installation Instructions

Solaris Patches Installation Instructions [ Solaris Patches 4.2.1.10 Installation Instructions Overview Introduction This document provides the step-by-step instructions to install the Solaris Patch Set 4.2.1.10 on a DNCS system running System

More information

Outline. Computer Center, CS, NCTU. Interfaces Geometry Add new disks RAID. Appendix SCSI & SAS

Outline. Computer Center, CS, NCTU. Interfaces Geometry Add new disks RAID. Appendix SCSI & SAS Disks Outline Interfaces Geometry Add new disks Installation procedure Filesystem check Add a disk using sysinstall RAID GEOM Appendix SCSI & SAS 2 3 Disk Interfaces SCSI Small Computer Systems Interface

More information

QLC FCode for 2Gb FC HBAs. Table of Contents

QLC FCode for 2Gb FC HBAs. Table of Contents QLC FCode f 2Gb FC HBAs This software license applies only to QLogic customers. QLogic Cpation. All rights reserved. 1. Package Contents 2. Suppted Features 3. HBA Configuration (FCode Options) 4. Utilities

More information

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER Higher Quality Better Service! Exam Actual QUESTION & ANSWER Accurate study guides, High passing rate! Exam Actual provides update free of charge in one year! http://www.examactual.com Exam : 050-710 Title

More information

Solaris boot archive corrupt

Solaris boot archive corrupt Solaris boot archive corrupt fixing a solaris boot archive Solaris 10 x86 Server can't Boot! Error messages at startup: On booting you get an error message of the form: panic: cannot mount boot archive

More information

Chapter 6. Linux File System

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

More information

Input the disk name to be replaced. One of the following notation can be used:

Input the disk name to be replaced. One of the following notation can be used: Below we will show you an example on how to do it through the using of madmin and unix diskset tools like format etc. 1. split the mirror with: lockfs -af and then metadetach mirror submirror 2. madmin

More information

Outline. Computer Center, CS, NCTU. Interfaces Geometry Add new disks RAID. Appendix SCSI & SAS

Outline. Computer Center, CS, NCTU. Interfaces Geometry Add new disks RAID. Appendix SCSI & SAS Disks Outline Interfaces Geometry Add new disks Installation procedure Filesystem check Add a disk using sysinstall RAID GEOM Appendix SCSI & SAS 2 3 Disk Interfaces SCSI Small Computer Systems Interface

More information

Outline. Computer Center, CS, NCTU. q Interfaces q Geometry q Add new disks. q RAID

Outline. Computer Center, CS, NCTU. q Interfaces q Geometry q Add new disks. q RAID Disks frank Outline q Interfaces q Geometry q Add new disks Installation procedure Filesystem check Add a disk using sysinstall q RAID GEOM ZFS 2 3 Disk Interfaces q SCSI Small Computer Systems Interface

More information

Administration Supplement for Solaris Platforms

Administration Supplement for Solaris Platforms Administration Supplement for Solaris Platforms 2550 Garcia Avenue Mountain View, CA 94043 U.S.A. A Sun Microsystems, Inc. Business 1994 Sun Microsystems, Inc. 2550 Garcia Avenue, Mountain View, California

More information

How To Resize ext3 Partitions Without Losing Data

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

More information

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER Higher Quality Better Service! Exam Actual QUESTION & ANSWER Accurate study guides, High passing rate! Exam Actual provides update free of charge in one year! http://www.examactual.com Exam : 310-875 Title

More information

Alternative Boot Solutions

Alternative Boot Solutions CHAPTER 4 Alternative Boot Solutions Using a software disk manager is a popular solution for maintaining high availability for /boot/root/swap. However, alternatives exist that are commonly unknown or

More information

Kernel Korner IBM's Journaled Filesystem

Kernel Korner IBM's Journaled Filesystem Kernel Korner IBM's Journaled Filesystem To restart a telecom server quickly, you need a journaling filesystem. Here's how you can move to IBM's AIX-derived JFS. by Steve Best, David Gordon and Ibrahim

More information

Computer Center, CS, NCTU. Outline. Interfaces Geometry Add new disks. Installation procedure Filesystem check Add a disk RAID GEOM

Computer Center, CS, NCTU. Outline. Interfaces Geometry Add new disks. Installation procedure Filesystem check Add a disk RAID GEOM Disks Outline Interfaces Geometry Add new disks Installation procedure Filesystem check Add a disk RAID GEOM 2 3 Disk Interfaces SCSI Small Computer Systems Interface High performance and reliability IDE

More information

Dell Compellent Volume Expansion with Solaris 10 UFS. Technical Tip

Dell Compellent Volume Expansion with Solaris 10 UFS. Technical Tip Dell Compellent Volume Expansion with Solaris 10 UFS Technical Tip Page 2 Document revision Date Revision Comments 8/30/2011 A Initial Draft 10/14/2011 B Fixed Some Typos THIS TECHNICAL TIP IS FOR INFORMATIONAL

More information

Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide

Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide Rocket RAID 2644 SAS Controller opensuse Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on June 12, 2012 Table of Contents 1 Overview...

More information

Exam Name: Red Hat Certified Engineer on Redhat

Exam Name: Red Hat Certified Engineer on Redhat Vendor: Red Hat Exam Code: RH302 Exam Name: Red Hat Certified Engineer on Redhat Version: DEMO QUESTION 1 One Logical Volume is created named as myvol under vo volume group and is mounted. The Initial

More information

Installing Prime Optical

Installing Prime Optical 5 CHAPTER This section describes how to install Cisco Prime Optical 9.8 with an Oracle 11g database. To ensure a successful installation, use the checklist provided in the Installation Scenarios and Checklists,

More information

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration Disks Partitions Volumes Filesystems Files Many versions SCSI: Small Computer Systems Interface SCSI-1 (1986) 8-bits, 5MB/s SCSI-2 (1990) added command queuing,

More information

Disk Replacement. Introduction CHAPTER

Disk Replacement. Introduction CHAPTER CHAPTER 17 Revised: July 2010, Introduction This chapter describes the process of replacing a defective Cisco BTS 10200 Softswitch disk. Each Cisco BTS 10200 system element contains two hard disks (disk

More information

Linux Files and the File System

Linux Files and the File System Linux Files and the File System 1. Files a. Overview A simple description of the UNIX system, also applicable to Linux, is this: "On a UNIX system, everything is a file; if something is not a file, it

More information

Changing user login password on templates

Changing user login password on templates Changing user login password on templates 1. Attach an ISO via the cloudstack interface and boot the VM to rescue mode. Click on attach iso icon highlighted below: A popup window appears from which select

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

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration Disks Partitions Volumes Filesystems Files Disk interfaces Relatively few SCSI (pronounced scuzzy ) Common, widely supported IDE a.k.a. ATA or PATA, and SATA

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

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

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : 1Z0-877 Title : Oracle Solaris 10 System Administrator Certified Professional Exam,

More information

SLES Linux Installation Guide

SLES Linux Installation Guide Rocket RAID 278x SAS Controller SLES Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Created on May 29, 2012 Table of Contents 1 Overview... 1 2 Installing

More information

Chapter 11: File System Implementation. Objectives

Chapter 11: File System Implementation. Objectives Chapter 11: File System Implementation Objectives To describe the details of implementing local file systems and directory structures To describe the implementation of remote file systems To discuss block

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Upgrading Prime Optical

Upgrading Prime Optical CHAPTER 6 You cannot perform a full upgrade from an earlier Cisco Transport Manager (CTM) or Prime Optical release. This section describes how to use the Cisco Prime Optical 9.8 Data Migrator wizard to

More information

Sun StorEdge PCI Dual Ultra3 SCSI Host Adapter Installation Guide

Sun StorEdge PCI Dual Ultra3 SCSI Host Adapter Installation Guide Sun StorEdge PCI Dual Ultra3 SCSI Host Adapter Installation Guide Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 U.S.A. 650-960-1300 Part No.: 816-2156-11 May 2002, Revision A Copyright

More information

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on February 16, 2009 Table of Contents 1 Overview...1

More information

Magneto-Optical Disk Drive

Magneto-Optical Disk Drive SMO-F551 / RMO-S551 Magneto-Optical Disk Drive Installation Guide 1.3 Contents Installation Procedure on DOS and Windows3.1 3 Installation Procedure on Windows95/98 5 Installation Procedure on WindowsNT

More information

QFS, SAM-FS, and SAM-QFS Installation and Configuration Guide

QFS, SAM-FS, and SAM-QFS Installation and Configuration Guide QFS, SAM-FS, and SAM-QFS Installation and Configuration Guide Sun Microsystems, Inc. Part Number 816-1787-10 LSC Publication Number SG-0007 Revision 3.5.0-20 2000 LSC, Incorporated. All rights reserved.

More information

Linux Hardware Management. Linux System Administration COMP2018 Summer 2017

Linux Hardware Management. Linux System Administration COMP2018 Summer 2017 Linux Hardware Management Linux System Administration COMP2018 Summer 2017 Hardware Resources CPU refers to the primary computing resource and is measured in processor cores RAM refers to the volatile

More information

MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit

MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit Jurij Ivastsuk-Kienbaum jurij [at] device-image.de Revision History First draft March 14, 2006 This document describes a setup

More information

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery LiLo Crash Recovery ***** *** * I have captured this information from someone else website which I didn t record where I copied it from or when I copied it. And I ve left it as it is. The credit should

More information

Manage your disk space... for free :)

Manage your disk space... for free :) Manage your disk space... for free :) Julien Wallior Plug Central Agenda Background RAID LVM Some basics Practice Booting on a raid device What is that? How it works Hardware raid... if you really want

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH-302 Title : Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) Vendors : RedHat Version

More information

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume.

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume. OPS235 Lab 4 [1101] Sample/suggested Answers/notes (Please ask your professor if you need any clarification or more explanation on concepts you don't understand.) Investigation 1: How are LVMs managed

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation Linux+ Guide to Linux Certification, Third Edition Chapter 6 Advanced Installation Objectives Describe the types and structure of SCSI devices Explain the different levels of RAID and types of RAID configurations

More information

File Systems. What do we need to know?

File Systems. What do we need to know? File Systems Chapter 4 1 What do we need to know? How are files viewed on different OS s? What is a file system from the programmer s viewpoint? You mostly know this, but we ll review the main points.

More information

File System. Computadors Grau en Ciència i Enginyeria de Dades. Xavier Verdú, Xavier Martorell

File System. Computadors Grau en Ciència i Enginyeria de Dades. Xavier Verdú, Xavier Martorell File System Computadors Grau en Ciència i Enginyeria de Dades Xavier Verdú, Xavier Martorell Facultat d Informàtica de Barcelona (FIB) Universitat Politècnica de Catalunya (UPC) 2017-2018 Q2 Creative Commons

More information

Partitioning and Formatting Guide

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

More information

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit?

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit? HP-UX System Administration Course Overview This Hewlett Packard HP-UX System Administration training course is designed to give delegates practical experience in the administration of an HP-UX UNIX System.

More information

Project 3: An Introduction to File Systems. COP4610 Florida State University

Project 3: An Introduction to File Systems. COP4610 Florida State University Project 3: An Introduction to File Systems COP4610 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file system testing data serialization/de-serialization

More information

PRIMECLUSTER DR/PCI Hot Plug User s Guide

PRIMECLUSTER DR/PCI Hot Plug User s Guide PRIMECLUSTER DR/PCI Hot Plug User s Guide - SPARC Solaris - Version 4.2 November, 2003 Introduction This manual describes how to use the Dynamic Reconfiguration (DR) function and the PCI Hot Plug function

More information

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam.

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam. REDHAT RH202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam TYPE: DEMO http://www.examskey.com/rh202.html Examskey REDHAT RH202 exam demo product is here for you to test the quality

More information

File systems and Filesystem quota

File systems and Filesystem quota File systems and Filesystem quota 8.1 Unit objectives After completing this unit, you should be able to: Describe what a file is Describe what a file system is List possible file systems Describe i-nodes

More information

SPARC Enterprise Preinstall Information

SPARC Enterprise Preinstall Information SPARC Enterprise Preinstall Information June 2009 Fujitsu Ltd. Trademarks All SPARC trademarks are used under license from SPARC International Inc. All products which name include SPARC trademarks are

More information

Example Implementations of File Systems

Example Implementations of File Systems Example Implementations of File Systems Last modified: 22.05.2017 1 Linux file systems ext2, ext3, ext4, proc, swap LVM Contents ZFS/OpenZFS NTFS - the main MS Windows file system 2 Linux File Systems

More information

How to clone a Linux box using netcat

How to clone a Linux box using netcat How to clone a Linux box using netcat Dr. Emiliano Bruni info@ebruni.it Version 0.01 $Date: 2003/08/22 14:52:15 $ Many times it s necessary to have a clone of a linux box without modifying the original

More information

Testpassport http://www.testpassport.net Exam : 310-015 Title : SUN Certified SYSTEM ADMINISTRATOR FOR SOLARIS 9 PART II Version : DEMO 1 / 7 1. In which situation will Solaris Volume Manager volumes continue

More information

LPI EXAM LPI Level 2 Exam 201, Advanced Level Linux Certification, Part 1 of 2. Buy Full Product.

LPI EXAM LPI Level 2 Exam 201, Advanced Level Linux Certification, Part 1 of 2. Buy Full Product. LPI EXAM - 117-201 LPI Level 2 Exam 201, Advanced Level Linux Certification, Part 1 of 2 Buy Full Product http://www.examskey.com/117-201.html Examskey LPI 117-201 exam demo product is here for you to

More information

Fedora Linux Installation Guide

Fedora Linux Installation Guide RocketRAID 276x SAS Controller Fedora Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on May 29, 2012 Table of Contents 1 Overview...

More information

OPS235. Linux File Systems Partitioning Mounting File Systems

OPS235. Linux File Systems Partitioning Mounting File Systems OPS235 Linux File Systems Partitioning Mounting File Systems 1 Lab 4 Part 1 Topics Linux File Systems (ext2 / ext3 / ext4) Linux Partitioning / Formatting Mounting Linux File Systems 2 Linux File Systems

More information

Ubuntu Linux Installation Guide

Ubuntu Linux Installation Guide RocketRAID 278x SAS Controller Ubuntu Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on May 29, 2012 Table of Contents 1 Overview...

More information

Cromemco UNIX V.2 Installation

Cromemco UNIX V.2 Installation The Blog Tuesday, March 25, 2014 Cromemco UNIX V.2 Installation Building on the story of the injured Cromemco UNIX system I am outlining the exact recovery procedure I followed to restore UNIX V2 onto

More information

CS370 Operating Systems

CS370 Operating Systems CS370 Operating Systems Colorado State University Yashwant K Malaiya Spring 2018 Lecture 24 Mass Storage, HDFS/Hadoop Slides based on Text by Silberschatz, Galvin, Gagne Various sources 1 1 FAQ What 2

More information

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on September 17, 2008 Table of Contents 1

More information

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space NEC Express Servers NEC Express5800/ft Series 1st Edition 03-2013 Introduction This document is intended as a

More information

Back Up (And Restore) LVM Partitions With LVM Snapshots

Back Up (And Restore) LVM Partitions With LVM Snapshots By Falko Timme Published: 2007-04-15 13:24 Back Up (And Restore) LVM Partitions With LVM Snapshots Version 1.0 Author: Falko Timme Last edited 04/11/2007 This tutorial shows

More information

iscsi Clusters High-Availability White Paper

iscsi Clusters High-Availability White Paper iscsi Clusters High-Availability White Paper Introduction iscsi is a relatively new technology in the mainstream storage arena, yet the functionality of products provided by iscsi vendors like EqualLogic

More information

File Management 1/34

File Management 1/34 1/34 Learning Objectives system organization and recursive traversal buffering and memory mapping for performance Low-level data structures for implementing filesystems Disk space management for sample

More information

SIEMENS UserAdmin Workshop TELEPERM XP Version 4 Chapter 1

SIEMENS UserAdmin Workshop TELEPERM XP Version 4 Chapter 1 1 UNIX... 1-2 1.1 USER-ENVIRONMENT... 1-2 1.1.1 User-environment... 1-3 1.1.2 Basic commands... 1-3 1.1.3 SCO Unix specific commands... 1-4 1.1.4 HP Unix specific commands... 1-4 1.2 FILE SYSTEM... 1-5

More information

SUN SOLARIS. Course Catalog

SUN SOLARIS. Course Catalog SUN SOLARIS Course Catalog 2012-2013 System & Network Administration using Sun Solaris 10 System & Network Administration using Sun Solaris will cover all aspects of SA1, SA2 certi ication and the basics

More information

An Oracle White Paper June How To Configure Oracle VM Server for SPARC Guest Domains As Oracle Solaris Cluster Nodes

An Oracle White Paper June How To Configure Oracle VM Server for SPARC Guest Domains As Oracle Solaris Cluster Nodes An Oracle White Paper June 2010 How To Configure Oracle VM Server for SPARC Guest Domains As Oracle Solaris Cluster Nodes Introduction...1 Overview...2 Prerequisites, Assumptions, and Defaults...3 Configuration

More information

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University Week 10 Project 3: An Introduction to File Systems Classes COP4610 / CGS5765 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file

More information

Filesystem Hierarchy and Permissions

Filesystem Hierarchy and Permissions and Linux Prepared by Steven Gordon on 19 April 2017 Common/Reports/linux-file-permissions.tex, r1417 1/15 Multiuser and Server Operating System Linux systems are commonly used as a multi-user system E.g.

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

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

Veritas Volume Manager Conversion

Veritas Volume Manager Conversion Veritas Volume Manager Conversion Tim Clemens Training and Consulting Louisville, KY 1-800-888-9028 Topics Veritas Volume Manager - VxVM LVM Cluster Volume Groups - Review Creating VxVM Cluster Disk Groups

More information

UNIX System Administration

UNIX System Administration $!... 14:13 $$... 14:13.netrc...12:27-28 /etc/fstab... 6:25 /etc/hosts.equiv... 8:23 /etc/inittab Entries... 4:8 /etc/netmasks... 8:22 /etc/shells... 12:25 /home... 6:69 /tmp...6:61-67 /usr... 6:70 /var...

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

Linux File System Study Guide

Linux File System Study Guide Linux File System Study Guide Copyright 1998, 1999 P. Tobin Maginnis This document is free; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the

More information

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission Filesystem Disclaimer: some slides are adopted from book authors slides with permission 1 Recap Directory A special file contains (inode, filename) mappings Caching Directory cache Accelerate to find inode

More information

LPIC-1 System Administrator

LPIC-1 System Administrator LPIC-1 System Administrator The world s largest and most recognized Linux Certification LPIC-1 is the first certification in LPI s multi-level Linux professional certification program. The LPIC-1 will

More information

Filesystem Hierarchy Operating systems I800 Edmund Laugasson

Filesystem Hierarchy Operating systems I800 Edmund Laugasson Filesystem Hierarchy Operating systems I800 Edmund Laugasson edmund.laugasson@itcollege.ee There has been used materials from Margus Ernits, Katrin Loodus when creating current slides. Current document

More information

System Administration for the Oracle Solaris 10 OS Part 1 Student Guide - Volume I

System Administration for the Oracle Solaris 10 OS Part 1 Student Guide - Volume I System Administration for the Oracle Solaris 10 OS Part 1 Student Guide - Volume I D61734GC30 Edition 3.0 September 2011 D74403 Authors Vijetha M Malkai Venu Poddar Technical Contributor and Reviewer Shyam

More information

The Btrfs Filesystem. Chris Mason

The Btrfs Filesystem. Chris Mason The Btrfs Filesystem Chris Mason The Btrfs Filesystem Jointly developed by a number of companies Oracle, Redhat, Fujitsu, Intel, SUSE, many others All data and metadata is written via copy-on-write CRCs

More information

RocketRAID 2310/2300 Controller Fedora Linux Installation Guide

RocketRAID 2310/2300 Controller Fedora Linux Installation Guide RocketRAID 2310/2300 Controller Fedora Linux Installation Guide Version 1.1 Copyright 2006 HighPoint Technologies, Inc. All rights reserved. Last updated on Jan 20, 2006 Table of Contents 1 Overview...1

More information

NETW 110 Handout Lab 10 - Backup and Restore

NETW 110 Handout Lab 10 - Backup and Restore The Importance of Scheduled Backups Most people who have worked in client-server or mainframe environment have lost files or data. Therefore, it is necessary for the IT staff to develop a thorough, yet

More information

CIS UNIX System Administration

CIS UNIX System Administration Lab 11: Lab notes: - Lab 10 successful completion is a prerequisite for this lab - The sda8, sda9 partitions below may change based on current disk partition. See instructor for current # s. - After the

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

Cloning and Repartitioning sessionmgr Disks

Cloning and Repartitioning sessionmgr Disks This chapter describes the steps needed to repartition the sessionmgr disks so that the increased number of subscribers (> 10 million) can be accommodated. Cloning and Disk Repartitioning of Sessionmgr01

More information

Modern RAID Technology. RAID Primer A Configuration Guide

Modern RAID Technology. RAID Primer A Configuration Guide Modern RAID Technology RAID Primer A Configuration Guide E x c e l l e n c e i n C o n t r o l l e r s Modern RAID Technology RAID Primer A Configuration Guide 6th Edition Copyright 1997-2003 ICP vortex

More information

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 CompTIA Linux+ Powered by LPI LX0-103 Objectives The Linux+ Powered by LPI Exam: LX0-103 exam covers the following topics. #

More information

Install Server Build Guide I/O device driver (SPARC Enterprise) C120-E443-07ENZ2(A) February SPARC Enterprise

Install Server Build Guide I/O device driver (SPARC Enterprise) C120-E443-07ENZ2(A) February SPARC Enterprise Install Server Build Guide I/O device driver (SPARC Enterprise) C120-E443-07ENZ2(A) February 2009 SPARC Enterprise Preface Preface Purpose This book provides you with procedures to construct the environment

More information

SANblade 2200 Series User s Guide

SANblade 2200 Series User s Guide Q Simplify SANblade 22 Series User s Guide 1-Gb Fibre Channel to cpci and SBus Host Bus Adapters CF225112- C Page i SANblade 22 Series User s Guide 1-Gb Fibre Channel to cpci and SBus Host Bus Adapters

More information

MODULE 02. Installation

MODULE 02. Installation MODULE 02 Installation Identify the type of system, hardware, and network settings necessary for Linux installation Describe the need for pre-installation procedures Identify the different types of file

More information

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx.

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx. Adding a New Disk, page 1 Mounting the Replication Set from Disk to tmpfs After Deployment, page 3 Manage Disks to Accommodate Increased Subscriber Load, page 5 Adding a New Disk This section describes

More information

Advanced UNIX File Systems. Berkley Fast File System, Logging File System, Virtual File Systems

Advanced UNIX File Systems. Berkley Fast File System, Logging File System, Virtual File Systems Advanced UNIX File Systems Berkley Fast File System, Logging File System, Virtual File Systems Classical Unix File System Traditional UNIX file system keeps I-node information separately from the data

More information

Manage Directories and Files in Linux. Objectives. Understand the Filesystem Hierarchy Standard (FHS)

Manage Directories and Files in Linux. Objectives. Understand the Filesystem Hierarchy Standard (FHS) Manage Directories and Files in Linux Objectives Understand the Filesystem Hierarchy Standard (FHS) Identify File Types in the Linux System Change Directories and List Directory Contents Create and View

More information

SAP HANA Backup Guide (for Ivy-Bridge Model)

SAP HANA Backup Guide (for Ivy-Bridge Model) SAP HANA Backup Guide (for Ivy-Bridge Model) Version 1.1 2014/12/06 NEC SAP Global Conpetence Center Page 1 C NEC Corporation 2014 Version history Version Date Revision contents 1.0 2014/10/06 Created

More information

Some Practical Matters. Introduction to Unix. What's Our Goal? Linux!= UNIX

Some Practical Matters. Introduction to Unix. What's Our Goal? Linux!= UNIX Introduction to Unix AfNOG 2006 Workshop May 7, 2006 Nairobi, Kenya Hervey Allen Phil Regnauld Some Practical Matters Please do not change the root password. Please do ask questions! Lots of questions!

More information