The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    how to use ntfs external hdd in linux

    Discussion in 'Linux Compatibility and Software' started by darkstealthmaster, Aug 8, 2008.

  1. darkstealthmaster

    darkstealthmaster Notebook Consultant

    Reputations:
    0
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30
    I just got a acer aspire one 8.9" laptop and it comes with linux linpus installed. I have an external 120gb harddrive i'd like to use on it but it is ntfs and when i plug into linux it says it can't mount. Any way i can mount and use it on the laptop. I want to keep as ntfs though.
     
  2. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    First thing to do is find out if you have ntfs-3g installed. If it's not installed yet, install it.

    On second thought, I doubt Acer would give you a preloaded linux without ntfs support. Could you post exactly what error message you get when you try to mount it?
     
  3. srunni

    srunni Notebook Deity

    Reputations:
    96
    Messages:
    854
    Likes Received:
    0
    Trophy Points:
    30
    First, make sure you are running as root. You can try
    Code:
    su
    and enter your root password. If that is disabled, try
    Code:
    sudo -s
    and enter your user's password.

    Then run
    Code:
    fdisk -l
    to list your partitions. You'll see your external hard drive's NTFS partition listed there. Run
    Code:
    mkdir /win
    to create a directory to mount to. Run
    Code:
    mount [windows device] /win
    to mount the device to that directory. Tell us the error message when you try to do that. If the NTFS partition doesn't show up in fdisk, then there is a USB connection problem.
     
  4. darkstealthmaster

    darkstealthmaster Notebook Consultant

    Reputations:
    0
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30
    the exact error i get is - unable to mount western digital (unknown file system "ntfs"
     
  5. srunni

    srunni Notebook Deity

    Reputations:
    96
    Messages:
    854
    Likes Received:
    0
    Trophy Points:
    30
    Looks like Linpus is Fedora-based. This may work:

    Run as root:
    Code:
    yum install ntfs-3g
    Then retry the steps I posted earlier.
     
  6. darkstealthmaster

    darkstealthmaster Notebook Consultant

    Reputations:
    0
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30
    thank you. I got that ntfs-3g installed and it opened up fine with out needing to do other steps