FILE SYSTEMS AND FILE MANAGEMENT

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:30 PM on 2/26/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

29 Terms

1
New cards

Bootstrap Process

The process of starting a computer involves handing off control from firmware to the operating system.

2
New cards

Traditional BIOS Booting

The process by which a PC starts with the BIOS initializing hardware and accessing the Master Boot Record.

3
New cards

Initialization

The first step of BIOS booting where the PC is turned on and hardware is initialized.

4
New cards

Master Boot Record (MBR)

Code stored at the start of disk 0 that the BIOS calls during booting.

5
New cards

Partition Loading

The process where the MBR loads code from the boot sector of the active partition.

6
New cards

Bootloader

Code that runs from the boot sector and presents an OS menu to load the selected OS kernel.

7
New cards

UEFI (Unified Extensible Firmware Interface)

Modern replacement for BIOS that offers advantages such as faster boot times and support for larger disks.

8
New cards

EFI System Partition (ESP)

A special partition where UEFI stores initialization information in an .efi file.

9
New cards

GUID Partition Table (GPT)

A partitioning scheme that supports disks larger than 2 TiB.

10
New cards

Block

The smallest unit of data storage, typically between 256 and 4096 bytes.

11
New cards

Cluster

A group of one or more blocks used for file storage.

12
New cards

Logical View

How a user perceives the contents and attributes of files.

13
New cards

Physical View

The actual storage of files within the computer system.

14
New cards

Sequential Access

An access method where records must be retrieved from the beginning.

15
New cards

Random/Relative Access

An access method that allows records to be retrieved from anywhere in any sequence.

16
New cards

Contiguous Allocation

A file storage method where blocks are stored together in a row.

17
New cards

Non-contiguous (Linked) Allocation

A file storage method where blocks are scattered and each contains a link to the next block.

18
New cards

File Allocation Table (FAT)

A variation of linked allocation where links are stored in a central table.

19
New cards

Indexed Allocation

A file storage method where pointers for a file are stored in a single index block.

20
New cards

Unix i-nodes

A data structure in Unix that uses direct and indirect blocks for file storage.

21
New cards

Journaling File Systems

File systems that use a log file to record transactions requiring write access.

22
New cards

Structure Only Journaling

A method that protects the integrity of the file system structure.

23
New cards

Full Data Journaling

A method that guarantees the integrity of data not yet written to disk.

24
New cards

File Protection

A system that offers Read, Write, and Execution protection for files.

25
New cards

Access Control List (ACL)

A detailed list of users and their specific permissions for file access.

26
New cards

Acyclic-Graph Directory

A directory structure that allows links between branches without cycles.

27
New cards

Tree-Structure Directory

A hierarchical structure for organizing files with a top-level root.

28
New cards

Absolute Path

A full path starting from the root directory.

29
New cards

Relative Path

A path created starting from the current directory.