Juan Jimenez Galdos wrote: >>>> Hi, maybe this is basic, but i can't find my usb device though i think i >>>> have found it, this is my dmesg (*usb in boldface*): >>>> ... >>>> *umass1 at uhub5 port 2 configuration 1 interface 0 " USB DISK Pro" rev >>>> 2.00/1.00 addr 4* >>>> umass1: using SCSI over Bulk-Only >>>> scsibus2 at umass1: 2 targets, initiator 0 >>>> *sd5 at scsibus2 targ 1 lun 0: <, USB DISK Pro, PMAP> SCSI0 0/direct >>>> removable >>>> sd5: 118MB, 15 cyl, 255 head, 63 sec, 512 bytes/sec, 243200 sec total >>>> sd6 at scsibus2 targ 1 lun 1: <, USB DISK Pro, PMAP> SCSI0 0/direct >>>> removable >>>> sd6: 1MB, 1 cyl, 1 head, 2880 sec, 512 bytes/sec, 2880 sec total* >>> ... >>> Also, i have many packages in a cdrom and i would like to install them with >>> "export PKG_PATH" and "pkg_add". I have found the cdrom as cd0 "disklabel >>> cd0", but when I write "export PKG_PATH=/mnt/cd0" it says "No packages >>> available in the PKG_PATH". Have i to do something more? The packages are >>> simply in the cd (cd data).
>> man mount > I already know that (i haven't said that i don't know how to use mount), but > i don't know where is the USB. Well then you'll have to start using it. You need to mount it yourself. As root if you do not have sudo set up. $ sudo mkdir /mnt/cd0 $ sudo mount /dev/cd0c /mnt/cd0 $ sudo mkdir /mnt/usb $ sudo mount /dev/sd5i /mnt/usb --------------------^^ `disklabel sd5` and `disklabel sd6` will give you a hint which device to mount. My guess would be sd5i since sd6 is 1MB and I guess your "USB" [disk] is formatted with FAT-32. Note that mounting an NTFS disk is tricky, not recommended and not even always possible at all. /Alexander

