1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 17:19:47 +01:00
tldr/pages/linux/genkernel.md

25 lines
656 B
Markdown
Raw Normal View History

2017-07-27 23:21:36 +02:00
# genkernel
> Gentoo Linux utility to compile and install kernels.
> More information: <https://wiki.gentoo.org/wiki/Genkernel>.
2017-07-27 23:21:36 +02:00
- Automatically compile and install a generic kernel:
`sudo genkernel all`
- Build and install the bzImage|initramfs|kernel|ramdisk only:
`sudo genkernel {{bzImage|initramfs|kernel|ramdisk}}`
- Apply changes to the kernel configuration before compiling and installing:
`sudo genkernel --menuconfig all`
- Generate a kernel with a custom name:
`sudo genkernel --kernname={{custom_name}} all`
- Use a kernel source outside the default directory `/usr/src/linux`:
2017-07-27 23:21:36 +02:00
`sudo genkernel --kerneldir={{path/to/directory}} all`