Unix/Linux. Dariusz Żbik

Size: px
Start display at page:

Download "Unix/Linux. Dariusz Żbik"

Transcription

1 Unix/Linux Dariusz Żbik

2 Plan Reprezentacja urządzeń taśmy dyski, partycje Urządzenia SCSI LVM

3 Wszystko jest plikiem rodzaj pliku c znakowe (character) b blokowe uprawnienia właściciel grupa numer major numer minor nazwa crw rw rw 1 root root 1, 3 Feb /dev/null crw rw rw 1 root root 1, 5 Feb /dev/zero crw 1 zbik root 14, 4 Feb /dev/audio crw w 1 zbik tty 136, 0 Oct 18 21:19 /dev/pts/0 brw rw 1 root disk 3, 1 Feb /dev/hda1 brw rw 1 root disk 1, 1 Feb /dev/ram1 crw w w 1 root tty 0 0x Oct 2 11:31 /dev/console crw rw rw 1 bin mail 3 0x Oct 19 07:27 /dev/null crw rw rw 1 bin bin 159 0x Mar /dev/ps2mouse crw w 1 darin tty 157 0x Oct 18 18:15 /dev/pts/0 crw w 1 zbik tty 157 0x Oct 19 07:27 /dev/pts/1 brw r 1 bin sys 31 0x Mar /dev/dsk/c1t4d0 brw r 1 bin sys 31 0x Mar /dev/dsk/c1t5d0 brw r 1 bin sys 31 0x Mar /dev/dsk/c2t2d0

4 Jak plik się czyta i jak plik się zapisuje wersja prymitywna cat /dev/audio gzip c 4 > /dev/hda9 # zapisanie wykladu bezp. na dysk cat /dev/audio gzip c 4 > /dev/null # mniej ciekawy wykład cat /dev/hda9 gunzip c > /dev/audio # odsluchanie wykladu cat /dev/urandom > /dev/audio # wspaniala kompozycja cat /dev/hda > /dev/ttys1 # odczyt z dysku i zapis do port szeregowego cat /dev/ttys1 > /dev/hda # j.w. w druga strone cat /dev/fb > /tmp/obrazek # ekran do pliku cat /tmp/obrazek > /dev/fb # plik na ekran wersja bardziej wyrafinowana dd if=/dev/hda of=/dev/hdb bs=64m # kopia systemu 1:1 dd if=/dev/hda1 skip=10 of=/dev/hdc1 ibs=1m obs=16m # z pominieciem poczatku dd if=/dev/hda ibs=16m of=/dev/nst0 obs=32k # kopia systemu na tasme dd if=/dev/zero of=/tmp/duzyplik bs=1m count=16 # utworzenie duzego pliku zer

5 Inne operacje - ioctl() request MTIOCTOP argp struct mtop* /* Structure for MTIOCTOP mag tape op command: */ struct mtop { short mt_op; /* operations defined below */ int mt_count; /* how many of them */ }; mt_op: MTBSF MTBSFM int ioctl(int fd, int request, void *argp); Backward space over mt_count filemarks. Backward space over mt_count filemarks. Repositionthe tape to the EOT side of the last filemark. MTBSR Backward space over mt_count records (tape blocks). MTBSS Backward space over mt_count setmarks. MTCOMPRESSION Enable compression of tape data within the drive if mt_count is non zero and disable compression if mt_count is zero. int fd; long disksize; fd=open( /dev/hda2, O_RDONLY); ioctl(fd, BLKGETSIZE, &disksize);

6 Tworzenie plików urządzeń ręcznie polecenie mknod root]# mknod /dev/nst0 c [root@ewok root]# chown root:disk /dev/nst0 [root@ewok root]# chmod 660 /dev/nst0 półautomatycznie polecenie MAKEDEV [root@ewok root]# cd /dev;./makedev n st0 create st0 c 9 0 root:disk 660 create st0l c 9 32 root:disk 660 create st0m c 9 64 root:disk 660 create st0a c 9 96 root:disk 660 automatycznie system plików devfs

7 Urządzenia znakowe crw rw rw 1 root root 1, 3 Feb /dev/null crw rw rw 1 root root 1, 5 Feb /dev/zero crw 1 zbik root 14, 4 Feb /dev/audio crw 1 zbik root 14, 3 Jun 7 21:56 /dev/dsp crw rw 1 root uucp 4, 64 Feb /dev/ttys0 crw rw 1 root uucp 4, 65 Feb /dev/ttys1 crw rw 1 root disk 9, 128 Feb /dev/nst0 crw rw 1 root disk 9, 129 Feb /dev/nst1 crw rw 1 root disk 9, 0 Feb /dev/st0 crw rw 1 root disk 9, 1 Feb /dev/st1 crw w 1 zbik tty 136, 0 Oct 18 21:19 /dev/pts/0 crw w 1 zbik tty 136, 1 Oct 18 16:40 /dev/pts/1 Linux HP-UX crw rw rw 1 bin mail 3 0x Oct 19 07:36 /dev/null crw rw rw 2 bin bin 205 0x Mar /dev/rmt/0m crw rw rw 2 bin bin 205 0x Mar /dev/rmt/0mb crw rw rw 2 bin bin 205 0x Mar /dev/rmt/0mn crw rw rw 2 bin bin 205 0x0200c0 Mar /dev/rmt/0mnb crw w 1 darin tty 157 0x Oct 18 18:15 /dev/pts/0 crw w 1 zbik tty 157 0x Oct 19 07:41 /dev/pts/1 crw rw rw 1 root root 157 0x Oct 18 19:32 /dev/pts/2 crw w 1 darin tty 157 0x Oct 19 07:40 /dev/pts/3 crw rw rw 1 root root 157 0x Oct 18 19:00 /dev/pts/4

