Hello, I have been trying to access flash drive and other storage devices on chrome OS Linux.i686-1.8.1017 and I was unable to access it. What can I do in order to access it?

Normally, USB devices such as flash drives should auto-mount, though I don't use the Chrome OS per se (my normal operating systems are Red Hat Linux clones). In cases where they don't auto-mount, you can do this.

  1. Before inserting the device in a USB port, look at the drives in /dev, as in "ls /dev/sd?"
  2. Insert device.
  3. Look at /dev/sd? again (after a few seconds to allow the system to detect it) to see the new device ID. IE, if before you had /dev/sda and /dev/sdb, then after you should see /dev/sdc.
  4. Once the system has detected the device, you can mount it to an empty directory of your chosing, such as /mnt/usbdrive: sudo mount /dev/sdc1 /mnt/usbdrive

This last bit assumes that the device has a partition which would be seen as /dev/sdc1. You can tell with the command "ls /dev/sdc*', assuming that that device is detected as /dev/sdc. In any case, this would be pretty normal. Note the use of the "sudo" command - that allows you to run a command, such as "mount" as the system administrator (root) account.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.