Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 16
its not working, I dont know what Im doing wrong but I cant see my NTFS hard drives, here's what Im doing... what should I do? how can I see ...
  1. #1
    Just Joined!
    Join Date
    Aug 2005
    Posts
    54

    NTFS hard drives

    its not working, I dont know what Im doing wrong but I cant see my NTFS hard drives, here's what Im doing...
    what should I do?
    how can I see my windows and other NTFS hard drives?
    Attached Images Attached Images

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    mount NTFS partition manually through command line.
    create mount point and mount partition. i assume that you are trying to mount /dev/hda1.
    Code:
    sudo mkdir /media/hda1
    sudo mount -t ntfs  /dev/hda1  /media/hda1 -o defaults,umask=0
    check /media/hda1 folder.
    install ntfs-3g package to enable NTFS write access.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Aug 2005
    Posts
    54
    thanks guys, but I still have a problem,
    so it mounted and everything but I still cant enter it
    I get "You dont have permissinos to read file:///mnt/DriveG

    how could I get permisson... and should I enter as root to get permission (because I thought we should never log in as root...for some reason)

    thank yo

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    did you set umask value to zero? umask controls user permissions.
    post the mount command that you are executing.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Aug 2005
    Posts
    54
    sudo mkdir /media/hda1
    sudo mount -t ntfs /dev/hda1 /media/hda1

    when I wrote
    -o defaults,umask=0

    it made an error (wrong syntax)

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    when I wrote
    -o defaults,umask=0

    it made an error (wrong syntax)
    something wrong somewhere. post the output of 'sudo fdisk -l' command.
    did you create /media/hda1 folder?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Aug 2005
    Posts
    54
    ubuntu@ubuntu:~$ sudo mkdir /mnt/DriveG
    ubuntu@ubuntu:~$ sudo mount -t ntfs /dev/sda8 /mnt/DriveG -o defaults,unmask=0
    mount: wrong fs type, bad option, bad superblock on /dev/sda8,
    missing codepage or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so

    what should I do?

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    ubuntu@ubuntu:~$ sudo mount -t ntfs /dev/sda8 /mnt/DriveG -o defaults,unmask=0
    its umask not unmask. in case, its a typo, post the output of 'sudo fdisk -l' command as i suggested earlier.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Just Joined!
    Join Date
    Aug 2005
    Posts
    54
    it worked thank you

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    you are Welcome Instant !
    you have to mount this partition on every boot up. add this code in /etc/fstab file to automount partition at boot up.
    execute this
    Code:
    gksu gedit /etc/fstab
    add this line
    Code:
    /dev/sda8  /mnt/DriveG  ntfs   defaults,umask=0  0  0
    ntfs supports read access only. you can enable write access with ntfs-3g package.
    execute this
    Code:
    sudo apt-get install ntfs-3g
    replace ntfs with ntfs-3g in /etc/fstab file. you will have write access in NTFS partition.
    Last edited by devils casper; 06-04-2007 at 06:24 PM.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 2 1 2 LastLast

Posting Permissions

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