Lokesh Patil (CS-405)
Lokesh Patil (CS-405)
SESSION- 2023-24
SUBJECT- OPERATING SYSTEM(CS-405)
File System is responsible for storing information on disk and retrieving and updating this
information.
Example: FAT16, FAT32, NTFSext2, ext3 ext4...
In Linux everything is file.
The Linux File System
Network File System are physically somewhere else, but appear as if they are mounted on
one computer.
► NFS
It was developed by Sun.
►SMB
It was developed by Microsoft.
Journaling File System
Outcomes of Journaling
Kernal
Hardware
Basic Comand
pwd
will always tell you where you (pwd stands for print working directory).
Basic Comand
cd..
will take you up one level, getting you one level closer to the/root directory. If you are in
Just/share/wallpapers and run ed., you will move up to /usr/share. To see what a directory
contains,
ls
The mount command mounts a storage device or filesystem, making it accessible and
attaching it to an existing directory structure.
Syntax:
$ mount -t type file-system mount-point
added a disk /dev/sdb on /data directory
Unmounting
The unmount command "unmounts" a mounted filesystem. Run unmount command with
disk name or mount point name to unmount currently mounted disk.
Syntax:
$ umount /dev/sdb
$ umount /data
Thank-you