linux报错shortread

linux报错shortread,第1张

以下是机房里的小兄弟整理的文章,首先感谢余义林的细心的发现问题解决问题,并整理问题。

错误信息:

checking filesystems

/contians a file system wite errors, check forced

Error reading block 145817602(Attempt to read block from filesystem short read)while geting mext inode from scan.

/:UNEXPECTED INCONSISTRENCY RUN fsck MANUALLY.

(i.e,withiout -a or -p options)

[FAILED]

*** An error occurred during the file system check

*** Dropping you to a shellthe system will reboot

*** when you leave the shell,

Give root password for maintenance (or type Control-D to continue)

导致的原因:

当Linux系统被强行关闭或重新启动,电脑的档案系统便有可能受损,系统会自动检查并修复档案系统;但当档案系统未能自动修复,画面便会出现上述讯息。需要手动修复

修复步骤:

一.当出现上述错误后,首先看的提示“Give root password”,首先想到的是输入超级用户的密码。

二.输入fsck -A –V,提示找不到/etc/fstab,用ls /etc/fstab查看是存在的。

三.输入#e2fsck /dev/sda3(sda3是你的磁盘名)命令,用df –T命令可以查看。

四.输入#e2fsck /dev/sda3命令,系统会显示如下信息

e2fsck 1.32 (09-Nov-2002)

/boot was not cleanly unmounted, check forced

Pass1: Checking inodes, blocks, and sizes(pass1检测完,有的会需要你输入Y,按照输入就行)

Pass2: Checking directory structure

Pass3: Checking directory connectivity

Pass4: Checking reference counts

Pass5: Checking group summary information

/boot: *****FILE SYSTEM WAS MODIFIED*****

/boot: 53/26104 files (13.2% non-contiguous), 27316/104391 blocks五.输入reboot命令,重启系统,正常进入系统,问题解决.

大体意思是: 用名为cc的编译器(其实就是gcc啦)编译C语言文件short.c,用 -o 指定编译出来的可执行文件为 short , 编译的时候还会链接一个静态库文件 libbaked.a 或动态库文件 libbaked.so

libbaked.a 中一般包含short.c调用到的子程序,函数等等东东。

需要注意的是 libbaked.a 必须要处在库搜索路径中,否则出错说找不到

或者用 -L???? 解决, libbaked.so 同理

libbaked.a 编译时连接 执行时无需再连接,执行文件已把库包含进来。

libbaked.so 编译时连接,执行时还要连接,执行文件没把库包含进来只告知需要连接这个库。


欢迎分享,转载请注明来源:内存溢出

原文地址:https://www.54852.com/yw/6133974.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-16
下一篇2023-03-16

发表评论

登录后才能评论

评论列表(0条)

    保存