CT320: Network and System Administration

Fall 2018

Filesystem

See this page as a slide show

CT320 Filesystem

Original slides from Dr. James Walden at Northern Kentucky University.

Topics

  1. Overview
  2. Pathnames
  3. Mounting
  4. Structure
  5. Organization
  6. File types
  7. Kernel Data Structures

Overview

Filesystem Components

Filesystem Types

https://en.wikipedia.org/wiki/Comparison_of_file_systems

Hierarchy

Files are located by traversing a directory tree:

Linux filesystem is a single unified hierarchy, unlike Windows.

Filenames

Characters in Filenames

Really, anything?

$ touch now then

$ date >n*

$ id >'~!#$^&*\ ([{<>}])|;'\''`":,.?½→☂ 🐟 ψάρι سمك मछली 鱼'

$ ls -lhog
total 8.0K
-rw------- 1 51 Mar 11 16:41 ~!#$^&*\ ([{<>}])|;'`":,.?½→☂ 🐟 ψάρι سمك मछली 鱼
-rw------- 1 29 Mar 11 16:41 now
-rw------- 1  0 Mar 11 16:41 then

Anything‽

$ date >-z
$ ls -l
total 4
-rw------- 1 ct320 class 29 Mar 11 16:41 -z

$ rm -z
rm: invalid option -- 'z'
Try 'rm ./-z' to remove the file '-z'.
Try 'rm --help' for more information.

$ rm '-z'
rm: invalid option -- 'z'
Try 'rm ./-z' to remove the file '-z'.
Try 'rm --help' for more information.

$ rm ./-z

$ rm -- -z
rm: cannot remove '-z': No such file or directory

Mounted Filesystems

Global filesystem contains mounted filesystems:

Mounting

Unmounting

fuser

CodeMeaning
ffile open for reading
Ffile open for writing
ccurrent working directory
eexecuting a file
rroot directory (chroot)
mmapped file or shared library
$ PATH=/bin:/usr/bin:/sbin:/usr/sbin

$ pwd
/tmp/PmWiki.tmp
$ fuser -v .
                     USER        PID ACCESS COMMAND
/tmp/PmWiki.tmp:     ct320     3026902 ..c.. php-cgi
                     ct320     3026932 ..c.. bash

$ sleep 10 </etc/group &
$ fuser -v /etc/group
                     USER        PID ACCESS COMMAND
/etc/group:          ct320     3026940 f.... sleep
$ kill %%

$ echo "My PID is $$"
My PID is 3026932
$ fuser -v /bin/bash
                     USER        PID ACCESS COMMAND
/usr/bin/bash:       ct320     3026932 ...e. bash

Filesystem Structure

Examples

$ ls -l /etc/passwd
-rw-r--r-- 1 root root 4368 Nov 30  2022 /etc/passwd

$ ls -i /etc/passwd
2624353 /etc/passwd

$ stat /etc/passwd
  File: /etc/passwd
  Size: 4368      	Blocks: 16         IO Block: 4096   regular file
Device: 803h/2051d	Inode: 2624353     Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2025-03-10 18:05:01.364170908 -0600
Modify: 2022-11-30 17:03:02.874755985 -0700
Change: 2022-11-30 17:03:02.899755818 -0700
 Birth: 2022-11-30 17:03:02.874755985 -0700

inode

times

inode block pointers

A classic inode has thirteen pointers:

Some filesystems optimize the storage of tiny files by storing the data itself in the inode.

Filesystem Organization

Standard directories

DirectoryMeaningDirectoryMeaning
/bootBoot directory/usrMost standard programs
/devDevice files/varSpool directories
/etcCritical system files/homeMount point for users
/sbinSystem utilities/libLibs and parts of the C compiler
/binImportant utilities/mediaRemovable media
/tmpTemp files/optOptional applications

Standard directories

/usr/binMost commands and executables
/usr/includeHeader files
/usr/libLibraries, support files for standard programs
/usr/localLocal software
/usr/local/binLocal executables
/usr/local/Other local (etc, lib, sbin, src)

Standard directories

/usr/manMan pages
/usr/sbinLess essential sysadmin commands
/usr/shareCommon to multiple systems
/usr/share/manShared man pages
/usr/srcSource code for nonlocal packages

Standard directories

/var/admLogs, system setup records
/var/logSystem log files
/var/spoolSpooling directories (mail, printers)
/var/tmpMore temp space (preserved between boots)

File types

$ ls -l /dev/console /dev/log /dev/sda
crw------- 1 root root 5, 1 Feb 24 17:22 /dev/console
lrwxrwxrwx 1 root root   28 Feb 24 17:21 /dev/log -> /run/systemd/journal/dev-log
brw-rw---- 1 root disk 8, 0 Feb 24 17:22 /dev/sda

File type encoding

File typeSymbolCreated byRemoved by
Regular file-cp, mv, virm
Directorydmkdir, cp -rrmdir, rm -r
Character device filecmknodrm
Block device filebmknodrm
Local domain socketssocket(2)rm
Named pipepmknodrm
Symbolic linklln -srm

Examples

$ ls -ldU /bin/cat /etc/magic /tmp /dev/random /dev/sda /dev/gpmctl /bin/cc
-rwxr-xr-x  1 root root  38440 Apr  1  2023 /bin/cat
-rw-r--r--. 1 root root    111 Apr  6  2024 /etc/magic
drwxrwxrwt  4 root root 253800 Mar 11 16:41 /tmp
crw-rw-rw-  1 root root   1, 8 Feb 24 17:22 /dev/random
brw-rw----  1 root disk   8, 0 Feb 24 17:22 /dev/sda
srwxrwxrwx  1 root root      0 Feb 24 17:22 /dev/gpmctl
lrwxrwxrwx  1 root root      3 Feb 14 02:00 /bin/cc -> gcc

Regular file

Directories

Character and Block Device files

$ ls -l /dev/cdrom
/bin/ls: cannot access '/dev/cdrom': No such file or directory
$ ls -lH /dev/cdrom
/bin/ls: cannot access '/dev/cdrom': No such file or directory

Some Device Files

NameDescription
/dev/sda2disk
/dev/ttyS0RS-232 serial line
/dev/pts/1Pseudo-tty (pty)
/dev/ttyAn alias for your terminal
/dev/nullRead fails, write succeeds
/dev/fullRead succeeds, write fails
/dev/zeroRead yields zeroes
/dev/randomRead yields random data

Local domain sockets

Named Pipes

Communication mechanisms

Symbolic links

Symbolic link example

$ date >now
$ ln -s now foo
$ ls -l
total 4
lrwxrwxrwx 1 ct320 class  3 Mar 11 16:41 foo -> now
-rw------- 1 ct320 class 29 Mar 11 16:41 now
$ cat now foo
Tue Mar 11 16:41:26 MDT 2025
Tue Mar 11 16:41:26 MDT 2025
$ echo "I am $USER" >foo
$ ls -l
total 4
lrwxrwxrwx 1 ct320 class  3 Mar 11 16:41 foo -> now
-rw------- 1 ct320 class 11 Mar 11 16:41 now
$ cat now foo
I am ct320
I am ct320
$ rm now
$ cat foo
cat: foo: No such file or directory

Hard Links

Hard/Soft Link Differences

Hard Link Analogy

Soft Link Analogy

User: Guest

Check: HTML CSS
Edit History Source

Modified: 2018-10-06T13:35

Apply to CSU | Contact CSU | Disclaimer | Equal Opportunity
Colorado State University, Fort Collins, CO 80523 USA
© 2018 Colorado State University
CS Building