8 Urządzenia blokowe brw rw 1 root disk 3, 0 Feb /dev/hda brw rw 1 root disk 3, 1 Feb /dev/hda1 brw 31 0x /dev/dsk/c1t4d0 brw rw 1 root disk 3, 2 Feb /dev/hda2 brw 31 0x /dev/dsk/c1t5d0 brw rw 1 root disk 3, 5 Feb /dev/hda5 brw 31 0x /dev/dsk/c1t6d0 brw rw 1 root disk 3, 6 Feb /dev/hda6 brw 31 0x /dev/dsk/c2t2d0 brw rw 1 root disk 3, 64 Feb /dev/hdb crw 188 0x /dev/rdsk/c1t4d0 brw rw 1 root disk 3, 65 Feb /dev/hdb1 crw 188 0x /dev/rdsk/c1t5d0 brw rw 1 root disk 8, 0 Feb /dev/sda crw 188 0x /dev/rdsk/c1t6d0 brw rw 1 root disk 8, 1 Feb /dev/sda1 crw 188 0x /dev/rdsk/c2t2d0 brw rw 1 root disk 8, 2 Feb /dev/sda2 brw rw 1 root disk 8, 16 Feb /dev/sdb brw rw 1 root disk 8, 17 Feb /dev/sdb1 brw rw 1 root disk 43, 0 Feb /dev/nb0 brw rw 1 root disk 43, 1 Feb /dev/nb1 brw rw 1 root disk 9, 0 Feb /dev/md0 brw rw 1 root disk 9, 1 Feb /dev/md1 brw rw 1 root disk 80, 0 Feb /dev/i2o/hda brw rw 1 root disk 80, 1 Feb /dev/i2o/hda1 brw rw 1 root disk 80, 2 Feb /dev/i2o/hda2 brw rw 1 root disk 80, 16 Feb /dev/i2o/hdb brw rw 1 root disk 80, 17 Feb /dev/i2o/hdb1 brw rw 1 root disk 72, 0 Feb /dev/ida/c0d0 brw rw 1 root disk 72, 1 Feb /dev/ida/c0d0p1 brw rw 1 root disk 72, 2 Feb /dev/ida/c0d0p2

9 Lista urządzeń ]$ cat /proc/devices Character devices: 1 mem 4 /dev/vc/0 4 tty 4 ttys 5 /dev/tty 5 /dev/console 6 lp 7 vcs 9 st 10 misc 21 sg 29 fb 136 pts Block devices: 1 ramdisk 3 ide0 7 loop 8 sd 9 md 11 sr 253 device mapper [user@host ]$ cat /proc/misc 184 microcode 63 device mapper 1 psaux 144 nvram 135 rtc 134 apm_bios

10 Lista dysków/partycji ]$ cat /proc/partitions major minor #blocks name loop hda hda hda hda hda dm dm dm dm dm dm dm dm dm dm sda sda1

11 Urządzenia SCSI ]$ cat /proc/scsi/scsi Attached devices: Host: scsi0 Channel: 00 Id: 01 Lun: 00 Vendor: SEAGATE Model: ST318404LW Rev: 0006 Type: Direct Access ANSI SCSI revision: 03 Host: scsi0 Channel: 00 Id: 03 Lun: 00 Vendor: COMPAQ Model: BD036745A4 Rev: B008 Type: Direct Access ANSI SCSI revision: 02 Host: scsi1 Channel: 00 Id: 03 Lun: 00 Vendor: TANDBERG Model: MLR3 Rev: 0404 Type: Sequential Access ANSI SCSI revision: 02 Host: scsi2 Channel: 00 Id: 04 Lun: 00 Vendor: ADAPTEC Model: RAID 5 Rev: 370F Type: Direct Access ANSI SCSI revision: 02 Host: scsi4 Channel: 00 Id: 00 Lun: 00 Vendor: LG Model: CD ROM CRD 8521B Rev: 1.02 Type: CD ROM ANSI SCSI revision: 02 Host: scsi8 Channel: 00 Id: 00 Lun: 00 Vendor: SWISSBIT Model: Victorinox Rev: 1.89 Type: Direct Access ANSI SCSI revision: 02

12 Modyfikacja listy urządzeń SCSI ]$ echo "scsi remove single device " > /proc/scsi/scsi [user@host ]$ echo "scsi remove single device " > /proc/scsi/scsi [user@host ]$ echo "scsi add single device " > /proc/scsi/scsi

13 LVM - lvdisplay [root@host root]# lvdisplay m /dev/vg00/tmp Logical volume LV Name /dev/vg00/tmp VG Name vg00 LV UUID 1VasLj g0wa oav0 XAQ5 s9ne ew73 n1lor8 LV Write Access read/write LV Status available # open 1 LV Size MB Current LE 129 Segments 2 Allocation next free (default) Read ahead sectors 0 Block device 253:3 Segments Logical extent 0 to 127: Type linear Physical volume /dev/hda4 Physical extents 1984 to 2111 Logical extent 128 to 128: Type linear Physical volume /dev/hda4 Physical extents 6887 to 6887

