作者:陳緒先生
本文首發於www.chinaunix.net之Linux版,轉載請注明出處。
本機操作系統為FC1(fecora core1),USB硬盤一直不能使用,也就是說
fdisk -l /dev/sda
總是沒有任何輸出,於是決定重編內核,順便升級到2.6.6
到www.kernel.org下載最新內核,我下載的是linux-2.6.6.tar.bz2文件
1. #cp linux-2.6.6.tar.bz2 /usr/src/
2. #cd /usr/src
3. #tar xvfj linux-2.6.6.tar.bz2
4. #cd linux-2.6.6
5. #make menUConfig
注意,請選中
<M> OHCI HCD support
<M> UHCI HCD (most Intel and VIA) support
別的請勿改變,修改完畢後,退出並保存
6. #make
7. #make modules_install
8. #make install
9. 當然是讓系統啟動後自動加載usb模塊,可以采取下列兩種方案之一
a #vi /etc/rc.d/rc.local
加入兩行
modprobe usb-storage
modprobe uhci-hcd
b #rpm -Uvh modutils-2.4.26-16.i386.rpm
這裡的modutils-2.4.26-16.i386.rpm文件從Fedora Core2光盤中獲取
10. 重啟機器,在grub中選擇進入2.6.6內核
11. #fdisk -l /dev/sda
Disk /dev/sda: 30.0 GB, 30005821952 bytes
255 heads, 63 sectors/track, 3648 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 2 3647 29286495 f Win95 Ext'd (LBA)
/dev/sda5 2 3647 29286463+ c Win95 FAT32 (LBA)
12. #mount -o codepage=936,iocharset=cp936 /dev/sda5 /mnt/cdrom
13. #ls /mnt/cdrom
至此,USB硬盤激活成功