Exam 201-450 All QuestionsBrowse all questions from this exam
Question 37

After manually compiling and installing a new kernel, what has to be done regarding the initramfs?

    Correct Answer: B

    Since the initramfs contains kernel modules specific to the kernel version, a new initramfs must be built for the new kernel after manually compiling and installing it. The initramfs needs to include the correct modules to ensure that the new kernel can properly initialize the system hardware during boot, which requires creating an updated initramfs that matches the new kernel.

Discussion
RockFerOption: B

I think it´s B...

Robert12Option: C

I think it's C - . It is automatically created when a new kernel is installed and deleted again when the kernel is removed from the system

lo_01234_ol

https://stackoverflow.com/questions/65868294/if-i-build-linux-kernel-from-source-does-it-contain-initramfs-inside-by-default

debloidOption: B

B - After compiling and installing a new kernel, you must generate an initramfs for the new kernel version and update your boot loader configuration to recognize the new kernel and its initramfs. These steps ensure that your system can properly boot using the new kernel.

MaikyCR28Option: B

B. The initramfs isn't installed during kernel installation, in the other hand, you'd built a new one for the new already installed kernel. E.g: After you install the kernel, you should run the following commands in order to install a new initramfs version: # sudo update-initramfs -c -k [kernel-version] # sudo update-grub

serlanOption: B

I think - B