
Originally Posted by
lalitolindo
nice!!!
ah i'm back cuz i have another doubt, how can I access to my usb from the console?



i was trying but "cd /media/usb" no work
here a image using dmesg.



You have to manually mount and unmount filesystems/devices in Linux -- as you see -- after you plugged in the device (your USB drive) that it's device 'sdb1' -- so type
Code:
mount /dev/sdb1 /mountlocation
where mountlocation = anywhere you want it to be mounted to (just make sure the directory exists first) ie:
Code:
mount /dev/sdb1 /media/usb
or
Code:
mount /dev/sdb1 /mnt
Then before you unplug it, make sure to unmount it:

Originally Posted by
lalitolindo
you mean 32 bits OS. right???
I have 9.04 ubuntu server
If you are running 32 bit OS you DO NOT have to install ia32-libs.
If you are running 64 bit OS you DO have to install ia32-libs.