Flash memory and External HD doesnt show up in knoppix !
Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
i tried mount -t ntfs /dev/hdb1 /mnt
and
mount -t msdos /dev/sda1 /mnt
1st you are trying to mount two devices on the same mount point (/mnt). you can't do this. secondly the command for msdos should be:
mount -t vfat /dev/sda1 /mnt/usb
presuming you have created /mnt/usb 1st.
i also doubt that the usb device is being created as '/dev/hdb1'. i would get it would be something like /dev/sda1/2 or /dev/uba1/2
1/2 being 1 or 2.
when you plug them in try doing 'dmesg |tail'. one of the easiest ways to find out, if you are running udev, is to plug the device in and type 'ls -lsrt /dev/'. and you will get the name of the last created device...
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.