位置: 编程技术 - 正文

LINUX系统grub常见错误分析(linux grub2)

编辑:rootadmin

推荐整理分享LINUX系统grub常见错误分析(linux grub2),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:linux的grub在哪,linux的grub在哪,linux grub.cfg,linux的grub是什么意思,linux grub命令行,linux grub2,linux中grub,linux中grub,内容如对您有帮助,希望把文章链接给更多的朋友!

LINUX系统grub常见错误分析(linux grub2)

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 号错误表示未知的引导错误 引用: : Unsupported Multiboot features requested 解释 : 号错误表示请求 Multiboot header 所要求功能不被 GRUB 所支持。 引用: : Unrecognized device string 解释 : 号错误表示无法识别的设备字符串。 例子 : grub> root hd0 Error : Unrecognized device string grub> 引用: : Invalid device requested 解释 : 号错误表示请求的设备无效 例子 : grub> root (hd2) Error : Selected disk does not exist grub> kernel /grub/grub.conf root=LABEL=/ Error : Invalid device requested grub> 引用: : Invalid or unsupported executable format 解释 : 号错误表示无效或者无法识别的可执行格式 例子 : grub> kernel /grub/grub.conf root=LABEL=/ Error : Invalid or unsupported executable format grub> 引用: : Filesystem compatibility error, cannot read whole file 解释 : 号错误表示文件系统兼容性错误,无法读取整个文件 引用: : File not found 解释 :请求的文件无法找到 例子 : grub> find /grub-noexist/grub.conf Error : File not found grub> 引用: : Inconsistent filesystem structure 解释 : 号错误表示不一致的文件系统结构。可能是文件系统结构被破坏了。 引用: : Cannot mount selected partition 解释 :号错误表示无法挂载指定分区。例如 swap 分区 例子 : grub> root (hd0,2) 这是一个 swap 分区 Filesystem type unknown, partition type 0x grub> kernel /vmlinuz Error : Cannot mount selected partition grub> 引用: : Selected cylinder exceeds maximum supported by BIOS 解释 : 号错误表示选择的柱面超过了 BIOS 支持的最大能力。这通常发生在不支持 LBA 模式 的硬盘上。 引用: : Linux kernel must be loaded before initrd 解释 : 号错误表示执行 initrd 命令前必须先执行 kernel 命令 引用: : Multiboot kernel must be loaded before modules 解释 : 号错误表示执行 module 或者 moduleunzip 命令前必须先执行 kernel 命令 引用: : Selected disk does not exist 解释 : 号错误表示选择的磁盘不存在 例子 : grub> root (hd2) Error : Selected disk does not exist grub> 引用: : No such partition 解释 : 号错误表示分区不存在 例子 : grub> root (hd0,) Error : No such partition grub> 引用: : Error while parsing number 解释 : 号错误表示参数解释错误,希望是一个数值,但参数却是其他类型 例子 : grub> root (hda,0) Error : Error while parsing number grub> 引用: : Attempt to access block outside partition 解释 : 号错误表示尝试访问的 block 超出了分区 引用: : Disk read error 解释 : 号错误表示磁盘读错误 引用: : Too many symbolic links 解释 : 号错误表示太多的符号连接(默认最多允许5个) 引用: : Unrecognized command 解释 :无法识别的命令 引用: : Selected item cannot fit into memory 解释 :选择的对象无法被加载到内存中。 例子 : [root@monitor boot]# dd if=/dev/zero of=vmlinuz-2.4.-.9 bs= count=1 seek=1 读入了 1+0 个块 输出了 1+0 个块 [root@monitor boot]#grub grub> kernel /vmlinuz-2.4.-.9 root=label=/ [Linux-bzImage, setup=0x, size=0xfffff] Error : Selected item cannot fit into memory grub> 引用: : Disk write error 解释 :磁盘写错误 引用: : Invalid argument 解释 :无效参数 例子 : grub> serial --noarg=0 Error : Invalid argument grub> 引用: : 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. 引用: : Must be authenticated 解释 :要求输入口令才能继续进行下面的操作。例如配置文件中有 password 或者 lock 命令 例子 : password root title DOS lock rootnoverify (hd0,0) chainloader +1 引用: : Serial device not configured 解释 : 号错误表示串口还没有配置。这一般发生在你执行 terminal serial 的时候 引用: : No spare sectors on the disk 解释 :磁盘自由空间不足。可能发生在把 stage 1.5 嵌入到 MBR 之后的空间的时候。但这部分空间可能已经被分区表使用了

