一本一本久久a久久精品综合,啦啦啦视频免费播放在线观看,六十六十路熟妇高熟在线,老头解开奶罩吸奶头高潮视频,一本久久a久久免费精品不卡,顶级欧美熟妇高清xxxxx,爆乳熟妇一区二区三区霸乳,无码h黄肉3d动漫在线观看

綠色資源網:您身邊最放心的安全下載站! 最新軟件|熱門排行|軟件分類|軟件專題|廠商大全

綠色資源網

技術教程
您的位置:首頁操作系統linux → LINUX系統grub常見錯誤分析

LINUX系統grub常見錯誤分析

我要評論 2011/06/02 14:34:22 來源:綠色資源網 編輯:downcc.com [ ] 評論:0 點擊:282次

1 : Filename must be either an absolute filename or blocklist
解釋 :1號錯誤表示文件名格式錯誤。在 GRUB 中要么是以絕對路徑給出文件
例子 :
grub> kernel vmlinuz root=label=/
Error 1: Filename must be either an absolute pathname or blocklist
grub>

 
2 : Bad file or directory type
解釋 :2號錯誤表示命令期望的是一個普通文件,但相應文件名的對象是一個符號鏈接、目錄、FIFO
例子 :
grub> kernel /testdir root=LABEL=/
Error 2: Bad file or directory type
grub>

 
3 : Bad or corrupt data while decompressing file

解釋 :3號錯誤表示解壓文件時發生錯誤??赡苁且驗檫@個文件被損壞了

 
4 : Bad or incompatible header in compressed file
解釋 :4號錯誤表示壓縮文件的頭部格式不被兼容或者錯誤

 
5 : Partition table invalid or corrupt
解釋 :5 號錯誤表示分區表無效或者被破壞。這是一個不好的預兆

 
6 : Mismatched or corrupt version of stage1/stage2
解釋 :6號錯誤表示 install 命令發現 stage1 和 stage2 的頒布號不被兼容

 
7 : Loading below 1MB is not supported
解釋 :This error is returned if the lowest address in a kernel is below
the 1MB boundary. The Linux zImage format is a special case and
can be handled since it has a fixed loading address and maximum size

 
8 : Kernel must be loaded before booting
解釋 :8號錯誤表示執行 boot 命令之前沒有先執行 kernel 命令

 
9 : Unknown boot failure
解釋 :9 號錯誤表示未知的引導錯誤

 
10 : Unsupported Multiboot features requested
解釋 :10 號錯誤表示請求 Multiboot header 所要求功能不被 GRUB 所支持。

 
11 : Unrecognized device string
解釋 :11 號錯誤表示無法識別的設備字符串。
例子 :
grub> root hd0
Error 11: Unrecognized device string
grub>

 
12 : Invalid device requested
解釋 :12 號錯誤表示請求的設備無效
例子 :
grub> root (hd2)
Error 21: Selected disk does not exist
grub> kernel /grub/grub.conf root=LABEL=/
Error 12: Invalid device requested
grub>


13 : Invalid or unsupported executable format
解釋 :13 號錯誤表示無效或者無法識別的可執行格式
例子 :
grub> kernel /grub/grub.conf root=LABEL=/
Error 13: Invalid or unsupported executable format
grub>

 
14 : Filesystem compatibility error, cannot read whole file
解釋 :14 號錯誤表示文件系統兼容性錯誤,無法讀取整個文件

 
15 : File not found
解釋 :請求的文件無法找到
例子 :
grub> find /grub-noexist/grub.conf
Error 15: File not found
grub>

 
16 : Inconsistent filesystem structure
解釋 :16 號錯誤表示不一致的文件系統結構??赡苁俏募到y結構被破壞了。

 
17 : Cannot mount selected partition
解釋 :17號錯誤表示無法掛載指定分區。例如 swap 分區
例子 :
grub> root (hd0,2) 這是一個 swap 分區
Filesystem type unknown, partition type 0x82
grub> kernel /vmlinuz
Error 17: Cannot mount selected partition
grub>


18 : Selected cylinder exceeds maximum supported by BIOS
解釋 :18 號錯誤表示選擇的柱面超過了 BIOS 支持的最大能力。這通常發生在不支持 LBA 模式
的硬盤上。

 
19 : Linux kernel must be loaded before initrd
解釋 :19 號錯誤表示執行 initrd 命令前必須先執行 kernel 命令

 
20 : Multiboot kernel must be loaded before modules
解釋 :20 號錯誤表示執行 module 或者 moduleunzip 命令前必須先執行 kernel 命令

 
21 : Selected disk does not exist
解釋 :21 號錯誤表示選擇的磁盤不存在
例子 :
grub> root (hd2)
Error 21: Selected disk does not exist
grub>


