Operating System

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

1/58

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:13 AM on 5/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

59 Terms

1
New cards

Linux software categories

Server applications; Desktop applications; Tools

2
New cards

what does Linux server applications do

Software that provides information/services to client computers over a network

3
New cards

Linux desktop applications

Software that users interact with directly

4
New cards

Early use of Linux servers

Web servers

5
New cards

Linux email client

Thunderbird

6
New cards

Linux web browsers

mozilla firefox, Chrome

7
New cards

Function of Linux packages

Add, remove, and update software

8
New cards

Package management systems

APT; YUM/DNF

9
New cards

Debian package update command

apt-get update

10
New cards

Digital footprint

Information left online that can be used for advertising or malicious purposes

11
New cards

Cloud computing

Use of remote computing resources over the Internet

12
New cards

Cloud

Data, servers, storage, applications, and resources hosted in remote data centres

13
New cards

Cloud deployment models

Public cloud; Private cloud; Community cloud; Hybrid cloud

14
New cards

Why Linux is suitable for cloud computing

Security; Scalability; Flexibility; Automation

15
New cards

Virtualization

Running multiple guest operating systems on one physical host

16
New cards

Hypervisor

Software that manages and allocates resources to virtual machines

17
New cards

what are 2 Virtualization software

VMware, VirtualBox

18
New cards

Containers

Run applications in isolated containers

19
New cards

Most common Linux shell

Bash

20
New cards

Linux prompt contains

Username; Hostname; Current directory

21
New cards

Function of compression

Reduce file size for storage and transmission

22
New cards

Types of compression

Lossy; Lossless

23
New cards

Most common compression tool

gzip

24
New cards

Decompress gzip command

gunzip

25
New cards

Traditional UNIX archiving tool

tar

26
New cards

Create tar archive

tar -cf file.tar folder/

27
New cards

Create tar.gz archive

tar -czf file.tar.gz folder/

28
New cards

List tar.gz archive

tar -tzf file.tar.gz

29
New cards

Extract tar.gz archive

tar -xzf file.tar.gz

30
New cards

FHS

Filesystem Hierarchy Standard

31
New cards

Commands to view processes

ps; top

32
New cards

/proc

Pseudo filesystem containing process, hardware, and kernel information

33
New cards

/proc/meminfo

Detailed system memory usage information

34
New cards

whats /proc/cmdline

Shows kernel boot parameters passed at startup

35
New cards

/proc/modules

Loaded kernel modules

36
New cards

PID 1

init/systemd process

37
New cards

Parent process

Process that starts another process

38
New cards

Child process

Process started by another process

39
New cards

pstree

Shows parent-child process tree

40
New cards

ps default output

Running processes

41
New cards

top

Real-time process monitoring

42
New cards

free -s 20

Display memory usage every 20 seconds

43
New cards

Logging daemons

syslogd; klogd; journald

44
New cards

Log storage location

/var/log

45
New cards

Commands to view logs

cat; less; journalctl

46
New cards

Command for binary log files

file

47
New cards

/var/log/dmesg

Kernel messages during startup

48
New cards

what does /var/log/messages contain

System messages while running

49
New cards

journalctl

View systemd journal logs

50
New cards

ifconfig

Display and configure network settings

51
New cards

route

Display kernel IP routing table

52
New cards

ping

Check network connectivity and host reachability

53
New cards

ping -c 3 localhost

Send 3 ping requests to localhost

54
New cards

Destination Host Unreachable

No available network path to destination host

55
New cards

netstat

Show network connections, routing table, and open ports

56
New cards

what does ss do

Show socket statistics and active network connections

57
New cards

dig

DNS lookup tool for domain-to-IP mapping and DNS records

58
New cards

what is ssh

Secure remote login and command execution on another machine

59
New cards

file

Identify file type