- 论坛徽章:
- 1
|
把老外的U盘挂载之前的操作补充一下,做了这个U盘的正确使用方法
Plug the thumb drive into your USB port, then type the command
"cat /proc/bus/usb/devices | grep 1111". If it returns
" : Vendor=0a16 ProdID=1111 Rev= 1.00", give up now. I spent a month
last summer trying to hack this into the kernel, finally buying a
different brand that worked the first time when I plugged it in.
If grep doesn't give you a hit on "1111", run the command
"`which lsmod` | grep usb" (those things inside the double quotes are
backticks, not single quotes) and see if one of the responses you get is
"usb-storage". If not, try loading it with "modprobe usb-storage" and
mounting the thumb drive.
然后fdisk -l /dev/sda?或者fdisk -l /dev/sd?
看sd??有回应,假设是sda1的话就用mount /dev/sda1 /mnt/usbhdd -o codepage=936,iocharset=cp936来挂载,其中usbhdd必须是mnt里存在的目录。 |
|