LQ1 - Operating Systems - Operating-System Services

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

1/51

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

52 Terms

1
New cards

operating systems

provides an environment for execution of programs and services to programs and users

2
New cards
  • user interface

  • program execution

  • i/o operations

  • file-system manipulation

  • communications

  • error detection

Enumerate a set of operating services that may help the user

3
New cards
  • resource allocation

  • logging

  • protection and security

Enumerate a set of operating services that ensures efficient operation of the system itself

4
New cards

logging

used to keep track of which users use how much and what kinds of computer resources

5
New cards

protection

involves ensuring that all access to system resources is controlled

6
New cards

security

requires user authentication from outsiders.

7
New cards

command line interpreter

allows direct command entry (it fetches user commands and executes them)

8
New cards

user operating system interface - GUI

User-friendy desktop metaphor interface

9
New cards

touchscreen interfaces

  • actions and selection based on gesture

  • virtual keyboard for text entry

  • voice commands

10
New cards

system calls

programming interface to the services provided by the OS

11
New cards

system-call interface

maintains a table indexed according to the numbers associated with each system call

12
New cards

system call interface

invokes the intended system call in OS kernel and returns status of the system call and any return values

13
New cards
  • pass the parameters in registers

  • pass block addresses as a parameter in a register (the blocks contain the parameters)

  • parameters placed onto the stack by the program and popped off the stack by the operating system

three general methods used to pass parameters to the OS

14
New cards
  1. process control

  2. file management

  3. device management

  4. information maintenance

  5. communications

  6. protection

types of system calls

15
New cards

debugger

used for determining bugs, single step execution

16
New cards

locks

used for managing access to shared data between processes

17
New cards

system programs

provide a convenient environment for program development and execution.

18
New cards
  • file manipulation

  • status information

  • programming language support

  • program loading and execution

  • communications

  • background services

  • application programs

system programs can be divided into:

19
New cards

file management

create, delete, copy, rename, print, dump, list, and generally manipulate files and directories

20
New cards

registry

used to store and retrieve configuration information

21
New cards

communications

provide the mechanism for creating virtual connections among processes, users, and computer systems

22
New cards

background services

known as services, subsystems, daemons; they provide facilities like disk checking, process scheduling, error logging, printing

23
New cards

relocatable object file

source code compiled into object files designed to be loaded into any physical memory location

24
New cards

linker

combines these (relocatable object files) into single binary executable file and brings in libraries

25
New cards

loader

programs residing on a secondary storage as a binary executable must be brought into memory by ___ to be executed

26
New cards

dynamically linked libraries

____ ____ ____ are loaded by modern general purpose systems

27
New cards

Application Binary Interface (ABI)

is architecture equivalent of API, defines how different components of binary code can interface for a given operating system on a given architecture, CPU, etc.

28
New cards

policy

refers to what needs to be done (in the context of designing and implementing an OS)?

29
New cards

mechanism

how to do something (in the context of designing and implementing an OS)?

30
New cards

false

it makes it easier to port but slower in performance

true or false: OS implementation utilizing a more higher-level language makes it hard to port but faster in performance

31
New cards

UNIX

  • utilizes a monolithic structure

  • limited by hardware functionality

  • its original version had limited structuring

32
New cards
  • system programs

  • the kernel

Two inseparable parts of the UNIX OS

33
New cards

monolithic plus modular design

the linux system structure

34
New cards

layered approach

is an OS implementation/approach that divides the OS into a number of layers (levels), each built on top of lower layers. The bottom layer (layer 0), is the hardware; the highest (layer N) is the user interface.

35
New cards

microkernels

an OS implementation that moves as much from the kernel into the user space.

36
New cards

message passing

communication in microkernels takes place between user modules using ___ ____

37
New cards

loadable kernel modules (LKMs)

  • uses object-oriented approach

  • each core component is separate

  • each talks to the others over known interfaces

  • each is loadable as needed within the kernel

38
New cards

bootstrap loader, BIOS

the ___ ____, ____, stored in ROM or EEPROM locates the kernel, loads it into memory, and starts it to boot the system

39
New cards

debugging

is finding and fixing errors or bugs

40
New cards

log files

OS generate ___ ___ containing error information

41
New cards

core dump

Application failure can generate ___ ___ file capturing memory of the process

42
New cards

crash dump

Operating system failure can generate ___ ___ file containing kernel memory

43
New cards

performance tuning

can optimize system performance (besides from crashing)

44
New cards

is per

45
New cards

Kernighan’s Law

debugging is twice as hard as writing the code in the first place

46
New cards

performance tuning

improves performance by removing bottlenecks

47
New cards

tracing

collects data for a specific event, such as steps involved in a system call invocation

48
New cards

strace

trace system calls invoked by a process

49
New cards

gdb

source-level debugger

50
New cards

perf

collection of Linux performance tools

51
New cards

tcpdump

collects network packets

52
New cards

BCC (BPF Compiler Collection)

is a rich toolkit providing tracing features for Linux