Various terms in File System Last Updated : 21 Feb, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisite - File Systems in Operating System First Understand the structure of storage device HDD: Terminology: (i). Sector (ii). Track (iii). Track-Sector (iv). Cluster or Block Figure - Terminology in diskThese are explained as following below in brief. (i). Sector: This is a pie like structure from center of disk to circumference, the time require by read/write head to move from center of disk to circumference is called latency time.(ii). Track: It is the circular path which is covered and tracked by r/w head.Its width depends on the head size of r/w head.(iii). Track-Sector: This is the intersection of sector and the track, you can refer to the image to understand it better.(iv). Cluster: Two or more track-sector are called clusters. It is the minimum unit used by OS to store data. Size of each cluster varies with its location in disk.All the clusters are not used to store a file. Building Concept and Visualization: Tommy and Jonny: Let’s assume we want a book called Data Structure and Algorithm from college library. Now you go to library computer (let’s name it Tommy) and find if this book really present in library or not. If this is in library then tell me the shelf-number where to find the book. And suppose you are with your friend (let’s name him Jonny) and if book exist you pass the shelf-number to your friend and ask him to bring the book for you. Similarly, HDD also have Tommy known as BUFFER, this stores all the addresses and other attributes of different files and folders. Buffer helps you find anything on HDD with the help of Jonny that is read/write head. This proves that we can’t interact directly to disk but indirectly using buffer. Figure - HDD StructureProject Colleague: Suppose you and your colleague are working on a project, you have a windows laptop and your colleague has mac book. He copied some project files in a pen drive and shared to you. But problem is that you are unable to see data on the pen drive.How is it possible ?What could possibly be wrong ?Is it a virus ?Pen drive is corrupted ? Comment More infoAdvertise with us Next Article File Sharing in OS H hemusharma196 Follow Improve Article Tags : Operating Systems GATE CS File & Disk Management Similar Reads Traditional File System Before databases, file-based systems were used for storage and retrieval of data. A file-based system is a method of storing and managing data in individual files. These files are organized in directories or folders on a computerâs storage device. In this system, each file is designed to store data 4 min read Understanding File System Prerequisite - File Systems in Operating System Files and folders are the non-detachable part of human life. We daily go through these two name and use them unknowingly. These files do have different types, that has been evolved as the requirement of the user and developers changed. Some tech giants 4 min read Virtual File System The virtual file system is one of the best features of Linux that makes Linux an operating system of choice. Format a pen drive in any Linux flavor operating system and try to see the contents in windows OS. Windows OS does not show anything. What is the problem? Now try doing the same in windows i. 4 min read File Systems in Operating System A computer file is defined as a medium used for saving and managing data in the computer system. The data stored in the computer system is completely in digital format, although there can be various types of files that help us to store the data.File systems are a crucial part of any operating system 8 min read File Sharing in OS File Sharing in an Operating System(OS) denotes how information and files are shared between different users, computers, or devices on a network; and files are units of data that are stored in a computer in the form of documents/images/videos or any others types of information needed. For Example: S 5 min read Unix File System Unix File System is a logical method of organizing and storing large amounts of information in a way that makes it easy to manage. A file is the smallest unit in which the information is stored. Unix file system has several important features. All data in Unix is organized into files. All files are 10 min read Like