14 podkatalog /dev/vgxx root]# ls l /dev/vg00/ total 0 lrwxrwxrwx 1 root root 21 Oct 6 17:41 home > /dev/mapper/vg00 home lrwxrwxrwx 1 root root 20 Oct 6 17:41 opt > /dev/mapper/vg00 opt lrwxrwxrwx 1 root root 21 Oct 18 23:23 swap > /dev/mapper/vg00 swap lrwxrwxrwx 1 root root 20 Oct 18 23:24 tmp > /dev/mapper/vg00 tmp lrwxrwxrwx 1 root root 20 Oct 6 17:41 usr > /dev/mapper/vg00 usr lrwxrwxrwx 1 root root 20 Oct 6 17:41 var > /dev/mapper/vg00 var [root@host root]# ls l /dev/mapper/ total 0 crw 1 root root 10, 63 Oct 6 17:41 control brw 1 root root 253, 4 May 20 23:51 vg00 home brw 1 root root 253, 2 May 20 23:51 vg00 opt brw 1 root root 253, 9 May 20 23:51 vg00 swap brw 1 root root 253, 3 May 20 23:51 vg00 tmp brw 1 root root 253, 0 May 20 23:51 vg00 usr brw 1 root root 253, 1 May 20 23:51 vg00 var

15 Device mapper - tablice [root@host root]# dmsetup table vg00 home: linear 3: vg00 tmp: linear 3: vg00 tmp: linear 3: vg00 usr: linear 3:4 384 vg00 swap: linear 3: vg00 var: linear 3: vg00 opt: linear 3: Segments Logical extent 0 to 127: Type linear Physical volume /dev/hda4 Physical extents 1984 to 2111 Logical extent 128 to 128: Type linear Physical volume /dev/hda4 Physical extents 6887 to 6887

16 loopback HP character HP wszystko jest plikiem HP block Artemis scsi/scsi

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system.

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system. Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) All commands run from terminal as super user. Default CentOS 6.3 installation with two hard drives, /dev/sda

More information

Logical Volume Management for Linux on System z

Logical Volume Management for Linux on System z Logical Volume Management for Linux on System z Horst Hummel IBM Horst.Hummel@de.ibm.com February 29 th 2008 Session 9282 Agenda Logical volume management overview RAID levels Striping Mirroring Multipathing

More information

Managing Data Protection

Managing Data Protection Managing Data Protection with Red Hat Linux and Dell PowerVault Tape Autoloaders and Libraries Protecting data from disaster is a critical concern for any enterprise. This article explores Dell PowerVault

More information

Mastering Linux. 6 Devices 7 The /proc File System 8 Linux System Calls 9 Inline Assembly Code 10 Security 11 A Sample GNU/Linux Application

Mastering Linux. 6 Devices 7 The /proc File System 8 Linux System Calls 9 Inline Assembly Code 10 Security 11 A Sample GNU/Linux Application II Mastering Linux 6 Devices 7 The /proc File System 8 Linux System Calls 9 Inline Assembly Code 10 Security 11 A Sample GNU/Linux Application 6 Devices LINUX, LIKE MOST OPERATING SYSTEMS, INTERACTS WITH

More information

The Logical Volume Manager (LVM)

The Logical Volume Manager (LVM) Page 1 WHITEPAPER The Logical Volume Manager (LVM) This document describes the LVM in SuSE Linux. It is freely distributable as long as it remains unchanged. SuSE has included a Logical Volume Manager

More information

Root-on-LVM-on-RAID HOWTO

Root-on-LVM-on-RAID HOWTO Massimiliano Ferrero m.ferrero@midhgard.it This document describes a procedure to install a Linux system with software RAID and Logical Volume Manager (LVM) support and with a root file system stored into

More information

Recovering Data from Windows Systems by Using Linux

Recovering Data from Windows Systems by Using Linux Recovering Data from Windows Systems by Using Linux Published by the Open Source Software at Microsoft, May 27 Special thanks to Chris Travers, Contributing Author to the Open Source Software Lab Most

More information

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk.

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk. Linux Template Creation Guide How to build your own Linux VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Installing Xen Hypervisor... 2 2. Installing DomU (Paravirtualized)... 5 3. Installing

More information

Abstract. Microsoft Corporation Published: August 2009

Abstract. Microsoft Corporation Published: August 2009 Linux Integration Components Version 2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:

More information

Storage benchmarking cookbook

Storage benchmarking cookbook Storage benchmarking cookbook How to perform solid storage performance measurements Stijn Eeckhaut Stijn De Smet, Brecht Vermeulen, Piet Demeester The situation today: storage systems can be very complex

More information

Integrity Virtual Machines Technical Overview

Integrity Virtual Machines Technical Overview Integrity Virtual Machines Technical Overview Jörg Brand Support Zentrum Ratingen 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Agenda

More information

USB 2.0 Flash Drive User Manual

USB 2.0 Flash Drive User Manual USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6

More information

How To Manage Your Volume On Linux 2.5.5 (Evms) 2.4.5 On A Windows Box (Amd64) On A Raspberry Powerbook (Amd32) On An Ubuntu Box (Aes) On Linux

How To Manage Your Volume On Linux 2.5.5 (Evms) 2.4.5 On A Windows Box (Amd64) On A Raspberry Powerbook (Amd32) On An Ubuntu Box (Aes) On Linux www.suse.com/documentation Storage Administration Guide SUSE Linux Enterprise Server 10 SP3/SP4 March 6, 2011 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents

