On MacOS X I can access other drives under "/Volumes". Where do I have to go for the same under Ubuntu 9.04?
feedback
|
|
I believe that Ubuntu places volumes for extra drives under You can type | |||||||||
feedback
|
|
Mostly under As an aside (for those mostly familiar with MS operating systems) Unix doesn't have the concept of a drive in the way that you would see Traditionally removable devices such as CD-ROMs or USB drives are mounted on points that live under Look up the man pages for | ||||
|
feedback
|
|
Assuming they are mounted, they can be found under /mnt, if not, you would have to first mount the device. If it is a hard disk or a cd-rom drive, you have to figure out which device it is, and then mount it. You could mount it anywhere you want. For example:
| |||
|
feedback
|
|
It's worth noting that in addition to | |||
|
feedback
|
|
If the volume isn't mounted typing "sudo fdisk -l" in a terminal will list all the drives and partitions that are connected to the system. Typing "mount" with no options will show you what partitions are mounted where along with some other information. To mount an drive that's not automatically mounted you can go to "Places-->Removable Media" or "Places-->Computer" at the top and when you select an unmounted partition it should mount it for you. If that doesn't work you can type "sudo mount /dev/ /" As long as the partition is labeled properly that should work. Otherwise you may need to supply the -t option with the file system that's on the partition. Check the mount man page for more options and examples. | |||
|
feedback
|
|
A missing point here is what to do if it doesnt automount. If you are just plugging in a drive (ie usb or firewire), then check dmesg and see which device it showed up as, and which partitions are available. You may have to manually mount it (ie mount /dev/sd[a-z][1-?] /path/to/mount/ ). | |||
|
feedback
|