Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam EX200 topic 1 question 102 discussion

Actual exam question from RedHat's EX200
Question #: 102
Topic #: 1
[All EX200 Questions]

SIMULATION -
Install the appropriate kernel update from http://server.domain11.example.com/pub/updates.
The following criteria must also be met:
The updated kernel is the default kernel when the system is rebooted
The original kernel remains available and bootable on the system

Show Suggested Answer Hide Answer
Suggested Answer: See explanation below.
ftp server.domain11.example.com Anonymous login
ftp> cd /pub/updates ftp> ls
ftp> mget kernel* ftp> bye
rpm -ivh kernel*
vim /etc/grub.conf
Check the updatted kernel is the first kernel and the orginal kernel remains available. set default=0
:wq!

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
salamm
4 months ago
Install the appropriate kernel update from http://server.domain11.example.com/pub/updates. The following criteria must also be met: The updated kernel is the default kernel when the system is rebooted The original kernel remains available and bootable on the system the way i will do this: cd / then; wget http://server.domain11.example.com/pub/updates, ls -al if new kernel is there I will copy it somewhere and check current kernelswith the command #grubby --info=ALL ----this is to see all kernel then #grubby --default-kernel to see the default if its different from the new one to set new kernel use #grubby --set-default=/kernel/path then check with #grubby --default-kernel or STFN2019's solution dnf config-manager --add-repo http://server.domain11.example.com/pub/updates then; run #dnf update
upvoted 1 times
...
kenkct
2 years, 1 month ago
yum config-manager --add-repo {given_url} yum update kernel
upvoted 1 times
...
STFN2019
2 years, 6 months ago
The solution to the questions seems very confusing. Best way is to update the repos and install the new kernel which becomes your default kernel anyway, no need for any further changes. Simply follow an e.g. link here: https://computingforgeeks.com/how-to-install-latest-kernel-on-centos-linux/
upvoted 3 times
ANI_04
2 years, 6 months ago
$ dnf config-manager --add-repo {given_url} $ dnf update I agree with STFN2019 , maybe the above step will get the work done!
upvoted 3 times
...
...
ArchBishop
2 years, 11 months ago
Question: You should be able to use wget to obtain the correct packages here, yes? Is the only reason they didn't because they don't have the full path/name of the file to correctly use the command?
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...