LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   USB support (https://www.linuxquestions.org/questions/linux-newbie-8/usb-support-914047/)

airpower31 11-17-2011 09:07 AM

USB support
 
which versions of linux offer USB support?
Also, i have a PCI card that has USB ports on it
that is not supported
how do i mount it?

MS3FGX 11-17-2011 10:06 AM

There is no version of modern Linux that doesn't support USB; Linux has had support for USB for over a decade now.

Also, I don't understand your second question. If the card is not supported, how could you mount it? How do you know it isn't supported? What is the chipset on the card? What does "lspci" show about it?

lleb 11-17-2011 10:27 AM

to mount follow these basic steps

as root:
Code:

# tail -f /var/log/messages
you are looking for the USB to connect (so do this BEFORE you plug the usb device in)
it will be /dev/sdx#

ex: /dev/sdb1

still as root:
Code:

mkdir /mnt/flashdrive
chmod -R 4777 /mnt/flashdrive

now edit the fstab:

Code:

vi /etc/fstab
/dev/<device from above>    /mnt/flashdrive        auto        noauto,users,rw    0 0

now mount and test the fstab changes:

Code:

mount /mnt/flashdrive
ls -laF /mnt/flashdrive
chmod -R 4777 /mnt/fashdrive
umount /mnt/flashdrive
exit
mount /mnt/flashdrive

that last mount is done as user. thus the 4777 sticky bit completely UNSECURE permissions on the flash drive. 4777 says it will always be usable and accessible to ANYONE/USER on that computer.

you are done. umount and pull it out of the system.

jefro 11-17-2011 03:58 PM

I think what he is saying is he has an add on card like a pci to usb. Most of the common linux distro's automount usb's. Dunno what disto he has.

Bios and the OS affect how these work. Maybe lsusb command for more info. Might start even with lspci command.


All times are GMT -5. The time now is 09:25 AM.