|
|

楼主 |
发表于 2009-1-4 14:27:31
|
显示全部楼层
--------------------
fstab中:
# /etc/fstab: static file system information.
#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed; notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail / tail freely.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# See the manpage fstab(5) for more information.
#
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda2 none swap sw 0 0
/dev/sda1 / ext3 noatime 0 1
#none /proc proc defaults 0 0
#none /dev/shm tmpfs nodev,nosuid,noexec 0 0
/dev/cdroms/cdrom0 /mnt/cdrom auto noauto,user 0 0
#/dev/sda3 /windows/C ntfs rw,users,gid=users,umask=0002,nls=utf8 0 0
#/dev/sda4 /windows/D vfat defaults,iocharset=utf8,umask=0002,codepage=936 0 0
#/dev/sdb1 /mnt/usb auto noatime,noauto,user,rw,iocharset=utf8 0 0
#/dev/fd0 /mnt/floppy auto noauto 0 0
# NOTE: The next line is critical for boot!
proc /proc proc defaults 0 0
# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
# POSIX shared memory (shm_open, shm_unlink).
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
# use almost no memory if not populated with files)
shm /dev/shm tmpfs nodev,nosuid,noexec 0 0
--------------------------
GRUB中:
default 0
timeout 5
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
#title Gentoo Linux (gensplash)
#root (hd0,0)
#kernel /boot/linux-2.6.21-gentoo root=/dev/sda1 nomce doscsi
#kernel /boot/linux-2.6.21-gentoo root=/dev/sda1 video=vesafb:mtrr:3,ywrap, doscsi , splash=verbose,splash=silent,kdgraphics,theme:livecd-2007.0 #vga=792 quiet CONSOLE=/dev/tty1
#initrd (hd0,0)/boot/fbsplash-livecd-2006.1-1024x768
title Gentoo
root (hd0,0)
kernel /boot/linux-2.6.28-gentoo root=/dev/sda1 nomce doscsi
---------------------------------------
我第二次装的时候, 用的就是scsi 了,上面就是配置,问题依然。。。
我已经完全照这里http://linux.chinaunix.net/techd ... 了内核编译时 用默认设置里里面没说外,完全代码copy........ |
|