Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: How to access your Windows drives from Ubuntu

  1. #1
    Join Date
    Feb 2005
    Beans
    5,138

    How to access your Windows drives from Ubuntu

    If you want to access your NTFS Windows drives follow these instructions:

    1. Make sure you have internet access (see the network icon on the top right)
    2. Open the "Applications" menu and select "Add/Remove..."
    3. In the listbox on the right select: "Show All Available Applications"
    4. Search for "NTFS" and select "NTFS Configuration Tool". Click OK to install it
    5. Run the configuration tool under Applications > System Tools > NTFS Configuration Tool
    6. Select "Enable write support for internal device". Click OK to set it up.
    7. Once you reboot you will find your windows disks under /media (you can access that from Places > Computer > File System > media).

  2. #2
    Join Date
    Mar 2006
    Location
    Palo Alto, CA
    Beans
    1,226
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How to access your Windows drives from Ubuntu

    or, another way (from the terminal) would be to install the ntfs-3g package:
    Code:
    sudo apt-get update
    sudo apt-get install ntfs-3g
    then create a mountpoint:

    Code:
    sudo mkdir /media/windows
    then figure out which drive is your windows drive:

    Code:
    sudo fdisk -l
    which should return something like this:

    Code:
    geza@ubuntu:~$ sudo fdisk -l
    Password:
    
    Disk /dev/sda: 250.0 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *           1       12158    97659103+   7  HPFS/NTFS
    /dev/sda2           12159       15197    24410767+  83  Linux
    /dev/sda3           30274       30401     1028160   82  Linux swap / Solaris
    /dev/sda4           15198       30273   121097970   83  Linux
    
    Partition table entries are not in disk order
    geza@ubuntu:~$
    Then find the line saying HPFS/NTFS (shown in bold), and take the value under "device" (in this case /dev/sda1 which is shown in bold) and substitute it into the bold portion in this command:

    Code:
    sudo ntfs-3g /dev/sda1 /media/windows
    then you should be able to access it at /media/windows, when done, simply unmount using:
    Code:
    sudo umount /media/windows

  3. #3
    Join Date
    Jun 2005
    Beans
    314

    Re: How to access your Windows drives from Ubuntu

    Great-- thank you!

  4. #4
    Join Date
    Feb 2007
    Beans
    35
    Distro
    The Feisty Fawn Testing

    Re: How to access your Windows drives from Ubuntu

    Quote Originally Posted by ago View Post
    [*] Search for "NTFS" and select "NTFS Configuration Tool".
    This was not in my app, but Tuxcantfly's solution worked well. Thanks!

    Which repository is ntfs-3g in?

  5. #5
    Join Date
    Jun 2005
    Beans
    314

    Re: How to access your Windows drives from Ubuntu

    ntfs-3g is in Universe

  6. #6
    Join Date
    Jan 2007
    Beans
    28

    Re: How to access your Windows drives from Ubuntu

    i have a suggestion for these guide

    can you mention how to automatically umount Windows drives at reboot/shutdown? so people won't have to umount them manually everytime to not get errors

  7. #7
    Join Date
    Feb 2005
    Beans
    5,138

    Re: How to access your Windows drives from Ubuntu

    Quote Originally Posted by Aquashark View Post
    i have a suggestion for these guide

    can you mention how to automatically umount Windows drives at reboot/shutdown? so people won't have to umount them manually everytime to not get errors
    If you have errors, write a detailed report and we will handle it properly.

  8. #8
    Join Date
    Feb 2005
    Beans
    5,138

    Re: How to access your Windows drives from Ubuntu

    Quote Originally Posted by dbgeezer View Post
    This was not in my app,
    You have to select: "Show All Available Applications"

  9. #9
    Join Date
    Mar 2007
    Beans
    2

    Re: How to access your Windows drives from Ubuntu

    nick@nick-desktop:~$ sudo umount /media/hda1
    umount: /media/hda1: device is busy
    umount: /media/hda1: device is busy
    thats th error i get when trying to unmount the windows partition. I am assuming its in use somehow

    I also get this in Gparted
    The partition could not be unmounted from the following mountpoints:

    /media/hda1

    Most likely other partitions are also mounted on these mountpoints. You are advised to unmount them manually.


    thanks for all your help with this

  10. #10
    Join Date
    Feb 2005
    Beans
    5,138

    Re: How to access your Windows drives from Ubuntu

    Quote Originally Posted by theslicknick6 View Post
    I also get this in Gparted
    The partition could not be unmounted from the following mountpoints:

    /media/hda1

    Most likely other partitions are also mounted on these mountpoints. You are advised to unmount them manually.
    I have no problems umounting.

Page 1 of 2 12 LastLast

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
  •