Chapter Two Exploring the UNIX File System and File Security.

Slides:



Advertisements
Similar presentations
Linux can be generally divided into four major components: 1. KERNEL – OS, ultimate boss The kernel is the core program that runs programs and manages.
Advertisements

A Guide to Unix Using Linux Fourth Edition
Pre-Assessment Questions
5 Basic utilities When a user logs in to the Linux operating system the directory that they will start in is their home directory. Most users will have.
Introduction to Unix (CA263) File System
Exploring the UNIX File System and File Security
GNU/Linux Filesystem 1 st AUT GNU/Linux Festival Computer Engineering & IT Department Bahador Bakhshi.
Linux+ Guide to Linux Certification, Second Edition
Chapter 5 Accessing Files and Directories. How Directories Get Created OS installation: usr, dev, etc, export, kernel and others places to store installation.
Linux Linux File System.
The UNIX File System.
Guide To UNIX Using Linux Third Edition
File Management System The way a user or application may access files Programmer does not need to develop file management software You take files for granted.
Basic UNIX © McGraw Hill All rights reserved.
A Mini UNIX Tutorial. What’s UNIX?  An operating system run on many servers/workstations  Invented by AT&T Bell Labs in late 60’s  Currently there.
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.
Learning basic Unix command IT 325 operating system.
Guide To UNIX Using Linux Fourth Edition
Notes Assignment #1 is due next Friday by 11:59 pm via Test #1 will be held Thursday February 18 at the start of class (one period long) Format:
File Systems Sources and Resources: 1. A Students Guide to UNIX, by Hahn 2. Paula Davidson’s Handout on UNIXHandout on UNIX.
1 THE UNIX FILE SYSTEM By Chokechai Chuensukanant ID COSC 513 Operating System.
The file structure and related utilities CS240 Computer Science II.
Manage Directories and Files in Linux
Lesson 7-Creating and Changing Directories. Overview Using directories to create order. Managing files in directories. Using pathnames to manage files.
Chapter 9 Part II Linux Command Line Access to Linux Authenticated login using a Linux account is required to access a Linux system. The Linux prompt will.
1 Lecture 2 Working with Files and Directories COP 3344 Introduction to UNIX.
Unix Basics Chapter 4.
Linux+ Guide to Linux Certification, Second Edition
INTRODUCTION TO LINUX Jacob Chan. GNU/Linux Consists of Linux kernel, GNU utilities, and open source and commercial applications Works like Unix –Multi-user.
Linux file system "On a UNIX system, everything is a file; if something is not a file, it is a process." Sorts of files (on a Linux system) Directories:
Manage Directories and Files in Linux. 2 Objectives Understand the Filesystem Hierarchy Standard (FHS) Identify File Types in the Linux System Change.
Chapter Two Exploring the UNIX File System and File Security.
ITR3 lecture 6: intoduction to UNIX Thomas Krichel
Chapter 1 : The Linux System Part 2 Lecture 2 11/14/
E X C E E D I N G E X P E C T A T I O N S Basic LINUX Linux System Administration Dr. Hoganson Kennesaw State University Operating Systems Directory structure:
Linux+ Guide to Linux Certification, Third Edition
Linux+ Guide to Linux Certification, Third Edition
1 © 2001 John Urrutia. All rights reserved. Chapter 4 The LINUX Filesystem.
Λειτουργικά Συστήματα – Lab2 Γιάννης Πετράκης. Directory Navigation and Control  The Unix file system is set up like a tree branching out from the root.
Linux Commands C151 Multi-User Operating Systems.
PTA Linux Series Copyright Professional Training Academy, CSIS, University of Limerick, 2006 © Workshop V Files and the File System Part B – File System.
The Unix File system (UFS) Presented by: Gurpreet Singh Assistant Professor Department of School of Computing and Engineering Galgotias University.
CS 245 – Part 1 Using Operating Systems and Networks for Programmers Jiang Guo Dept. of Computer Science California State University Los Angeles.
1 Lecture 2 Working with Files and Directories COP 3353 Introduction to UNIX.
Agenda The Linux File System (chapter 4 in text)
BIF713 File and Directory Management. File System A File System is a structure used to organize programs and data on a computer ’ s storage device Files.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
SUSE Linux Enterprise Desktop Administration Chapter 7 Manage Directories and Files.
UNIX filesystem CS 2204 Class meeting 2 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
Lecture 02 File and File system. Topics Describe the layout of a Linux file system Display and set paths Describe the most important files, including.
The Unix File System R Bigelow. The UNIX File System The file system refers to the way in which UNIX implements files and directories. The UNIX file system.
Learning basic Unix command It 325 operating system.
Chapter 2: Exploring the UNIX File System (For Tuesday Section) File and File Systems.
LINUX Zhengli Zhu, School of Life Sciences. Outline 1. ABC of Linux 2. Basic orers of Linux 3. Bash Programming.
Agenda The Linux File System (chapter 4 in text) Directory Structures / Navigation Terminology File Naming Rules Relative vs Absolute pathnames Unix Commands:
Linux Administration – Finding You Way on the Command Line The Linux File Directory or Tree.
BILKENT UNIVERSITY DEPARTMENT OF COMPUTER TECHNOLOGY AND INFORMATION SYSTEMS CTIS156 INFORMATION TECHNOLOGIES II FILES AND FILE SYSTEM STRUCTURE.
Agenda The Linux File System (chapter 4 in text)
Commands Basic syntax of shell commands UNIX or shell commands have a basic structure command -options target command comes first (such as cd or ls) any.
Linux 101 Training Module Linux Basics.
UBUNTU INSTALLATION
Linux file system "On a UNIX system, everything is a file;
Chapter 6 File Systems CSNB113 SYSTEM ADMINISTRATION
9 Linux on the Desktop.
Exploring the UNIX File System and File Security
Unix : Introduction and Commands
Introduction Paul Flynn
Chapter 4: The Linux Filesystem
January 26th, 2004 Class Meeting 2
Presentation transcript:

