Part1 Flashcards
What is a Virtual Machine (VM)?
A software emulation of a physical computer, allowing you to run an operating system within another OS.
What is VirtualBox?
An open-source hypervisor for creating and managing virtual machines on your computer.
What is Debian?
A popular, stable, and free Linux-based operating system used in this tutorial.
What is an ISO File?
An image file containing the complete contents of a CD or DVD, used here to install Debian.
What is a Netinst ISO?
A minimal Debian installation image that downloads packages during installation.
What is a Host Name?
The unique name assigned to a computer on a network; in this tutorial, it’s your login with ‘42’ appended.
What is a Root User?
The administrative user in Unix/Linux systems with full system access.
What is Sudo?
A command that allows permitted users to execute commands as the superuser or another user.
What is the Usermod Command?
A Linux command used to modify user account properties, such as adding a user to the sudo group.
What is Visudo?
A command to safely edit the sudoers file, which defines user permissions for sudo.
What is SSH (Secure Shell)?
A protocol for securely accessing and managing remote computers over a network.
What is OpenSSH Server?
A suite of secure networking utilities based on the SSH protocol, providing encrypted communication sessions.
What is the SSHD Config File?
The configuration file for the SSH daemon, where settings like the listening port are defined.
What is Port 4242?
The custom port number configured for SSH access in this tutorial, replacing the default port 22.
What is UFW (Uncomplicated Firewall)?
A user-friendly interface to manage firewall rules in Linux systems.
What does the UFW Enable Command do?
Activates the UFW firewall to start enforcing rules.
What does the UFW Allow Command do?
Adds a rule to UFW to permit traffic on a specified port, such as ‘sudo ufw allow 4242’.
What is Port Forwarding?
A networking technique that redirects communication requests from one address and port number to another.
What is Crontab?
A file containing scheduled tasks (cron jobs) to run at specified times on Unix/Linux systems.
What is a Cron Job?
A scheduled task in Unix/Linux systems that runs automatically at defined intervals.
What is LVM (Logical Volume Manager)?
A system for managing disk storage space, allowing flexible disk management.
What is Partitioning?
The process of dividing a hard disk into separate sections, each acting as an independent disk.
What is Encrypted LVM?
Combines LVM with disk encryption to secure data on logical volumes.
What is APT (Advanced Package Tool)?
A package management system used by Debian-based distributions to handle software installation and removal.