22 : No such partition
解釋 :22 號錯誤表示分區不存在
例子 :
grub> root (hd0,10)
Error 22: No such partition
grub>


23 : Error while parsing number
解釋 :23 號錯誤表示參數解釋錯誤,希望是一個數值,但參數卻是其他類型
例子 :
grub> root (hda,0)
Error 23: Error while parsing number
grub>


24 : Attempt to access block outside partition
解釋 :24 號錯誤表示嘗試訪問的 block 超出了分區

 
25 : Disk read error
解釋 :25 號錯誤表示磁盤讀錯誤


26 : Too many symbolic links
解釋 :26 號錯誤表示太多的符號連接(默認最多允許5個)

 
27 : Unrecognized command
解釋 :無法識別的命令

 
28 : Selected item cannot fit into memory
解釋 :選擇的對象無法被加載到內存中。
例子 :
[root@monitor boot]# dd if=/dev/zero of=vmlinuz-2.4.20-31.9 bs=1024 count=1 seek=1
讀入了 1+0 個塊
輸出了 1+0 個塊

[root@monitor boot]#grub
grub> kernel /vmlinuz-2.4.20-31.9 root=label=/
[Linux-bzImage, setup=0x1400, size=0xfffff200]

Error 28: Selected item cannot fit into memory

grub>

 
29 : Disk write error
解釋 :磁盤寫錯誤

 
30 : Invalid argument
解釋 :無效參數
例子 :
grub> serial --noarg=0
Error 30: Invalid argument
grub>


31 : File is not sector aligned
解釋 :This error may occur only when you access a ReiserFS partition by
block-lists (e.g. the command `install'). In this case, you should
mount the partition with the `-o notail' option.


32 : Must be authenticated
解釋 :要求輸入口令才能繼續進行下面的操作。例如配置文件中有 password 或者 lock 命令
例子 :
password root1234
title DOS
lock
rootnoverify (hd0,0)
chainloader +1

 
33 : Serial device not configured
解釋 :33 號錯誤表示串口還沒有配置。這一般發生在你執行 terminal serial 的時候


34 : No spare sectors on the disk
解釋 :磁盤自由空間不足??赡馨l生在把 stage 1.5 嵌入到 MBR 之后的空間的時候。但這部分空間可能已經被分區表使用了

關鍵詞:LINUX,grub

閱讀本文后您有什么感想? 已有 人給出評價!

  • 0 歡迎喜歡
  • 0 白癡
  • 0 拜托
  • 0 哇
  • 0 加油
  • 0 鄙視
主站蜘蛛池模板: 黑人巨大精品欧美| 亚洲天堂国产v| 熟女少妇精品一区二区| 免费观看又污又黄的网站| 女人爽到高潮免费视频大全| 欧美xxxx做受欧美.88| 99国产精品久久久蜜芽| 我不卡影院手机在线观看| 桃花影院理论片在线| 在线成人一区二区| 果冻传媒在线| 欧美丰满熟妇aaaaa片| 极品人妻少妇一区二区三区| 久久精品中文字幕大胸| 国产三级无码内射在线看| sm调教室论坛首页入口| 欧美一区二区三区啪啪| 欧美色欧美亚洲另类一区二区三区| 香蕉视频在线观看亚洲| 狠狠色噜噜狠狠狠狠777米奇| 西西人体44rt大胆高清张悠雨| 日本免费| 久久久久人妻一区精品果冻| 色老头在线一区二区三区| 色琪琪丁香婷婷综合久久| 人人人妻人人人妻人人人| 午夜伦费影视在线观看| 国产在线拍揄自揄视频网试看| 午夜精品久久久久久久99老熟妇 | 亚洲国产欧美国产综合一区| 日韩精品无码熟人妻视频| 欧美色欧美亚洲国产熟妇在线| 日本动漫瀑乳h动漫啪啪免费| 亚洲av日韩av天堂影片人人网| 女人脱裤子让男生桶| 饥渴少妇高潮正在播放| 亚洲午夜久久久久久久久电影网| 两个人高清在线观看www| 97精品超碰一区二区三区| 亚洲欧美乱综合图片区小说区| 国产精品毛片av999999|