Chapter Two Exploring the UNIX File System and File Security

2 Lesson A Understanding Files and Directories

3 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the mount command to mount a file system

4 Objectives (cont.) Discuss relative and absolute path addressing Diagram the UNIX file system hierarchy Navigate the file system

5 Understanding the UNIX File System A file is the basic component for data storage –UNIX considers everything it interacts with a file A file system is UNIX’s way of organizing files on mass storage (disk) devices –A physical file system is a section of the hard disk that has been formatted to hold files The file system is organized in a hierarchical structure similar to an inverted tree

6

7 Understanding the Standard Tree Structure The structure starts at the root level –Root is the name of the file at this basic level and it is denoted by the slash character (/) A directory is a file that can contain other files and directories A subdirectory is a directory within a directory –The subdirectory is considered the child of the parent directory

8 Using UNIX Partitions The section of the disk that holds a file system is called a partition –When installing UNIX, one of the first tasks is deciding how to partition a storage device, or hard disk –Hard disks may have many partitions UNIX partitions are given names –LINUX uses hda1 and hda2

9 Using UNIX Partitions Storage devices are called peripheral devices Peripheral devices connect to the computer through electronic interfaces –IDE - Integrated Drive Electronics –SCSI - Small Computer System Interface

10

11 Exploring the Root File System UNIX must mount a file system before any programs can access files on it To mount a file system is to connect it to the directory tree structure The root file system is mounted by the kernel when the system starts

12 Exploring the Root File System The root directory contains sub-directories that contain files: –/bin contains binaries, or executables needed to start the system and perform system tasks –/boot contains files needed by the bootstrap loader as well as kernel images –/dev contains system device reference files

13

14 Exploring the Root File System Root subdirectories continued: –/etc contains configuration files that the system uses when the computer starts –/lib contains kernel modules, security information, and the shared library images –/mnt contains mount points for temporary mounts by the system administrator –/proc is a virtual file system allocated in memory only

15 Exploring the Root File System Root subdirectories continued: –/root is the home directory of the root user, or the system administrator –/sbin contains essential network programs used only by the system administrator –/tmp is a temporary place to store data during processing cycles –/var contains subdirectories which have sizes that often change, such as error logs

16 Using the Mount Command Users can access mounted file systems which they have permission to access Additional file systems can be mounted at any time using the mount command To ensure system security, only the root user uses the mount command

17 Understanding Paths and Pathnames To specify a file or directory, use its pathname, which follows the branches of the file system to the desired file –A forward slash (/) separates each directory name –The UNIX command prompt may indicate your location within the file system –Use the UNIX pwd command to display the current path name

18

19 Navigating the File System To navigate the UNIX directory structure, use the cd (change directory) command UNIX refers to a path as either: –Absolute - begins at the root level and lists all subdirectories to the destination file –Relative - begins at your current working directory and proceeds from there

20 Listing Directory Contents The ls (list) command displays a directory’s contents, including files and subdirectories

21 Listing Directory Contents The system normally uses hidden files to keep configuration information and for other purposes

22 Lesson B Working with Files, Directories, and Security

23 Objectives Create new directories to store files Copy files from one directory to another Set file permissions for other user access to directory and files

24 Managing Directories and Files mkdir (make directory) command –Create a new directory rmdir (make directory) command –Delete an empty directory cp (copy) command –Copy files from one director to another rm (remove) command –Delete files

25 Setting File Permissions

26 Setting File Permissions File Permissions r Owner has read w Owner has write x Owner has execute r Group has read - Group does not have write x Group has execute r Others have read - Others do not have write x Others have execute

27 Setting File Permissions for Security chmod command –To set file permissions –Settings are read (r), write (w), execute (x) –The three types of users are owners, groups, and others Setting permissions to directories –Use the execute (x) to grant access

28 Chapter Summary In UNIX, a file is the basic component for data storage and UNIX considers everything a file A file system is the UNIX system’s way of organizing files on mass storage devices and each file is referenced using a correct and unique pathname The standard tree structure starts with the root (/) directory The section of the mass storage device (or disk) that holds a file system is a partition

29 Chapter Summary A path serves as as a map to access any file on the system You may customize your command prompt to display the current working directory name, the current date and time, and several other items The ls command displays the names of files and directories contained in a directory Wildcard characters (i.e. *, ?) can be used in a command such as ls and take the place of other characters in a file name

30 Chapter Summary Use the mkdir command to create a new directory, as long as you own the parent Use the chmod command to set permissions such as read (r), write (w), execute (x) for files that you own Use the cp command to copy a source file to a destination file and directory

31

32