CompTIA Linux+

Here you have the best CompTIA XK0-005 practice exam questions

  • You have 477 total questions across 96 pages (5 per page)
  • These questions were last updated on February 11, 2026
  • This site is not affiliated with or endorsed by CompTIA.
Question 1 of 477

An administrator accidentally deleted the /boot/vmlinuz file and must resolve the issue before the server is rebooted. Which of the following commands should the administrator use to identify the correct version of this file?
Answer

Suggested Answer

The suggested answer is A.

To identify the correct version of the /boot/vmlinuz file that needs to be restored, the 'rpm -qa | grep kernel' command can be used to list all installed kernel packages, and 'uname -a' can display information about the currently running kernel. By combining the outputs of these commands, an administrator can determine the specific version of the kernel that is needed. This approach directly addresses the requirement to identify the correct version of the deleted file.

Community Votes4 votes
ASuggested
100%
Question 2 of 477

A cloud engineer needs to change the secure remote login port from 22 to 49000. Which of the following files should the engineer modify to change the port number to the desired value?
Answer

Suggested Answer

The suggested answer is D.

To change the secure remote login port from 22 to 49000, the engineer should modify the /etc/ssh/sshd_config file. This file contains the configuration settings for the SSH server, including the port number. The engineer needs to find the line that specifies Port 22 and change it to Port 49000. After making this change, the SSH service must be restarted for the new port configuration to take effect.

Community Votes3 votes
DSuggested
100%
Question 3 of 477

A new file was added to a main Git repository. An administrator wants to synchronize a local copy with the contents of the main repository. Which of the following commands should the administrator use for this task?
Answer

Suggested Answer

The suggested answer is B.

To synchronize a local copy with the contents of the main Git repository, the administrator should use the 'git pull' command. This command fetches the latest changes from the remote repository and merges them into the local branch, ensuring that the local copy has the most recent updates, including any new files that were added.

Community Votes1 vote
DMost voted
100%
Question 4 of 477

A Linux administrator needs to redirect all HTTP traffic temporarily to the new proxy server 192.0.2.25 on port 3128. Which of the following commands will accomplish this task?
Answer

Suggested Answer

The suggested answer is D.

To redirect all HTTP traffic temporarily to the new proxy server 192.0.2.25 on port 3128, the command used must perform destination NAT (DNAT) on incoming TCP packets destined for port 80. The correct command that meets all these criteria is 'iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination 192.0.2.25:3128'. This command appends a rule to the PREROUTING chain in the NAT table, specifically targeting TCP packets with a destination port of 80 and redirecting them to the new proxy server at the specified IP address and port.

Community Votes1 vote
DSuggested
100%
Question 5 of 477

Developers have requested implementation of a persistent, static route on the application server. Packets sent over the interface eth0 to 10.0.213.5/32 should be routed via 10.0.5.1. Which of the following commands should the administrator run to achieve this goal?
Answer

Suggested Answer

The suggested answer is D.

To implement a persistent, static route on the application server, the command 'ip route add 10.0.213.5/32 via 10.0.5.1 dev eth0' should be used. This command correctly specifies that packets sent to the destination 10.0.213.5/32 should be routed via the gateway 10.0.5.1, using the interface eth0. The 'ip route add' command is the appropriate way to add a new route to the routing table in Linux. For persistence across reboots, this command should be added to the appropriate network configuration file or system startup script.

Community Votes1 vote
DSuggested
100%

About the CompTIA XK0-005 Certification Exam

About the Exam

The CompTIA XK0-005 (CompTIA Linux+) validates your knowledge and skills. Passing demonstrates proficiency and can boost your career prospects in the field.

How to Prepare

Work through all 477 practice questions across 96 pages. Focus on understanding the reasoning behind each answer rather than memorizing responses to be ready for any variation on the real exam.

Why Practice Exams?

Practice exams help you familiarize yourself with the question format, manage your time, and reduce anxiety on the test day. Our XK0-005 questions are regularly updated to reflect the latest exam objectives.