usb移動硬盤安裝全過程
2003.6.23
測試系統:
#uname -a
Linux note 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 i686 i386 GNU/Linux
移動硬盤
紐曼硬盤盒
1.安裝與內核相匹配的 src 包。這裡的說明,以我的2.4.20-8為准。如有不同,請做相應調整。
2.進入源碼的目錄,我的是/usr/src/linux-2.4.20-8/
3.查看Makefie文件,原因是有可能版本不相同。
我用的是rh9的原來的內核,並安裝其原來的srck包,但是最後加載模塊的時候就說版本不匹配。
暈~
查看該文件開頭的“EXTRAVERSION =”的值,我把它改成-8。
4.修改“drivers/usb/storage/unusual_devs.h”
查找:
UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0x0001,
"EagleTec",
"External Hard Disk",
US_SC_SCSI, US_PR_BULK, NULL,
US_FL_FIX_INQUIRY ),
改成下面的形式:
UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0x9999,
"Genesys",
"USB DISK",
US_SC_SCSI, US_PR_BULK, NULL,
US_FL_FIX_INQUIRY US_FL_MODE_XLATE US_FL_START_STOP ),
5.運行一下命令
#cp /boot/config-2.4.20-8 .config
#make mrproper
#make oldconfig
#make dep
#make modules <=我的p41.8,256ddr運行了30多分鐘
6.將編譯好的“drivers/usb/storage/usb-storage.o”復制到
/lib/modules/2.4.20-8/kernel/drivers/usb/storage/下。
7.執行:
#modprobe -r usb-storage
#modprobe usb-storage
8.加載
mount -t vfat -o iocharset=gb2312,code=cp936 /dev/sda1 /mnt/temp/
注意,我看到一些文章說fdisk -l可以看到usb硬盤。可是我沒有看到,但是加載成功。