Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Witam,
jako, że to moja pierwsza kompilacja kernela, proszę o szczyptę wyrozumiałości ;)
Robię to według: http://www.howtoforge.com/kernel_compilation_debian_etch
Pobrałem linux-2.6.30.9.tar.bz2, rozpakowałem w /usr/src, zrobiłem dowiązanie, przechodzę do /usr/src/linux
Niestety już w punkcie 2.4 Configure The Kernel wpisanie
make clean && make mrproper
zwraca mi:
poligon:/usr/src/linux# make clean && make mrproper
/usr/src/linux-headers-2.6.30-2-common/scripts/Makefile.clean:17: /usr/src/linux-headers-2.6.30-2-common/arch/x86/boot/Makefile: Nie ma takiego pliku ani katalogu
make[3]: *** Brak reguł do wykonania obiektu `/usr/src/linux-headers-2.6.30-2-common/arch/x86/boot/Makefile'. Stop.
make[2]: *** [archclean] Błąd 2
make[1]: *** [sub-make] Błąd 2
make: *** [all] Błąd 2
I pytanie, dlaczego?
Offline
Masz dowiązanie do /usr/src/linux-headers-2.6.30-2-common zamiast do rozpakowanych źródeł.
Offline
cd /usr/src && rm linux && ln -s linux-2.6.30.9 linux
I pozamiatane :)
Offline
No tak, to już poprawiłem, teraz inny problem - po kompilacji mam dwa nowe pakiety w /usr/src :
-rw-r--r-- 1 root src 26616552 11-22 21:30 linux-xenu-2.6.30.9-custom_2.6.30.9-custom-10.00.Custom_amd64.deb
-rw-r--r-- 1 root src 6023130 11-22 21:31 linux-headers-2.6.30.9-custom_2.6.30.9-custom-10.00.Custom_amd64.deb
najpierw instaluję tego xenu a potem nagłówki.
Problem tkwi w tym, że instalacja kończy się sukcesem, natomiast po restarcie w grubie nie ma wyboru innego jajka
uname -r daje 2.6.30-2-amd64
czyli nadal coś jest nie tak :/
Offline
To ma jakiś związek z przejściem na grub2 (prawdopodobnie niepełnym). Dokładnie nie powiem, bo sam używam starego.
Ostatnio edytowany przez ArnVaker (2009-11-22 22:54:08)
Offline
Albo ręcznie dopisz nowe jajko, albo spróbuj 'update-grub'.
Offline
Do czego ci xen?, teraz standardem raczej jest kvm. Tutaj masz jak powinny wyglądać wpisy w grubie:
http://www.gentoo.org/doc/pl/xen-guide.xml
Musisz dodać ręcznie do /etc/grub.d/40_custom
Offline
Dobra, podszedłem do kompilacji po raz drugi, paczki potworzone, poinstalowane ale ponownie problem mam(tak mi się przynajmniej wydaje) z GRUBem.
Po próbie wybrania nowego jądra w menu dostaję message:
Kernel panic - not syncing: vfs: unable to mount root fs on unknown block(0,0)
zaś wpis w menu.lst wygląda następująco:
# # DO NOT EDIT THIS FILE # # It is automatically generated by /usr/sbin/grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### set default=0 insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=640x480 insmod gfxterm insmod vbe if terminal_output gfxterm ; then true ; else # For backward compatibility with versions of terminal.mod that don't # understand terminal_output terminal gfxterm fi fi set timeout=5 ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 insmod png if background_image /usr/share/images/desktop-base/moreblue-orbit-grub.png ; then set color_normal=black/black set color_highlight=magenta/black else set menu_color_normal=cyan/blue set menu_color_highlight=white/blue fi ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### menuentry "Debian GNU/Linux, Linux 2.6.30.9-custom" { insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 linux /boot/vmlinuz-2.6.30.9-custom root=UUID=75534752-6929-41fb-bc7f-6d4560634b58 ro quiet } menuentry "Debian GNU/Linux, Linux 2.6.30.9-custom (recovery mode)" { insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 linux /boot/vmlinuz-2.6.30.9-custom root=/dev/sda3 ro single } menuentry "Debian GNU/Linux, Linux 2.6.30-2-amd64" { insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 linux /boot/vmlinuz-2.6.30-2-amd64 root=UUID=75534752-6929-41fb-bc7f-6d4560634b58 ro quiet initrd /boot/initrd.img-2.6.30-2-amd64 } menuentry "Debian GNU/Linux, Linux 2.6.30-2-amd64 (recovery mode)" { insmod ext2 set root=(hd0,3) search --no-floppy --fs-uuid --set 75534752-6929-41fb-bc7f-6d4560634b58 linux /boot/vmlinuz-2.6.30-2-amd64 root=UUID=75534752-6929-41fb-bc7f-6d4560634b58 ro single initrd /boot/initrd.img-2.6.30-2-amd64 } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/30_os-prober ### ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_otheros ### # This entry automatically added by the Debian installer for a non-linux OS # on /dev/sda2 menuentry "Windows Vista (loader)" { set root=(hd0,2) search --no-floppy --fs-uuid --set 386e333a6e32efec chainloader +1 } ### END /etc/grub.d/30_otheros ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry "Windows" { insmod ntfs set root=(hd0,2) chainloader +1 } ### END /etc/grub.d/40_custom ###
Na pierwszy rzut oka brakuje przy nowym kernelu wpisu podobnego do tego: initrd /boot/initrd.img-2.6.30-2-amd64 ale sprawdziłem i w /boot jest tylko jeden initrd.img- dla starego jajka.
Czy ktoś miał może podobny problem?
Offline
Skoro nie masz initrd to musisz go wygenerować, jakoś tak:
mkinitramfs -o /boot/initrd.img-2.6.30.9-custom /lib/modules/2.6.30.9-custom
później tylko update-grub i reboot
Offline
Ja też tego nie mam... Ale czy nie chodzi Ci czasem o:
http://www.mythtv.org/wiki/ACPI_Wakeup
"Kernel versions 2.6.22 and newer use /sys/class/rtc/rtc0/wakealarm "?
PS. Kompilacja jajka? Mój linuks jest męski i ma jądra... Kobiece linuksy mają jajka.
Offline
Time (s) | Query |
---|---|
0.00010 | SET CHARSET latin2 |
0.00004 | SET NAMES latin2 |
0.00098 | SELECT u.*, g.*, o.logged FROM punbb_users AS u INNER JOIN punbb_groups AS g ON u.group_id=g.g_id LEFT JOIN punbb_online AS o ON o.ident='18.116.15.22' WHERE u.id=1 |
0.00129 | REPLACE INTO punbb_online (user_id, ident, logged) VALUES(1, '18.116.15.22', 1732327849) |
0.00053 | SELECT * FROM punbb_online WHERE logged<1732327549 |
0.00057 | SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, 0 FROM punbb_topics AS t INNER JOIN punbb_forums AS f ON f.id=t.forum_id LEFT JOIN punbb_forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id=15571 AND t.moved_to IS NULL |
0.00008 | SELECT search_for, replace_with FROM punbb_censoring |
0.00196 | SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM punbb_posts AS p INNER JOIN punbb_users AS u ON u.id=p.poster_id INNER JOIN punbb_groups AS g ON g.g_id=u.group_id LEFT JOIN punbb_online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id=15571 ORDER BY p.id LIMIT 0,25 |
0.00107 | UPDATE punbb_topics SET num_views=num_views+1 WHERE id=15571 |
Total query time: 0.00662 s |