COP 4343 Unix System Administration

Slides:



Advertisements
Similar presentations
Linux+ Guide to Linux Certification, Second Edition
Advertisements

Chapter 9 Part III Linux File System Administration
System Administration Storage Systems. Agenda Storage Devices Partitioning LVM File Systems.
Management and Optimization of File System
Basic Unix system administration
Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
1 itec 400 Unix File Systems George Vaughan Franklin University.
Warren Myers BGLUG 4 Aug  Digital Ocean Sign in/up ( Create Droplet (VM)  VirtualBox Create new VM Mount OS ISO Boot and.
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.
Chapter 8: Adding a Disk — Unix Hard Disk Basics Installation and Configuration Barry Kane CMSC-691X.
Partitioning the SD card ● First of all remember that check the drive which you are formatting otherwise you will loose all your data, “SDA” is reserved.
Configuring Disk Quotas Linux System Administration To implement disk quotas, use the following steps: Enable quotas per file system by modifying /etc/fstab.
SUSE Linux Enterprise Server Administration (Course 3037)
Linux Filesystem Management
New SA Training Topic 4: System Architecture  System architecture is a broad topic, comprised of many different things. In our organization, SA’s primarily.
Linux Installation and Administration – Lesson 5 Tutor: George Papamarkos Topic: Devices in Linux.
This courseware is copyrighted © 2011 gtslearning. No part of this courseware or any training material supplied by gtslearning International Limited to.
Guide to Linux Installation and Administration, 2e1 Chapter 3 Installing Linux.
Device and Filesystem Management CSCI N321 – System and Network Administration Copyright © 2000, 2012 by Scott Orr and the Trustees of Indiana University.
Guide to Linux Installation and Administration, 2e1 Chapter 8 Basic Administration Tasks.
Advanced UNIX File Systems Berkley Fast File System, Logging File System, Virtual File Systems.
Disks, Filesystems 1.  sudo and PATH (environment)  disks  partitioning  formatting file systems: mkfs command  checking file system integrity: fsck.
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.
Chapter 1 Managing Storage. Contents Understanding Partitioning Understanding LVM Understanding RAID Understanding Clustering and GFS Using Access Control.
1 Objectives Manage and install new file systems.
The Linux Operating System Lecture 3: Becoming the Superuser and Users and Groups The Tonga Institute of Higher Education.
Sys Admin Course Physical Storage and File Systems Fourie Joubert.
More on file systems, Booting Todd Kelley CST8177– Todd Kelley1.
Device and Filesystem Management CSCI N321 – System and Network Administration Copyright © 2000, 2010 by Scott Orr and the Trustees of Indiana University.
Chapter 5 File Management File System Implementation.
4061 Session 12 (2/22). Today Files and Directories.
More on file systems, Booting Todd Kelley CST8177– Todd Kelley1.
Creating and Managing File Systems. Module 5 – Creating and Managing File Systems ♦ Overview This module deals with the structure of the file system,
1 LINUX SECURITY. 2 Outline Introduction Introduction - UNIX file permission - UNIX file permission - SUID / SGID - SUID / SGID - File attributes - File.
Linux+ Guide to Linux Certification Chapter Six Linux Filesystem Administration.
CSCI 330 UNIX and Network Programming Unit XX: Linux Administration.
Filesystem Management and Backups. 2 Section Overview Devices and Files Filesystem Management Network Filesystems Backups.
CSC414 “Introduction to UNIX/ Linux” Lecture 6. Schedule 1. Introduction to Unix/ Linux 2. Kernel Structure and Device Drivers. 3. System and Storage.
Hp education services education.hp.com hp education services education.hp.com 1 HP World/Interex 2002 Linux File System Support Chris Cooper (734)
Lecture 4 & 5: System Architecture  File systems  Devices  File system permissions  Review of Linux runlevels  In-class exercise.
System initialization Unit objectives A.Outline steps necessary to boot a Linux system, configure LILO and GRUB boot loaders, and dual boot Linux with.
Materi managing user & groups, file system Managing Software Packages and File Systems The Complete Guide to Linux System Administration Chapter 10.
1 C1-UD 6-6 BASIC LINUX FILE MANAGEMENT. Part IV. File System Administration Academic Year DAI. Credit 1 (Single and Multiuser Operating Systems)
ORAFACT The Linux File System. ORAFACT Filesystem Support Support for dozens of filesystem types including: Minix, ext2, MS-DOS, UMSDOS, VFAT, NTFS, NFS,
Memory management. Linux Memory Management Total memory available for processes = real memory + paging space - 1MB. First megabyte of real memory is used.
Linux Filesystem Administration
1 COP 4343 Unix System Administration Unit 1: –Linux OS structure –Distributions –Hardware inventory –Disks and partitions –Installation steps –Boot loader.
Linux and File Systems What is a file system?.
Chapter 10: Managing Software Packages and File Systems
Disk management Operating systems I800
Chapter 8 Unix & Linux.
Chapter 8 Adding a Disk.
Configuring Disk Quotas
Filesystem Management and Backups
Unix System Administration
Basic Commands ls cp ls –l (in detail format) echo ls –a
Unix System Administration
Unix System Administration
Advanced Operating Systems
Journaling File Systems
Adding New Users, Storage, File System
Operating System Module 1: Linux Installation
IS3440 Linux Security Unit 4 Securing the Linux Filesystem
Linux File Systems Partitioning Mounting File Systems
Adding a Disk Chapter 8.
Devices, Linux Filesystems,and the Filesystem Hirarchy standard
Linux Filesystem Management
RHCSA Study Prep.
Configuring Disk Quotas
Presentation transcript:

COP 4343 Unix System Administration Unit 6: file systems /etc/fstab swap space quotas

File System Tasks prepare partition with fdisk make file system mkfs check file system fsck options: -a -n -i mount file system mount vs. umount add to system setup /etc/fstab

ext3 File Systems journaling file system make via ext2 evolution make via mkfs –t ext3 mkfs.ext3 make options: -L and –m change parameters: tune2fs

other File Systems reiserfs xfs jfs reiserfs-utils fast, sponsored by DARPA xfs xfsprogs SGI, 64 bit jfs jfsutils IBM, high-end servers

/etc/fstab Fields Device name or volume label Mount point Filesystem type Mount options defaults, rw, ro, suid, user usrquota, grpquota frequency (for dump command) pass number (for fsck)

Swap Space create area for additional virtual memory can be: disk partition or file dd if=/dev/zero of=swapfile bs=1024 count=... prepare via mkswap partition or file add to swap space swapon /etc/fstab

Quotas allows to set limits on soft limit hard limit strictly enforced diskspace used by user or group number of blocks number of inodes soft limit allows temporary overage has grace period hard limit strictly enforced needs kernel support

enabling quotas check & possibly recompile kernel label filesystem in fstab usrquota or grpquota create and check setup quotacheck –va creates control files aquota.user or aquota.group turn quotas on quotaon -av

quota utilities set soft and hard limit for blocks and inodes edquota username setquota set grace period edquota –t check quota for user quota