Filesystems and File Management in Computer Architecture

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

File

A collection of (usually related) data.

2
New cards

Block

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

3
New cards

Cluster

Groups of one or more blocks that correspond to one or more sectors on a disk's single track or cylinder.

4
New cards

File extension

Part of a file name that identifies the file type.

5
New cards

Logical view

The contents and attributes of files as viewed by the user.

6
New cards

Physical view

The actual way a file is stored within the computer system.

7
New cards

Sequential access

Access method for data files where records must be retrieved from the beginning.

8
New cards

Random or relative access

Access method for data files where records can be retrieved from anywhere in the file in a random sequence.

9
New cards

Contiguous

Storage method where the blocks holding a file are stored together.

10
New cards

Noncontiguous

Storage method where the blocks holding a file are scattered all over the device.

11
New cards

Access control list (ACL)

A list of users who may access a file for each form of protection.

12
New cards

File Directory

A structure that provides organization for locating files efficiently.

13
New cards

Sequential Access

Reading a file in sequence from beginning to end.

14
New cards

Random Access

Assumes a file is made up of fixed-length logical records.

15
New cards

Indexed Access

A method for accessing and viewing records in a file through key indexes.

16
New cards

Contiguous Storage Allocation

Assigning blocks in a row to hold a file, allowing simple access for both sequential and random methods.

17
New cards

Linked Allocation

Noncontiguous storage method where each block contains a link to the next physical block.

18
New cards

Indexed Allocation

Noncontiguous storage method where all link pointers for a file are stored together in a single block called the index block.

19
New cards

File Allocation Table (FAT)

A linked allocation system with links stored in a table, used in DOS/Windows.

20
New cards

Bit map method

A free space management method using one bit for each block to indicate if it is used or free.

21
New cards

Linked list method

A free space management method where each free block has a pointer to the next.

22
New cards

Tree-Structure Directory

A hierarchical directory structure with a top-level root directory from which all other directories stem.

23
New cards

Pathname

A representation of the file's location in the directory structure.

24
New cards

Search Paths

Directory locations used by the operating system to locate files.

25
New cards

Hard Links

Direct pointers to the file's inode, providing multiple directory entries for the same file.

26
New cards

Symbolic Links

Pointers to the file's pathname, creating shortcuts to the target file or directory.

27
New cards

(S)FTP

File Transfer Protocol, a part of the TCP/IP protocol family.