歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux教程

Gentoo安裝運行後 /boot文件夾為什麼是空的?

Gentoo安裝完成後,發現/boot文件夾下面沒有任何內容

此問題由二個原因引起的,一是內核不支持ext2,另一是fstab配置錯誤

Step 1: 重新編譯內核

File systems --->
      <*> Second extended fs support
       [*]   Ext2 extended attributes
       [*]         Ext2 POSIX Access control
       [*]         Ext2Security Labels


Step 2: 修改fstab文件

參考http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8

Code Listing 1.3: A full /etc/fstab example

/dev/sda1 /boot ext2 defaults,noatime 1 2

安裝時參考《Gentoo Linux x86 Quick Install Guide》http://www.gentoo.org/doc/en/gentoo-x86-quickinstall.xml

/dev/sda1 /boot ext2 noauto,noatime 1 2

《Gentoo Linux x86 Quick Install Guide》一文中是錯誤的,noauto需要改成defaults

Step 3: 重啟確認OK

Copyright © Linux教程網 All Rights Reserved