For VPN connections in Linux, which tool can be used to set up a tunnel based on SSL/TLS?
- OpenVPN
- IPsec
- PPTP
- SSH
OpenVPN is a widely-used tool in Linux for setting up VPN connections with SSL/TLS-based tunnels. It provides a secure and reliable way to establish encrypted communication over the internet or private networks, ensuring data privacy and integrity.
Which command is used to add a new user in Linux?
- useradd
- adduser
- newuser
- createuser
The correct command to add a new user in Linux is useradd. This command creates a new user account and associated files. It is used to specify user details like the home directory and shell.
Which file defines the rules for the sudo command in Linux?
- /etc/sudoers
- /etc/sudo
- /etc/sudoconfig
- /etc/sudopolicy
The file that defines the rules for the sudo command in Linux is /etc/sudoers. This file specifies who is allowed to run what commands with administrative privileges and how. It's a crucial part of managing user access and privileges in a Linux system.
What is the primary difference between ext4 and ext3 file systems?
- Ext4 supports larger file sizes and filesystems
- Ext3 has better journaling capabilities
- Ext4 has a faster file system check on boot
- Ext3 offers improved data compression
The primary difference between ext4 and ext3 file systems is that Ext4 supports larger file sizes and filesystems. Ext4 extends the maximum file size from 16 terabytes to 1 exabyte and supports filesystems up to 1 exabyte, whereas Ext3 has limitations in this regard. This makes Ext4 more suitable for modern storage needs.
A colleague informs you that a specific daemon is causing issues and should be temporarily disabled without stopping it. Which command in Linux would allow you to mask the service?
- systemctl mask
- systemctl disable
- systemctl stop
- systemctl restart
To temporarily disable a service in Linux without stopping it, you can use the systemctl mask command. This command creates a symbolic link to /dev/null, preventing the service from being started automatically, but it doesn't stop the currently running service. It's a useful way to prevent a service from starting at boot.
You've been tasked to ensure a specific service always restarts after failure. Which Linux system would you primarily use to achieve this?
- Systemd
- SysV Init
- Upstart
- OpenRC
To ensure that a specific service always restarts after failure in Linux, you would primarily use Systemd. Systemd is a modern init system that provides a feature-rich service management system and includes options for service restarts and recovery after failure.
Which directory is crucial for the system booting process?
- /boot
- /home
- /opt
- /var
The /boot directory is crucial for the system booting process in Linux. It contains essential files such as the kernel, initial RAM disk (initrd), and bootloader configurations. These files are necessary for the system to start up.
Imagine you're setting up a new server. You want to ensure that every user on the system has their own private space for files and data. Which directory structure in Linux helps facilitate this?
- /etc
- /home
- /tmp
- /var
To provide each user with their own private space for files and data, you would use the /home directory structure in Linux. User home directories are typically located within /home, and this separation ensures user privacy and data security.
Which directory in Linux is often used for mounting temporary file storage systems, like USB drives?
- /media
- /mnt
- /tmp
- /var
The /media directory in Linux is often used for mounting temporary file storage systems, like USB drives. When you plug in a USB drive, it's commonly mounted under the /media directory for easy access.
LXC provides a similar containerization service as Docker, but it is more focused on providing a full ________ environment.
- Kernel
- Networking
- System
- User
LXC (Linux Containers) provides a similar containerization service as Docker, but it is more focused on providing a full system environment. This means it can run multiple Linux distributions and even non-Linux operating systems with their own kernel, making it more flexible for certain use cases.