More information

Unix/Linux Forensics 1

Unix/Linux Forensics 1 Unix/Linux Forensics 1 Simple Linux Commands date display the date ls list the files in the current directory more display files one screen at a time cat display the contents of a file wc displays lines,

More information

VIA Fedora Linux Core 8 (x86&x86_64) VT8237R/VT8237A/VT8237S/VT8251/CX700/VX800 V-RAID V3.10 Driver Installation Guide

VIA Fedora Linux Core 8 (x86&x86_64) VT8237R/VT8237A/VT8237S/VT8251/CX700/VX800 V-RAID V3.10 Driver Installation Guide VIA Fedora Linux Core 8 (x86&x86_64) VT8237R/VT8237A/VT8237S/VT8251/CX700/VX800 V-RAID V3.10 Driver Installation Guide 1. Summary Version 0.8, December 03, 2007 Copyright 2003~2007 VIA Technologies, INC

More information

SecureDoc Linux 4.91-3, February 2010 Copyright 1997-2010 by WinMagic Inc.

SecureDoc Linux 4.91-3, February 2010 Copyright 1997-2010 by WinMagic Inc. SecureDoc Linux 4.91-3, February 2010 Copyright 1997-2010 by WinMagic Inc. All rights reserved. Printed in Canada Many products, software and technologies are subject to export control for both Canada

More information

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 Download the software from http://www.starwindsoftware.com/ Click on products then under

More information

Shared Storage Setup with System Automation

Shared Storage Setup with System Automation IBM Tivoli System Automation for Multiplatforms Authors: Markus Müller, Fabienne Schoeman, Andreas Schauberer, René Blath Date: 2013-07-26 Shared Storage Setup with System Automation Setup a shared disk

More information

TELE 301 Lecture 7: Linux/Unix file

TELE 301 Lecture 7: Linux/Unix file Overview Last Lecture Scripting This Lecture Linux/Unix file system Next Lecture System installation Sources Installation and Getting Started Guide Linux System Administrators Guide Chapter 6 in Principles

More information

LVM2 data recovery. Milan Brož mbroz@redhat.com. LinuxAlt 2009, Brno

LVM2 data recovery. Milan Brož mbroz@redhat.com. LinuxAlt 2009, Brno LVM2 data recovery Milan Brož mbroz@redhat.com LinuxAlt 2009, Brno Linux IO storage stack [ VFS ] filesystem [ volumes ] MD / LVM / LUKS / MPATH... [ partitions ] legacy partition table recovery from the

More information

Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines. An Oracle Technical White Paper December 2008

Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines. An Oracle Technical White Paper December 2008 Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines An Oracle Technical White Paper December 2008 Converting Linux and Windows Physical and Virtual Machines to Oracle

More information

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption This is a step-by-step guide showing how to create an encrypted bootable Backtrack 4 USB thumb drive. I put quotes around full in the title

More information

Private Server and Physical Server Backup and Restoration:

Private Server and Physical Server Backup and Restoration: Technical Document Series Number 014 Private Server and Physical Server Backup and Restoration: A Technical Guide for ISP/HSP Administrator Covers Ensim ServerXchange 2.5 and Earlier Date: September 25,

More information

-------------------------------------------------------------------- README.TXT

-------------------------------------------------------------------- README.TXT README.TXT Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers Adaptec ASR-6405/ASR-6445/ASR-6805/ASR-6805Q/ASR-6405E/ASR-6805E/ASR-6805E R5 SAS/SATA

More information

Linux System Administration. Paul Cobbaut

Linux System Administration. Paul Cobbaut Linux System Administration Paul Cobbaut Linux System Administration Paul Cobbaut lt-1.9 Publication date Sat 25 Apr 215 1:1:25 AM CEST Abstract This book is meant to be used in an instructor-led training.

More information

A Bootable Embedded-Linux USB Flash Drive HOWTO By: Wiwat Tara, Email:ohhohe@gmail.com March 22, 2005

A Bootable Embedded-Linux USB Flash Drive HOWTO By: Wiwat Tara, Email:ohhohe@gmail.com March 22, 2005 A Bootable Embedded-Linux USB Flash Drive HOWTO By: Wiwat Tara, Email:ohhohe@gmail.com March 22, 2005 Requirement USB Flash Drive Host: x86 Fedora Core 2 or other Linux distros Target: x86 with bootable

More information

Enterprise Storage Management with Red Hat Enterprise Linux for Reduced TCO. Dave Wysochanski (dave.wysochanski@redhat.com)

Enterprise Storage Management with Red Hat Enterprise Linux for Reduced TCO. Dave Wysochanski (dave.wysochanski@redhat.com) Enterprise Storage Management with Red Hat Enterprise Linux for Reduced TCO Dave Wysochanski (dave.wysochanski@redhat.com) Agenda Enterprise Storage Problems Red Hat Enterprise Linux Solutions Device Mapper

More information

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose

More information

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting.

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. (Version 1.0) 10(1)/2008-OTC/CHN-PROJECT-16/05/2013 216 OPEN TECHNOLOGY CENTRE NATIONAL INFORMATICS CENTRE DEPARTMENT OF

More information

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0 LBNC Compute Cluster Installation and Configuration Author: Markus Baertschi Owner: Markus Baertschi Customer: LBNC Subject: LBNC Compute Cluster Installation and Configuration Page 1 of 14 Contents 1.

