exam questions

Exam EX200 All Questions

View all questions & answers for the EX200 exam

Exam EX200 topic 1 question 31 discussion

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

SIMULATION -
Install the Kernel Upgrade.
Install suitable kernel update from:
http://server.domain11.example.com/pub/updates.
Following requirements must be met:
Updated kernel used as the default kernel of system start-up.
The original kernel is still valid and can be guided when system starts up.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
gaven186
1 year, 2 months ago
provide alternative for discussion # uname -r # yum --enablerepo=url list available | grep "kernel-" # wget url/kernel-package.rpm # dnf install ./kernel-<version>.rpm # grep '^menuentry' /boot/grub2/grub.cfg //list all the menu entries, new kernel at 0 # grub2-set-default 0 # uname -a (to see current kernel) # reboot
upvoted 1 times
gaven186
1 year ago
ignore yum --enablerepo=url list available | grep "kernel-" since we are installing rpm locally
upvoted 1 times
...
...
PENNSHARK
1 year, 6 months ago
wget http://server.domain11.example.com/pub/updates/kernel-package.rpm sudo yum install kernel-package.rpm grub2-mkconfig -o /boot/grub2/grub.cfg grubby --info=ALL (to check which kernel index it is) grubby --set-default-index (change to what index the kernel is) uname -a (to see current kernel) reboot uname -a to check for proof
upvoted 1 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 ...