Filesystems and File Management in Computer Architecture

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 26

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

27 Terms

1

File

A collection of (usually related) data.

New cards
2

Block

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

New cards
3

Cluster

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

New cards
4

File extension

Part of a file name that identifies the file type.

New cards
5

Logical view

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

New cards
6

Physical view

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

New cards
7

Sequential access

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

New cards
8

Random or relative access

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

New cards
9

Contiguous

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

New cards
10

Noncontiguous

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

New cards
11

Access control list (ACL)

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

New cards
12

File Directory

A structure that provides organization for locating files efficiently.

New cards
13

Sequential Access

Reading a file in sequence from beginning to end.

New cards
14

Random Access

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

New cards
15

Indexed Access

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

New cards
16

Contiguous Storage Allocation

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

New cards
17

Linked Allocation

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

New cards
18

Indexed Allocation

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

New cards
19

File Allocation Table (FAT)

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

New cards
20

Bit map method

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

New cards
21

Linked list method

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

New cards
22

Tree-Structure Directory

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

New cards
23

Pathname

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

New cards
24

Search Paths

Directory locations used by the operating system to locate files.

New cards
25

Hard Links

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

New cards
26

Symbolic Links

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

New cards
27

(S)FTP

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

New cards
robot