llinux fdisk分区工具 使用方法 一、fdisk的介绍;fdisk-PartitiontablemanipulatorforLinux,译成中文的意思是磁盘分区表操作工具;本人译的不太好,也没有看中文文档;其实就是分区工具;fds

linux 系统telnet乱码 local是utf-8的时候telnetgbk编码的bbs会出现乱码解决方法:使用luitluit-encodinggbktelnetbbs.xjtu.edu.cn

rhythmbox 乱码的解决方法 首先,需要有软件包mid3iconv。如果你的系统中没有安装它,可以通过如下代码自动安装:sudoapt-getinstallpython-mutagen然后转到你的MP3目录,执行以全命令进

标签: linux grub2

本文链接地址:https://www.jiuchutong.com/biancheng/359194.html 转载请保留说明!

上一篇:Linux查看文件夹大小的命令(linux查看文件夹大小)

下一篇:llinux fdisk分区工具 使用方法(diskgenius分区linux)

  • 怎么计提坏账准备到本年利润
  • 个人独资企业和个体工商户的税收区别
  • 什么是特别纳税人
  • 建筑劳务发票是全额抵扣吗
  • 小微企业所得税税率
  • 税务局财务报表报送期限
  • 进项税需要转出吗
  • 增值税专用发票怎么开
  • 材料成本会计的主要内容
  • 溢价发行债券的发行价格怎么计算的
  • 汇算清缴补交的所得税怎么记帐
  • 开劳务分包发票需要什么条件?
  • 外购公司的长期投资如何做账
  • 印花税按含税收入还是不含税收入
  • 行政单位以前年度会计错账调整
  • 捐款属于什么会计科目类别
  • 高新企业职工食堂承包方案
  • 低值易耗品与固定资产有相同的特征,表现在哪里?
  • 全民游戏盒子怎么卸载
  • 辞退补偿入账
  • 发票认证如何认证
  • w10系统有线连接网络
  • msoobe.exe是什么
  • pniopcac.exe是什么进程
  • PHP:pg_query_params()的用法_PostgreSQL函数
  • 在树洞中休息的英语
  • 先买入再卖出
  • 固定资产折旧需要减去减值准备吗
  • 森林中的结香花,日本 (© nattya3714/Getty Images)
  • node安装配置环境变量
  • vue封装组建
  • 残保金所属期怎么写
  • vue 动态样式
  • 计提租金怎么做会计分录
  • mysqldump语句
  • element ui vue 3
  • 购房发票可以对折吗
  • 固定资产多少金额才算
  • 企业所得税怎么征收几个点
  • 年金现值系数和年金终值系数的公式
  • php写在html里不行
  • 印花税怎么计算公式
  • 其他支出怎么做账
  • 固定资产清理科目有余额吗
  • 应计入应付款项的科目
  • 清算中的资产损失
  • 软件开发企业怎么结转成本
  • 政府补助如何会计核算
  • 残保金季报还是月报
  • 员工工资怎么入账
  • 年底本年利润结转错了怎么调
  • 小规模纳税人购买原材料会计分录
  • 单位缴纳的社保计入什么科目
  • 建厂期间购买材料怎么办
  • 合作社盈余返还总额是指哪些数据
  • 进口关税,增值税,消费税
  • 进口料件内销的关税和增值税怎么计算
  • 加油站如何开票
  • 房地产企业会计处理
  • mysql安装配置教程5.7.26
  • mysql的基本介绍
  • mysql安装与配置详细教程
  • win8开机logo
  • xp 指定的域不存在,或无法联系
  • usbmmkbd.exe - usbmmkbd是什么进程
  • windows7不能使用的文件名
  • linux的命令行界面
  • Extjs EditorGridPanel中ComboBox列的显示问题
  • 如何在linux安装软件
  • 基于像素的分类方法
  • javascript有哪些常用的属性和方法
  • js 位置
  • javascript面向对象编程指南
  • cocos-2dx
  • shell编程入门
  • linux 中的atq命令
  • python常见的格式化输出小结
  • jquery调用iframe中的方法
  • unity打包后的程序闪退
  • 济南房产税如何计算公式
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设