Introduction to the Unix Operating System

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts related to the Unix operating system, system calls, and dual-mode operations.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

System call

A mechanism for programs to request services from the operating system's kernel, facilitating controlled access to system resources.

2
New cards

Dual-Mode Operation

User Mode (limited) and Kernel Mode (privileged instructions).

3
New cards

Kernel

It serves as the core part of the operating system, managing interactions between hardware and software.

4
New cards

0: read, 1: write, 2: read/write.

List the three file operation modes in Unix.

5
New cards

Process control, file manipulation, device manipulation, information maintenance, communications.

categories of system calls

6
New cards

The system interface to the kernel.

lowest level of interaction with Unix

7
New cards

Acts as a limitation for user applications to prevent them from executing privileged operations.

What is the role of the user mode in Dual-Mode Operation?

8
New cards

They can be supported without resorting to assembly language.

How are system calls typically implemented in high-level languages?

9
New cards

It provides a facility through which applications interact with the kernel.

What is the significance of the system interface to the kernel?

10
New cards

Disk drives and network interfaces.

Can you name two types of devices that are manipulated by system calls?

11
New cards

'read' system call

It reads data from a file descriptor into a buffer.

12
New cards

'write' system call

It writes data from a buffer to a file descriptor.

13
New cards

demand paging

It loads pages into memory only when they are needed, rather than loading all at once.

14
New cards

It determines the order in which processes receive CPU time.

What is the function of CPU scheduling in an operating system?

15
New cards

Notifications sent to a process in order to notify it of specific events.

What does the term 'signals' refer to in a Unix operating system?

16
New cards

Creating, reading, writing, and altering file attributes.

What is a file manipulation system call responsible for?

17
New cards

Requesting and releasing devices for use.

What is a 'device manipulation' system call used for?

18
New cards

It manages how data is stored and retrieved.

What is the 'file system' in the context of Unix?

19
New cards

Time and date information.

What do information maintenance system calls commonly retrieve?

20
New cards

Assembly language is usually used, but higher-level languages like C can also be used.

What language is primarily used for implementing system calls?

21
New cards

It manages process operations like loading, executing, ending, and aborting processes.

Describe a 'process control' system call.