|
|
大家看看这样正常吗,我总感觉有点慢
- kim@Gentoo ~ $ sudo hdparm -tT /dev/hda
- /dev/hda:
- Timing cached reads: 8376 MB in 1.99 seconds = 4200.40 MB/sec
- Timing buffered disk reads: 16 MB in 3.26 seconds = 4.91 MB/sec
复制代码
- kim@Gentoo ~ $ sudo hdparm /dev/hda
- /dev/hda:
- multcount = 16 (on)
- IO_support = 3 (32-bit w/sync)
- unmaskirq = 1 (on)
- using_dma = 0 (off)
- keepsettings = 1 (on)
- readonly = 0 (off)
- readahead = 256 (on)
- geometry = 24321/255/63, sectors = 390721968, start = 0
复制代码
- kim@Gentoo ~ $ sudo lspci | grep IDE
- 00:1f.2 IDE interface: Intel Corporation Mobile SATA IDE Controller (rev 03)
复制代码
- kim@Gentoo ~ $ dmesg | grep hda
- Command line: root=/dev/hda8 vga=791
- Kernel command line: root=/dev/hda8 vga=791
- hda: FUJITSU MHY2200BH, ATA DISK drive
- hda: max request size: 512KiB
- hda: 390721968 sectors (200049 MB) w/8192KiB Cache, CHS=24321/255/63
- hda: cache flushes supported
- hda: hda1 hda2 < hda5 hda6 hda7 hda8 hda9 >
- hda_codec: Unknown model for ALC262, trying auto-probe from BIOS...
- ReiserFS: hda8: found reiserfs format "3.6" with standard journal
- ReiserFS: hda8: using ordered data mode
- ReiserFS: hda8: journal params: device hda8, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
- ReiserFS: hda8: checking transaction log (hda8)
- ReiserFS: hda8: Using r5 hash to sort names
- ReiserFS: hda7: found reiserfs format "3.6" with standard journal
- ReiserFS: hda7: using ordered data mode
- ReiserFS: hda7: journal params: device hda7, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
- ReiserFS: hda7: checking transaction log (hda7)
- ReiserFS: hda7: Using r5 hash to sort names
- Adding 2152668k swap on /dev/hda9. Priority:-1 extents:1 across:2152668k
- hda: status timeout: status=0xd0 { Busy }
- hda: no DRQ after issuing MULTWRITE_EXT
复制代码
在grub.conf中加入 ide0=noprobe ,修改/etc/fstab ,系统能够认出SATA硬盘
关于Intel Corporation Mobile SATA IDE Controller
内核中要选择
<*> Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support |
|