Results 1 to 8 of 8

Thread: [SOLVED] Access Partition

  1. #1
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario
    Beans
    23

    [SOLVED] Access Partition

    I intalled vista followed by a fresh install of hardy. The dual boot works, I made three partitions; 1 for vista, 1 for hardy and I kept one for documents and videos so that I can access it from any operating system (NTFS).

    I can access it from vista but am having problems with hardy.

    Suggestions please.

  2. #2
    Join Date
    Oct 2006
    Beans
    172
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Access Partition

    What problems do you have?

  3. #3
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario
    Beans
    23

    Re: Access Partition

    It does not mount.

  4. #4
    Join Date
    Oct 2006
    Beans
    172
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Access Partition

    Run sudo blkid in terminal and post the output here. Also post the fstab here (/etc/fstab).

  5. #5
    Join Date
    Jan 2007
    Location
    ~/SC/USA
    Beans
    1,969
    Distro
    Ubuntu

    Re: Access Partition

    You could add to your /etc/fstab file:

    Code:
    sudo gedit /etc/fstab
    add:

    Code:
    UUID=1D8FD5F25AC0301F /media/Vista     ntfs    defaults,umask=007,gid=46 0       0
    You can find your block id using, simply "blkid"

    P.S.
    Be sure you create the directory under /media to mount the NTFS partition (vista)
    Last edited by cdtech; July 28th, 2008 at 12:00 PM.

  6. #6
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario
    Beans
    23

    Re: Access Partition

    /dev/sda1: UUID="7CFCE2E8FCE29BA0" TYPE="ntfs"
    /dev/sda2: UUID="a674adeb-c452-43a6-a597-380619f244df" TYPE="ext2"
    /dev/sda3: UUID="6AC0EDBFC0ED919D" TYPE="ntfs"

    and /ets/fstab is

    # /etc/fstab: static file system information.
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc defaults 0 0
    # /dev/sda2
    UUID=a674adeb-c452-43a6-a597-380619f244df / ext2 errors=remount-ro 0 1
    /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0

  7. #7
    Join Date
    Jul 2008
    Location
    Serbia, Novi Sad
    Beans
    182

    Re: Access Partition

    The thing you should do is:
    1) find that neutral partition in blkid and copy it's UUID
    2) edit your fstab, add a line like this:
    UUID=<UUID that you copied in first step> /media/Neutral ntfs-3g auto,users,uid=1000

    (this will automatically mout that drive on system startup)

  8. #8
    Join Date
    Mar 2008
    Location
    Ottawa, Ontario
    Beans
    23

    Re: Access Partition

    It is working now. Thank you

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •