De acordo com as Leis 12.965/2014 e 13.709/2018, que regulam o uso da Internet e o tratamento de dados pessoais no Brasil, ao me inscrever na newsletter do portal DICAS-L, autorizo o envio de notificações por e-mail ou outros meios e declaro estar ciente e concordar com seus Termos de Uso e Política de Privacidade.
Colaboração: Felipe dos Santos
Data de Publicação: 25 de outubro de 2011
$ cd /usr/src
# wget -c http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2
# tar xvjf linux-3.0.4.tar.bz2
# cd linux-3.0.4
.config
Um arquivo .config
contém configurações pré-estabelecidas para a compilação do Kernel.
Se você quiser manter o .config
utilizado atualmente pelo seu sistema, execute o comando abaixo.
# cp /boot/config-2[pressione TAB] /usr/src/linux-3.0.4/.config
# make menuconfig
# make -j 3 bzImage
# make -j 3 modules
# make -j 3 modules_install
initrd
Vamos criar o initrd
para o Kernel instalado. initrd
significa Initial RAM disk. Ele contém uma pequena imagem do sistema que será carregada no boot.
# mkinitramfs 3.0.4 -o /boot/initrd.img-3.0.4Este comando copiará o bzImage para o diretório /boot, renomeando para vmlinuz-3.0.4
# cp arch/i386/boot/bzImage /boot/vmlinuz-3.0.4
# update-grub ou edite o grub manualmente =) # vim /boot/grub/grub.cfg
Blog do autor
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Comentários