82.7k views
3 votes
What is the system and service manager on our version of Fedora? How can you verify that on your system? (show the command below). What version of Linux is running on fawad, and what is it’s system manager?

User Kdlcruz
by
8.4k points

1 Answer

1 vote

Final answer:

The system and service manager on Fedora is systemd, which can be verified using the 'systemctl --version' command. The 'hostnamectl' command will show the Linux version running on a system with the hostname 'fawad', confirming systemd as the system manager.

Step-by-step explanation:

The system and service manager for Fedora, and most other modern Linux distributions, is systemd. To verify what system and service manager your version of Fedora is running, you can use the command:

systemctl --version

This command will return the version of systemd you are using. To check what version of Linux is running on a machine with the hostname 'fawad', you can execute the following command:

hostnamectl

This command will provide detailed information about the system, including the Linux version and the system architecture. It will also confirm that the system manager is indeed systemd.

User Xunzhang
by
8.6k points