More information

1. Dynamic management of DASD devices in Linux running on zseries. 3. Linux on IBM zseries: Configuring gcc as a cross-compiler

1. Dynamic management of DASD devices in Linux running on zseries. 3. Linux on IBM zseries: Configuring gcc as a cross-compiler Table of Contents 1. Dynamic management of DASD devices in Linux running on zseries 2. Formatting and labeling a DASD volume for Linux guests running under z/vm 3. Linux on IBM zseries: Configuring gcc

More information

iscsi Performance Factors

iscsi Performance Factors iscsi Performance Factors Table of Contents Introduction......1 General Testing Parameters......1 iscsi on SLES 10 SP1....2 Hardware Configuration......2 Test Setup......2 iscsi Write Performance Test

More information

Storage Fusion Architecture. Multipath (v1.8) User Guide

Storage Fusion Architecture. Multipath (v1.8) User Guide Storage Fusion Architecture Multipath (v1.8) User Guide Table of Contents... 2 1. OVERVIEW... 3 2. DDN MULTIPATH RPM VERSIONS... 3 3. INSTALLATION... 4 3.1 RPM INSTALLATION... 4 3.1.1 DETERMINING THE LINUX

More information

Linux Software Raid. Aug 2010. Mark A. Davis

Linux Software Raid. Aug 2010. Mark A. Davis Linux Software Raid Aug 2010 Mark A. Davis a What is RAID? Redundant Array of Inexpensive/Independent Drives It is a method of combining more than one hard drive into a logic unit for the purpose of: Increasing

More information

Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers AFM-700 Flash Backup Unit

Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers AFM-700 Flash Backup Unit README.TXT Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers AFM-700 Flash Backup Unit NOTE: All Adaptec by PMC products are UL listed and for use

More information

Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality

Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality Introduction A History of Hard Drive Capacity Starting in 1984, when IBM first introduced a 5MB hard drive in

More information

These application notes are intended to be a guide to implement features or extend the features of the Elastix IP PBX system.

These application notes are intended to be a guide to implement features or extend the features of the Elastix IP PBX system. Elastix Application Note #201201091: Elastix RAID Setup Step By Step Including Recovery Title Elastix Raid Setup Step By Step Including Recovery Author Bob Fryer Date Document Written 9 th January 2012

More information

How to Install Windows on Xen TM 3.0

How to Install Windows on Xen TM 3.0 How to Install Windows on Xen TM 3.0 A XenSource Technical Note for the Windows 2003 Server Introduction This note describes how to install Windows 2003 Server on Xen. It provides an overview of the Linux

More information

Chip Coldwell Senior Software Engineer, Red Hat

Chip Coldwell Senior Software Engineer, Red Hat Chip Coldwell Senior Software Engineer, Red Hat Classical Storage Stack: the top layer File system examples: ext3, NFS, GFS built on Linux VFS ( Virtual File System abstraction) defines on-disk structure:

More information

Configuring Linux to Enable Multipath I/O

Configuring Linux to Enable Multipath I/O Configuring Linux to Enable Multipath I/O Storage is an essential data center component, and storage area networks can provide an excellent way to help ensure high availability and load balancing over

More information

When Good Disks Go Bad: Dealing with Disk Failures Under LVM

When Good Disks Go Bad: Dealing with Disk Failures Under LVM When Good Disks Go Bad: Dealing with Disk Failures Under LVM Abstract... 3 Background... 3 1. Preparing for Disk Recovery... 4 Defining a Recovery Strategy... 4 Using Hot-Swappable Disks... 4 Using Alternate

More information

What is involved in input/output? How does the operating system manage I/O?

