LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   Discs option missing from system folder (https://www.linuxquestions.org/questions/ubuntu-63/discs-option-missing-from-system-folder-521823/)

Jen Fraggle 01-22-2007 04:13 PM

Discs option missing from system folder
 
I have just installed Ubuntu on my laptop and have dual boot with windows xp. I want to access my xp partitions (fat32 filesystems) from Ubuntu but following the help file, I don't have a Discs option. How can I find my partitions?

Thanks in advance

Jen

logos34 01-22-2007 04:49 PM

They should be mounting in your /media directory.

Open a terminal and type
Quote:

cat /etc/fstab
Are they listed?

Jen Fraggle 01-23-2007 12:07 PM

Thanks, I tried that and all it found was my linux partitions and cd drive. Is there anything else I can try?

All help appreciated

Jen

logos34 01-23-2007 02:50 PM

Assuming grub allows you to boot into windows, then hopefully it's just a matter of adding your xp partitions to fstab and creating mount points for them.

Run this command in a terminal:
Quote:

sudo fdisk -l
Find you windows partitions and add an entry for each one to your fstab file.

First, backup fstab:
Quote:

sudo cp /etc/fstab /etc/fstab.backup
Then,
Quote:

gksudo gedit /etc/fstab
Add a line for each one at the end like this (replace 'hda1' with your partition):
Quote:

/dev/hda1 /media/hda1 vfat iocharset=utf8,umask=000 0 0
Now create mount points for each one like this:
Quote:

sudo mkdir /media/hda1
Then
Quote:

sudo mount -a
They should mount. Now reboot to make sure they automount on startup.

Note: the 'disks' utility has for some reason been dropped in edgy. You can read about it here.

Jen Fraggle 01-23-2007 04:03 PM

That's wonderful, thank you so much. I can now view both my windows partitions.
I only installed Ubuntu yesterday and it is my first experience with Linux so it is great to have such easy to follow help. Now all I need is to work out how to install the driver I've downloaded and I can get my wireless internet working.

Jen


All times are GMT -5. The time now is 03:49 AM.