Results 1 to 4 of 4

Thread: Windows to Ubuntu

  1. #1
    Join Date
    Jun 2008
    Location
    Canada
    Beans
    4
    Distro
    Ubuntu 8.04 Hardy Heron

    Question Windows to Ubuntu

    I have 2 drives that I typically use for storage with windows, I usally disconnect them format the main drive and use them. Recently I installed ubuntu and cannot acces the files. I was useing windows xp with ntfs is there a way to read these files within ubuntu?

  2. #2
    Join Date
    Jan 2007
    Location
    /bunk
    Beans
    194
    Distro
    Kubuntu 8.10 Intrepid Ibex

    Re: Windows to Ubuntu

    Yup. Ubuntu can read NTFS volumes, you just need to mount them first.

    -sudo fdisk -l
    this lists all hard drives that your system can see, usually looking like /dev/sdb. Your drive may have a different path, depending on your setup.

    -sudo mount /dev/sdb /mnt/your_mountpoint
    This mounts the drive /dev/sdb (you should put in whatever comes out of fdisk -l there instead) at /mnt/your_mountpoint (just an example). You'll need to make a mountpoint (directory) wherever you want to mount hte volumes (usually under /mnt).
    Jaunty Jackalope, because we feel bad for that other guy from Full House.

  3. #3
    Join Date
    Mar 2008
    Beans
    69

    Re: Windows to Ubuntu

    This is how i get this to work. I'm watching for devices with:
    Code:
    $ sudo fdisk -l
    And i'm going to create a directory under /media folder with
    Code:
    $ sudo mkdir /media/ntfs_drive
    and then i'm going to mount that partition (i'm assuming that is /dev/sdb1)
    Code:
    $ sudo mount /dev/sdb1 /media/ntfs_drive
    And from this moment you have your drive mounted and you can view it with nautilus under /media/ntfs_drive folder.

    If you need to unmount, then use this command:
    Code:
    $ sudo umount /dev/sdb1
    .
    Last edited by rEbyTer; August 2nd, 2008 at 08:59 PM.

  4. #4
    Join Date
    Jun 2008
    Location
    Canada
    Beans
    4
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Windows to Ubuntu

    I tried both your options and when I try to mount it tells me:


    Code:
    user:~$ sudo mount /dev/sda /media/ntfs_drive
    mount: you must specify the filesystem type
    user:~$

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
  •