What is involved in input/output? How does the operating system manage I/O? Input/Output Input and Output Reference: Operating Systems, Fourth Edition, William Stallings, Chapters 11, 12 Nick Urbanik Copyright Conditions: GNU FDL (seehttp://www.gnu.org/licenses/fdl.html)

More information

Linux Questions and Answers

Linux Questions and Answers Linux Questions and Answers A Linux White Paper Preface For someone new (and even not so new) to Linux, there are hundreds of questions, problems and concerns that arise during the learning process, especially

More information

Recovering Data from Windows Systems by Using Linux

Recovering Data from Windows Systems by Using Linux Recovering Data from Windows Systems by Using Linux Published by the Open Source Software Lab at Microsoft. November 2007. Special thanks to Chris Travers, Contributing Author to the Open Source Software

More information

NAStorage. Administrator Guide. Security Policy Of NAStorage Under UNIX/LINUX Environment

NAStorage. Administrator Guide. Security Policy Of NAStorage Under UNIX/LINUX Environment NAStorage Administrator Guide Security Policy Of NAStorage Under UNIX/LINUX Environment Version 1.00 10/01/2002 Prepared by: Leon Hsu TS Engineer Ingrasys Technology Inc. E-mail: support@ingrasys.com UNIX/LINUX

More information

Allion Ingrasys Europe. NAStorage. Security policy under a UNIX/LINUX environment. Version 2.01

Allion Ingrasys Europe. NAStorage. Security policy under a UNIX/LINUX environment. Version 2.01 Allion Ingrasys Europe NAStorage Security policy under a UNIX/LINUX environment Version 2.01 Security policy under a UNIX/LINUX environment Start Enabling a Unix/Linux Network (NFS Protocol) Adding a UNIX

More information

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux By the OS4 Documentation Team Prepared by Roberto J Dohnert Copyright 2013, PC/OpenSystems LLC This whitepaper describes how

More information

USTM16 Linux System Administration

USTM16 Linux System Administration USTM16 Linux System Administration Lesson 4: Memory Management and Backups Instructor: Peter Chung (cspeter@cse.ust.hk) Peter Chung (cspeter) 1 GNOME System Monitor A graphical user interface to display

More information

Installing Debian with SATA based RAID

Installing Debian with SATA based RAID Installing Debian with SATA based RAID Now for 2.6 kernel version I've read that there will soon be an installer that will do raid installs and perhaps even support SATA, but today it is manual. My install

More information

Installing a USB external hard drive backup (Linux)

Installing a USB external hard drive backup (Linux) Installing a USB external hard drive backup (Linux) RWD Nickalls, dick@nickalls.org www.nickalls.org www.nickalls.org/dick/papers/linux/usbdrive.pdf revision 5b (July 2015) 1 Introduction 2 2 Devices and

More information

Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there?

Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there? Filesystems, LVM, MD Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there? Filesystem - Introduction Short description of

More information

Linux System Administration

Linux System Administration System Backup Strategies Objective At the conclusion of this module, the student will be able to: describe the necessity for creating a backup regimen describe the advantages and disadvantages of the most

More information

Analysis One Code Desc. Transaction Amount. Fiscal Period

Analysis One Code Desc. Transaction Amount. Fiscal Period Analysis One Code Desc Transaction Amount Fiscal Period 57.63 Oct-12 12.13 Oct-12-38.90 Oct-12-773.00 Oct-12-800.00 Oct-12-187.00 Oct-12-82.00 Oct-12-82.00 Oct-12-110.00 Oct-12-1115.25 Oct-12-71.00 Oct-12-41.00

More information

Install Solaris on Oracle Virtual Box:

Install Solaris on Oracle Virtual Box: Install Solaris on Oracle Virtual Box: Download software as below: Oracle Virtual Box Version: 4.2.18 (VirtualBox-4.2.18-88781-Win) http://www.oracle.com/technetwork/server-storage/virtualbox/downloads/index.html

More information

Hacking Linux-Powered Devices. Stefan Arentz <stefan@soze.com>

Hacking Linux-Powered Devices. Stefan Arentz <stefan@soze.com> Hacking Linux-Powered Devices Stefan Arentz Part I Introduction What is Embedded Linux? Embedded usually means that it is a device with limited and specialized capabilities. It is not

More information

Creating a Disk Drive For Linux

Creating a Disk Drive For Linux Storage Presenter:! Robert Wang Linux s Abstraction (vfs) (file systems) (physical devices) Storage Device Disk Drive Multiple Drives RAID! Redundant Array of Independent/Inexpensive Disks! Software or

More information

Linux System Administration. Paul Cobbaut

Linux System Administration. Paul Cobbaut Linux System Administration Paul Cobbaut Linux System Administration Paul Cobbaut Publication date 215-5-24 CEST Abstract This book is meant to be used in an instructor-led training. For self-study, the

More information

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family *5991-5301* Part number: 5991-5301 Edition: 3, E0406 Copyright 2006 Hewlett-Packard Development

More information

Total Backup Recovery Server for Linux. User s Guide

Total Backup Recovery Server for Linux. User s Guide Total Backup Recovery Server for Linux User s Guide Content Copyright Notice 3 Chapter 1. Introduction 4 1.1 Total Backup Recovery Server for Linux a reliable solution for SMB users 4 1.2 Features of Total

More information

How To Align A File System In Virtual Environments

How To Align A File System In Virtual Environments Technical Report Best Practices for File System Alignment in Virtual Environments Abhinav Joshi, Eric Forgette, Peter Learmonth, Jon Benedict, NetApp January 2011 TR-3747 ABSTRACT This document provides

More information

Abstract. Microsoft Corporation Published: December 2009

Abstract. Microsoft Corporation Published: December 2009 Linux Integration Components Version 2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:

More information

Linux Boot Loaders Compared

Linux Boot Loaders Compared Linux Boot Loaders Compared L.C. Benschop May 29, 2003 Copyright c 2002, 2003, L.C. Benschop, Eindhoven, The Netherlands. Permission is granted to make verbatim copies of this document. This is version

More information

Linux System Recovery Guide. Version 7.1

Linux System Recovery Guide. Version 7.1 TM Linux System Recovery Guide Version 7.1 Trademarks and Copyrights Copyright SBAdmin, Inc. 1999-2009 SBAdmin is a registered trademark of SBAdmin, Inc. SBAdmin is a trademark of Storix, Inc in the USA

More information

Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS

Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS Software User s Guide June 2012 Reference Number: 454301, Revision: 1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL

More information

System administration basics

System administration basics Embedded Linux Training System administration basics Michael Opdenacker Thomas Petazzoni Free Electrons Copyright 2009, Free Electrons. Creative Commons BY SA 3.0 license Latest update: Dec 20, 2010, Document

More information

Cloning Complex Linux Servers

Cloning Complex Linux Servers Cloning Complex Linux Servers Cloning A Linux Machine That Has A Complex Storage Setup Where I work we have Cent OS servers whose drives are in various software raid and LVM2 configurations. I was recently

More information

EXPLORING LINUX KERNEL: THE EASY WAY!

EXPLORING LINUX KERNEL: THE EASY WAY! EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment

More information

Abstract. Microsoft Corporation Published: November 2011

Abstract. Microsoft Corporation Published: November 2011 Linux Integration Services Version 3.2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:

More information

10 Red Hat Linux Tips and Tricks

10 Red Hat Linux Tips and Tricks Written and Provided by Expert Reference Series of White Papers 10 Red Hat Linux Tips and Tricks 1-800-COURSES www.globalknowledge.com 10 Red Hat Linux Tips and Tricks Compiled by Red Hat Certified Engineers

More information

Chapter 5. Backing Up and Restoring TiVo Data

Chapter 5. Backing Up and Restoring TiVo Data Chapter 5 Backing Up and Restoring TiVo Data Y our TiVo is both a computer system and a home entertainment appliance, and should therefore be backed up at various times. Like any other computer system,

More information

Proceedings of the Linux Symposium

Proceedings of the Linux Symposium Proceedings of the Linux Symposium Volume One July 20nd 23th, 2005 Ottawa, Ontario Canada Conference Organizers Andrew J. Hutton, Steamballoon, Inc. C. Craig Ross, Linux Symposium Stephanie Donovan, Linux

More information

Linux Recovery Utility for HP Integrity Servers

Linux Recovery Utility for HP Integrity Servers Linux Recovery Utility for HP Integrity Servers User's Guide *5991 5300* HP Part Number: 5991 5300 Published: April 2006 Edition: 1 Copyright 2006 Hewlett-Packard Development Company, L.P. Confidential

More information

V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production

V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production V2P2 and DigiBESS: case studies of open IT infrastructures for Islandora devel and production Giancarlo Birello, Anna Perin IRCrES-CNR Italy Simona Abbà IPSP-CNR - Italy Winner of the Canada-Italy Innovation

More information

======================================================= Tools to wipe out unwanted data: =======================================================

======================================================= Tools to wipe out unwanted data: ======================================================= WIKIPEDIA ON LINUX ENCRYPTION http://en.wikipedia.org/wiki/encryption_on_linux Tools to wipe out unwanted data: Darik's Boot and Nuke: http://dban.sourceforge.net/ Thomas Greene's Linux Wipe Tools: http://basicsec.org/tools.html

More information

Chapter 8: Installing Linux The Complete Guide To Linux System Administration Modified by M. L. Malone, 11/05

Chapter 8: Installing Linux The Complete Guide To Linux System Administration Modified by M. L. Malone, 11/05 Chapter 8: Installing Linux The Complete Guide To Linux System Administration Modified by M. L. Malone, 11/05 At the end of this chapter the successful student will be able to Describe the main hardware

More information

Building a diskless Linux Cluster for high performance computations from a standard Linux distribution

Building a diskless Linux Cluster for high performance computations from a standard Linux distribution Building a diskless Linux Cluster for high performance computations from a standard Linux distribution Stefan Böhringer Institut für Humangenetik Universitätsklinikum Essen April, 7 th, 2003 Abstract This

More information

The Linux System Administrator's Guide

The Linux System Administrator's Guide The Linux System Administrator's Guide Version 0.9 Lars Wirzenius Joanna Oja Stephen Stafford Alex

More information

Raidtec CS3102 Release Notes

Raidtec CS3102 Release Notes RELEASE NOTES Raidtec CS3102 Firmware Raidtec CS3102 Release Notes Version 1.11a Raidtec CS3102 Firmware Release Notes These Release notes apply to the following: Raidtec CS3102 firmware Date: 13 May 2005

More information

On Disk Encryption with Red Hat Enterprise Linux

On Disk Encryption with Red Hat Enterprise Linux On Disk Encryption with Red Hat Enterprise Linux Author: Contact: Copyright: URL: Bowe Strickland, Curriculum Manager bowe@redhat.com Copyright 2011, Red Hat, Inc. All rights reserved. http://people.redhat.com/~bowe/summit/2011/tot/on_disk_encryption

More information

Add Disk Space to a VM when a Partition is Full

Add Disk Space to a VM when a Partition is Full Add Disk Sace to a VM when a Partition is Full Document ID: 119025 Contributed by Mike Dooley, Cisco TAC Engineer. Jun 29, 2015 Contents Introduction Background Information Procedure Section 1 Determine

More information

System Administration

System Administration Performance Monitoring For a server, it is crucial to monitor the health of the machine You need not only real time data collection and presentation but offline statistical analysis as well Characteristics

More information

Quick Setup Guide RAID Array 8000/ESA12000 Fibre Channel Storage Subsystem for Hewlett Packard HP-UX

Quick Setup Guide RAID Array 8000/ESA12000 Fibre Channel Storage Subsystem for Hewlett Packard HP-UX Quick Setup Guide RAID Array 8000/ESA12000 Fibre Channel Storage Subsystem for Hewlett Packard HP-UX AA RFBCA TE 387373-001 Before You Begin In this Quick Setup Guide we tell you how to create an initial

More information

Matrix 510/520 User Guide

Matrix 510/520 User Guide Matrix 510/520 User Guide Introduction: Matrix 510/520 are ARM9-based Linux ready industrial computer. The key features are as follow: Matrix 520 Layout 1. ARM920T ARM Thumb Processor with 200MIPS at 180MHz,

More information

File System & Device Drive. Overview of Mass Storage Structure. Moving head Disk Mechanism. HDD Pictures 11/13/2014. CS341: Operating System

File System & Device Drive. Overview of Mass Storage Structure. Moving head Disk Mechanism. HDD Pictures 11/13/2014. CS341: Operating System CS341: Operating System Lect 36: 1 st Nov 2014 Dr. A. Sahu Dept of Comp. Sc. & Engg. Indian Institute of Technology Guwahati File System & Device Drive Mass Storage Disk Structure Disk Arm Scheduling RAID

More information

BackTrack Hard Drive Installation

BackTrack Hard Drive Installation BackTrack Hard Drive Installation BackTrack Development Team jabra [at] remote-exploit [dot] org Installing Backtrack to a USB Stick or Hard Drive 1 Table of Contents BackTrack Hard Drive Installation...3

More information

GNU/LINUX Forensic Case Study (ubuntu 10.04)

GNU/LINUX Forensic Case Study (ubuntu 10.04) GNU/LINUX Forensic Case Study (ubuntu 10.04) Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License wim.bertels@khleuven.be FCCU Federal Computer Crime Unit of Belgium Assistance house

More information

Data Migration Service for isr6200

Data Migration Service for isr6200 Data Migration Service for isr6200 Planning Guide ISR654607-00 C Data Migration Service for isr6200 Planning Guide Information furnished in this manual is believed to be accurate and reliable. However,

More information

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!)

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!) 1 Data storage A Simple Overview 1. HW: SCSI/IDE/SATA/SAS (SAN!) 2. HW/SW: RAID 3. SW: Logical volumes 4. SW: Journalling filesystems 5. SW/NET: Networked filesystem (NAS!) DAS-NAS-SAN 2 RAID Redundant

