核心公升級的一些體會

2021-05-06 07:16:54 字數 2016 閱讀 7877

下面是我在各處蒐集來的關於我目前出現錯誤的一些解法:

vmware linux公升級核心出現error 6 mounting ext3

問題進入新核心。到uncompressing linux這一行都是正常的。

但是後面顯示:

red hat nash version 4.2.1.8 starting

??reading all physical volumes. this may take a while...

??no volume groups found

??volume group "volgroup00" not found

error: /bin/lvm exited abnormally! (pid 342)

mount: error 6 mounting ext3

mount: error 2 mounting none

switchroot: mount failed: 22

umount /initrd/dev failed: 2

kernel panic - not syncing: attempted to kill init!

但是進入原來的核心一切正常。

----------------------

解決方法:

edit /usr/src/linux/drivers/message/fusion/mptbase.c to match the following

--- drivers/message/fusion/mptbase.orig.c 2007-07-20 18:47:21.000000000 +0000

+++ drivers/message/fusion/mptbase.c 2007-07-20 11:23:32.000000000 +0000

@@ -2564,6 +2564,10 @@

pfacts->iocstatus = le16_to_cpu(pfacts->iocstatus);

pfacts->iocloginfo = le32_to_cpu(pfacts->iocloginfo);

pfacts->maxdevices = le16_to_cpu(pfacts->maxdevices);

+ /* fix vmware bug */

+ if(pfacts->maxdevices == 0)

pfacts->portscsiid = le16_to_cpu(pfacts->portscsiid);

pfacts->protocolflags = le16_to_cpu(pfacts->protocolflags);

pfacts->maxpostedcmdbuffers = le16_to_cpu(pfacts->maxpostedcmdbuffers);

這是vmware的模擬lsi的乙個bug.

panic: no init found. try passing init= option to kernel.

在這裡,檢視存不存在乙個目錄initrd,如果不存在
mkdir

/initrd

reboot

類似問題的出現

ubuntu公升級核心過後的一些問題

ubuntu 最麻煩的就是公升級了系統核心過後容易引起各種問題,諸如顯示卡驅動不能正常工作而不能進入x介面,又如電源管理不能正常工作,以及下面將要談到的丟失核心等一系列問題。一 閉源顯示卡驅動fglrx不工作 如若顯示卡驅動不能正常工作 一般出現在ati的顯示卡上 需要解除安裝顯示卡驅動,重新安裝上...

當時的一些試用體會

試用remember milk posted 五月 14th,2007 by stone5 任務要支援樹型無限分類,即任務可以分解成具體的子任務,有的任務可以明確完成時間,有的任務指定提醒時間。便條的型別可分為 記事想法 任務日程 分析execl的基本圖表功能 posted 四月 16th,2007...

一些彙編學習的體會

學習彙編也已經有一段時間了,用的是王爽的 組合語言 很適合入門的一本書。我學習彙編最初的目的有二 1.在網上看到大家說,計算機專業的不學習彙編是過意不去的。2.加深對計算機工作原理的進一步理解。深入底層才能做的更好嘛。到目前為止,我還只是看完第 10章。很菜很菜。還在除錯 10章那個實驗題。學了大概...