Flearn Website Header

Comptia-Linux+ System Management


Master Comptia-Linux+ System Management with our interactive study cards designed for effective learning. These flashcards use proven spaced repetition techniques to help you memorize key concepts, definitions, and facts. Perfect for students, professionals, and lifelong learners seeking to improve knowledge retention and ace exams through active recall practice.


Click any card to reveal the answer

What command shows currently running processes?

click to flip

Answer:

ps or ps aux for detailed view

What command shows real-time process information?

click to flip

Answer:

top or htop

What is a process in Linux?

click to flip

Answer:

Running instance of a program with its own memory space and resources

What is a daemon?

click to flip

Answer:

Background process that runs continuously providing system services

What signal does kill -9 send?

click to flip

Answer:

SIGKILL - forcefully terminates a process immediately

What signal does kill -15 send?

click to flip

Answer:

SIGTERM - requests graceful process termination (default)

What command shows process tree hierarchy?

click to flip

Answer:

pstree

What is the parent of all processes in Linux?

click to flip

Answer:

init or systemd (PID 1)

📢
Advertisement
See Your Advert Here!

What is PID?

click to flip

Answer:

Process ID - unique identifier assigned to each running process

What is PPID?

click to flip

Answer:

Parent Process ID - ID of the process that spawned the current process

What command changes process priority?

click to flip

Answer:

nice (for starting) and renice (for running processes)

What is the nice value range?

click to flip

Answer:

-20 (highest priority) to 19 (lowest priority)

What is systemd?

click to flip

Answer:

Modern system and service manager for Linux initialization and service management

What command manages systemd services?

click to flip

Answer:

systemctl

How do you start a service with systemd?

click to flip

Answer:

systemctl start servicename

How do you enable a service at boot?

click to flip

Answer:

systemctl enable servicename

📢
Advertisement
See Your Advert Here!

How do you check service status?

click to flip

Answer:

systemctl status servicename

How do you stop a service?

click to flip

Answer:

systemctl stop servicename

What is a systemd unit file?

click to flip

Answer:

Configuration file defining how systemd manages services

Where are systemd unit files typically located?

click to flip

Answer:

/etc/systemd/system/ and /usr/lib/systemd/system/

What is a package manager?

click to flip

Answer:

Tool for installing updating and removing software packages

What package manager does Debian/Ubuntu use?

click to flip

Answer:

apt and dpkg

What package manager does Red Hat/CentOS use?

click to flip

Answer:

yum or dnf and rpm

How do you update package lists on Debian systems?

click to flip

Answer:

apt update or apt-get update

📢
Advertisement
See Your Advert Here!

How do you upgrade packages on Debian systems?

click to flip

Answer:

apt upgrade or apt-get upgrade

How do you install a package on Red Hat systems?

click to flip

Answer:

yum install packagename or dnf install packagename

What command searches for packages on Debian?

click to flip

Answer:

apt search packagename or apt-cache search packagename

What command removes a package on Debian?

click to flip

Answer:

apt remove packagename

What command removes a package with configuration files?

click to flip

Answer:

apt purge packagename

How do you list installed packages on Red Hat?

click to flip

Answer:

rpm -qa or yum list installed

What is a repository?

click to flip

Answer:

Server containing software packages for installation

How do you add a repository on Debian?

click to flip

Answer:

Edit /etc/apt/sources.list or add file to /etc/apt/sources.list.d/

📢
Advertisement
See Your Advert Here!

What command shows system resource usage?

click to flip

Answer:

top htop or vmstat

What command shows memory usage?

click to flip

Answer:

free -h (human-readable format)

What command shows disk space usage?

click to flip

Answer:

df -h (human-readable format)

What command shows directory size?

click to flip

Answer:

du -sh directoryname

What is swap space?

click to flip

Answer:

Disk space used as virtual memory when RAM is full

How do you check swap usage?

click to flip

Answer:

free -h or swapon --show

What command monitors system logs?

click to flip

Answer:

journalctl (systemd) or viewing /var/log/ files

What is cron?

click to flip

Answer:

Service for scheduling recurring tasks at specific times

📢
Advertisement
See Your Advert Here!

What is crontab?

click to flip

Answer:

Configuration file defining scheduled cron jobs for users

How do you edit user's crontab?

click to flip

Answer:

crontab -e

What is the crontab format?

click to flip

Answer:

minute hour day month weekday command

What is anacron?

click to flip

Answer:

Service for running periodic tasks on systems not always running

What command shows system uptime?

click to flip

Answer:

uptime

What command shows logged-in users?

click to flip

Answer:

who or w

What is load average?

click to flip

Answer:

Average number of processes waiting for CPU over time periods

What does the three numbers in load average represent?

click to flip

Answer:

1-minute 5-minute and 15-minute averages

📢
Advertisement
See Your Advert Here!

What command manages user accounts?

click to flip

Answer:

useradd userdel usermod

How do you create a new user?

click to flip

Answer:

useradd username or adduser username

How do you delete a user?

click to flip

Answer:

userdel username (userdel -r removes home directory too)

What command changes user password?

click to flip

Answer:

passwd username

Remember: Use all available resources to study. Flearn alone cannot guarantee success in any exams—make sure to supplement your learning!