More information

Capturing a Forensic Image. By Justin C. Klein Keane <jukeane@sas.upenn.edu> 12 February, 2013

Capturing a Forensic Image. By Justin C. Klein Keane <jukeane@sas.upenn.edu> 12 February, 2013 Capturing a Forensic Image By Justin C. Klein Keane 12 February, 2013 Before you Begin The first step in capturing a forensic image is making an initial determination as to the

More information

Partitioning. Files on the Hard Drive. Administration of Operating Systems DO2003. Partition = Binder with index. Write file = Insert document

Partitioning. Files on the Hard Drive. Administration of Operating Systems DO2003. Partition = Binder with index. Write file = Insert document Administration of Operating Systems DO2003 Mounting the file structure Devices Wecksten, Mattias 2008 Partitioning Wecksten, Mattias 2008 Files on the Hard Drive Partition = Binder with index Write file

More information

Configuration Maximums VMware Infrastructure 3

Configuration Maximums VMware Infrastructure 3 Technical Note Configuration s VMware Infrastructure 3 When you are selecting and configuring your virtual and physical equipment, you must stay at or below the maximums supported by VMware Infrastructure

More information

How To Configure Linux On A Microsoft Ipa 2.2.2 (Amd64) (Amd86) (Ahemper) (For Amd64) And Ipa (Amd66) (Oramd64 (Ortho)

How To Configure Linux On A Microsoft Ipa 2.2.2 (Amd64) (Amd86) (Ahemper) (For Amd64) And Ipa (Amd66) (Oramd64 (Ortho) () EXPRESS5800/320La/320La-R Linux Network Operating System Configuration Guide Proprietary Notice and Liability Disclaimer The information disclosed in this document, including all designs and related

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

WES 9.2 DRIVE CONFIGURATION WORKSHEET WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may

More information

Revision 5 - (Released April 2008) Added further definitions of RFID tag contents and testing requirements for RFID tag read range.

Revision 5 - (Released April 2008) Added further definitions of RFID tag contents and testing requirements for RFID tag read range. IBM LTO Ultrium Cartridge Label Specification (Revision 6) Part Number 19P0034 EC - M10321 Feb, 2009 IBM Corporation 9000 South Rita Road Tucson, AZ 85744 Notes: The hard copy version of this document

More information

RECOVERING DIGITAL EVIDENCE FROM LINUX SYSTEMS

RECOVERING DIGITAL EVIDENCE FROM LINUX SYSTEMS Chapter 19 RECOVERING DIGITAL EVIDENCE FROM LINUX SYSTEMS Philip Craiger Abstract As Linux-kernel-based operating systems proliferate there will be an inevitable increase in Linux systems that law enforcement

More information

ipac-5010 User Guide + -

ipac-5010 User Guide + - ipac-5010 User Guide Introduction: ipac-5010 is ARM9-based Linux ready industrial Programmable Automation Controller. The key features are as follow: 1. ARM920T ARM Thumb Processor with 200MIPS at 180MHz,

More information

Booting Linux from a USB Flash Device on MPC5200 Systems David Wolfe, Infotainment, Multimedia and Telematics Division

Booting Linux from a USB Flash Device on MPC5200 Systems David Wolfe, Infotainment, Multimedia and Telematics Division Freescale Semiconductor Application Note AN3217 Rev. 0, 1/2006 Booting Linux from a USB Flash Device on MPC5200 Systems by David Wolfe, Infotainment, Multimedia and Telematics Division This document demonstrates

More information

LAE 4.6.0 Enterprise Server Installation Guide

LAE 4.6.0 Enterprise Server Installation Guide LAE 4.6.0 Enterprise Server Installation Guide 2013 Lavastorm Analytics, Inc. Rev 01/2013 Contents Introduction... 3 Installing the LAE Server on UNIX... 3 Pre-Installation Steps... 3 1. Third-Party Software...

More information