데비안이 새로운 커널을 부팅하도록하는 방법?


9

원격 시스템의 Grub2 (1.98 + 20100804-14 + squeeze1)에서 Linux 2.6.32-5-amd64와 함께 데비안 6, 데비안 GNU / 리눅스를 실행하고 있습니다 (사전 부팅 메시지를 볼 수 없음). 새 커널을 컴파일하고 설치했지만 부팅 할 수 없습니다.

내가 뭘 한거지:

다음을 통해 패키지를 설치했습니다.

dpkg -i linux-headers-3.5.3.20120914-amd64_3.5.3.20120914-amd64-10.00.Custom_amd64.deb linux-image-3.5.3.20120914-amd64_3.5.3.20120914-amd64-10.00.Custom_amd64.deb

Grub 구성이 업데이트되었습니다. 내 /boot/grub/grub.cfg에 다음이 포함됩니다.

menuentry 'Debian GNU/Linux, with Linux 3.5.3.20120914-amd64' --class debian --class gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(md0)'
        search --no-floppy --fs-uuid --set 5a3882a9-c7df-4f6a-9feb-f03e3e37be01
        echo    'Loading Linux 3.5.3.20120914-amd64 ...'
        linux   /vmlinuz-3.5.3.20120914-amd64 root=UUID=003242b5-121b-49f3-b32f-1b40aea56eed ro acpi=ht quiet panic=10
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-3.5.3.20120914-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64' --class debian --class gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(md0)'
        search --no-floppy --fs-uuid --set 5a3882a9-c7df-4f6a-9feb-f03e3e37be01
        echo    'Loading Linux 2.6.32-5-amd64 ...'
        linux   /vmlinuz-2.6.32-5-amd64 root=UUID=003242b5-121b-49f3-b32f-1b40aea56eed ro acpi=ht quiet panic=10
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-2.6.32-5-amd64
}

내가 사용 grub-set-default "Debian GNU/Linux, with Linux 2.6.32-5-amd64"후 기본값으로 이전 커널을 설정하고 grub-reboot "Debian GNU/Linux, with Linux 3.5.3.20120914-amd64"한 번 새로운 커널로 부팅. update-grub시스템을 재부팅 한 후 매번 이전 커널 (2.6)이 다시 나타납니다. 나는 기본적으로 (로 새로운 설정을 시도 grub-set-default 0, update-grub, reboot)하지만, 여전히 이전을.

Syslog에는 새 커널 부팅에 대한 힌트가 없으며 이전 커널 만 있습니다. 커널 문제에 관한 힌트가 있습니까? grub에서 디버그 로깅을 활성화하는 방법이 있습니까?

내가 무엇을 잘못하고 있지? 시스템이 새 커널을 부팅하도록하려면 어떻게해야합니까?

편집 : 원격 컴퓨터의 하드웨어.

CPU

cat /proc/cpuinfo
processor       : 0
vendor_id       : AuthenticAMD
cpu family      : 16
model           : 5
model name      : AMD Athlon(tm) II X4 605e Processor
stepping        : 3
cpu MHz         : 2294.898
cache size      : 512 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 5
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt
bogomips        : 4589.77
TLB size        : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

(첫 번째 만 복사, 3 명 더 팔로우)

서버는 Fujitsu PRIMERGY MX130 S1입니다.


원격 하드웨어를 설명하십시오.
Michael Hampton

@MichaelHampton 님이 hw 정보를 추가했습니다. 그밖에 무엇이 필요합니까?
ThE _-_ BliZZarD

답변:


8

구성 파일을 확인하십시오. /etc/default/grub항목이 있어야합니다. 이것은 메뉴 항목을 GRUB_DEFAULT=0나타냅니다.

하위 메뉴가있는 경우 몇 가지 결함이 있지만 Xen 커널을 추가했을 때만 실행됩니다.

GRUB1에서 GRUB2 메뉴 (일반적으로 업그레이드에서 발생)로 연결되지 않았는지 확인하고 설정 GRUB_DEFAULT및 실행

grub-mkconfig -o /boot/grub/grub.cfg

이것은 구성 파일에서 Grub이 사용하는 grub 구성을 다시 빌드합니다. /etc/grub.d

커널이 빌드 될 때 목록이 표시되며, 살펴보면 /boot/grub/grub.cfg라는 줄 (12 번째 줄)이 표시 default="x"됩니다.

재부팅하고 새로운 커널을 즐기십시오.


"GRUB1에서 GRUB2 메뉴로 체인을 연결하지 않았는지 확인하십시오"무엇을 의미합니까?
franck 2016 년

연쇄 물건은 2012 년부터 시작된 것으로 보이며 더 이상 발생하지 않을 것입니다. franck
Warren P
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.