Week Fourteen Student name: Mike Gallagher

Slides:



Advertisements
Similar presentations
Basic Unix system administration
Advertisements

Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
Allocation Methods - Contiguous
Ext2/Ext3 Linux File System Reporter: Po-Liang, Wu.
File System Basics Brandon Checketts. Some terminology Superblocks Inodes Journaling Hard links Symbolic links Directory entries.
CIS 240 Introduction to UNIX Instructor: Sue Sampson.
Introduction to Unix (CA263) File System
FIRST COURSE Microsoft Access (Basics). XP Objectives Define the terms field, record, table, relational database, primary key, and foreign key. Learn.
Introduction to Kernel
19 Advanced Operating Systems The LINUX file system.
Linux+ Guide to Linux Certification, Second Edition
9 Advanced Operating Systems File System Internals.
Computer Forensics Principles and Practices by Volonino, Anzaldua, and Godwin Chapter 6: Operating Systems and Data Transmission Basics for Digital Investigations.
Guide To UNIX Using Linux Third Edition
Linux Install. Resources Guide to Linux Installation and Administration, Nicholas Wells, Course Technology, 2000.
MSSYS The Unix File System S5FS (circa 1980)
Laksh mi.  fdisk is an interactive utility to manipulate disk partitions.  Use fdisk –l to review the disks and partitions on the system.  Use fdisk.
File System and Directory Structure in Linux. What is File System In a computer, a file system is the way in which files are named and where they are.
Agenda 1. Present weekly Power Point presentation 2. Open source presentations 3. Final exam review link available 4. All lab assignments due by August.
Backups in Linux Ning Zhu Class presentation. Introduction The dump and restore commands are the most common way to create and restore from backups in.
Guide To UNIX Using Linux Fourth Edition
Unix File System Internal Structures By C. Shing ITEC Dept Radford University.
Computer Concepts 2013 Chapter 4 Operating Systems and File Management.
Filesystem Hierarchy Standard (FHS) –Standard of outlining the location of set files and directories on a Linux system –Gives Linux software developers.
Guide to Linux Installation and Administration, 2e 1 Chapter 9 Preparing for Emergencies.
Week Thirteen Agenda Link of the week Use of the Virtual Machine Review the next lab assignment Expected outcomes Next lab assignment Upcoming deadlines.
Linux+ Guide to Linux Certification, Second Edition
CSE 451: Operating Systems
Chapter 6: Linux Filesystem Administration
1 Interface Two most common types of interfaces –SCSI: Small Computer Systems Interface (servers and high-performance desktops) –IDE/ATA: Integrated Drive.
1 Objectives Manage and install new file systems.
File Systems— NTFS versus Ext2FS Yingfei Wang Course: Operating Systems Instructor: Prof. Anvari.
Welcome to JICA SHORT COURSE ON LINUX The Linux 6-Weeks Labs began on 17 Sept. There will be two sessions, currently scheduled for Tuesday 4-6PM and Wed.
Device and Filesystem Management CSCI N321 – System and Network Administration Copyright © 2000, 2010 by Scott Orr and the Trustees of Indiana University.
UNIX File System by Tero Toikkanen, CAP02S. UNIX Multi-user system Multi-user system Multi-tasking system Multi-tasking system Wide selection of tools.
Creating and Managing File Systems. Module 5 – Creating and Managing File Systems ♦ Overview This module deals with the structure of the file system,
Linux+ Guide to Linux Certification, Third Edition
Linux+ Guide to Linux Certification, Third Edition
Ext2/Ext3 Linux File System Reporter: Po-Liang, Wu.
System Administration – Part 2. Devices in UNIX are files: A device can be accessed with different file names All device files are stored in /dev or its.
Unix File Access Unix file access is accomplished via a series of tables Process file table System file table v-nodes (sometimes i-nodes)
Slide: 1 UNIX FILE SYSTEM By:Qing Yang ID: Operating System Research Topic December, 2000.
Linux Filesystem WeeSan Lee. Roadmap Disk Partitions The Filesystem Filesystem Mouting & Umounting File Tree File Type File Permission.
Agenda 1. Present weekly Power Point presentation 2. Open source presentations 3. Final exam review link available 4. All lab assignments due by December.
Week Fourteen Student name: David Long Open source topic : KeePass Student name: Matthew Tankersley Open source topic : Blender 3D Modeling Student name:
File system and file structures
File System Lab. ext2 file system layout The layout of the system:
Linux Filesystem Administration
Getting Started with Linux
POS 420 Complete Week 2 To purchase this material click below link Complete-Week-2 For more classes visit.
Chapter 8 Unix & Linux.
Configuring Disk Quotas
EXT in Detail High-Performance Database Research Center
Introduction to Kernel
Chapter 11: File System Implementation
Chapter 12: File System Implementation
Filesystems.
Linux Virtual Filesystem
KERNEL ARCHITECTURE.
ITEC400 Winter 2017 Week Fourteen Professor Robert D’Andrea
Adding New Users, Storage, File System
Welcome to JICA SHORT COURSE ON LINUX
The Linux Command Line Chapter 2
File Structure 2018, Spring Pusan National University Joon-Seok Kim
Operating System Module 1: Linux Installation
OPS235 Lab4: Investigations 5 – 9
Working with Mac OS and Linux
Modern PC operating systems
User accounts.
User accounts.
Presentation transcript:

Week Fourteen Student name: Mike Gallagher Open source topic : Wireshark Student name: Shanell Looney Open source topic : Kee Pass Student name: Zachary Chamberlain Open source topic : VMWare Player Student name: James O'Keeffe Open source topic : Boot and Nuke Student name: Josh Fields Open source topic : OpenVPN

UNIX Operating System The dumpe2fs command prints the super block and blocks group information for the filesystem present on a device. Lab Assignment 12-1 can be submitted using the dumpe2fs command. The dumpe2fs command must be used on Knoppix software because the Unix / Linux filesystem blocks.

UNIX Operating System Blocks are used for two different purposes: Most blocks stores user data aka files (user data). Some blocks in every file system store the file system's metadata. So what is metadata? In simple words Metadata describes the structure of the file system. Most common metadata structure the superblock, inode and directories.

UNIX Operating System Superblock: Each file system is different and they have a type like ext2, ext3 etc. Further each file system has size like 5 GB, 10 GB and status such as mount status. In short each file system has a superblock, which contains information about file system such as: 1. File system type 2. Size 3. Status 4. Information about other metadata structures

UNIX Operating System If this information lost, you are in trouble (data loss) so Linux maintains multiple redundant copies of the superblock in every file system. This is very important in many emergency situations, for example you can use backup copies to restore damaged primary super block. Following command displays primary and backup superblock location on /dev/sda3: # dumpe2fs /dev/hda3 | grep -i superblock

UNIX Operating System primary superblock is present on block group 0, back up superblock is present on block group 1, 3, 5, 7, 9.

UNIX Operating System The cs.franklin.edu machine requires root permission to execute the dumpe2fs command. tune2fs command is helpful to manipulate the filesystem parameters of a ext2, or ext3, or ext4 type file system.

UNIX Operating System All lab assignments due 4/19/14