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 ...
- 06-04-2007 #1Just 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?
- 06-04-2007 #2
mount NTFS partition manually through command line.
create mount point and mount partition. i assume that you are trying to mount /dev/hda1.
check /media/hda1 folder.Code:sudo mkdir /media/hda1 sudo mount -t ntfs /dev/hda1 /media/hda1 -o defaults,umask=0
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
- 06-04-2007 #3Just 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
- 06-04-2007 #4
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
- 06-04-2007 #5Just 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)
- 06-04-2007 #6something wrong somewhere. post the output of 'sudo fdisk -l' command.when I wrote
-o defaults,umask=0
it made an error (wrong syntax)
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
- 06-04-2007 #7Just 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?
- 06-04-2007 #8its umask not unmask. in case, its a typo, post the output of 'sudo fdisk -l' command as i suggested earlier.ubuntu@ubuntu:~$ sudo mount -t ntfs /dev/sda8 /mnt/DriveG -o defaults,unmask=0It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-04-2007 #9Just Joined!
- Join Date
- Aug 2005
- Posts
- 54
it worked thank you
- 06-04-2007 #10
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
add this lineCode:gksu gedit /etc/fstab
ntfs supports read access only. you can enable write access with ntfs-3g package.Code:/dev/sda8 /mnt/DriveG ntfs defaults,umask=0 0 0
execute this
replace ntfs with ntfs-3g in /etc/fstab file. you will have write access in NTFS partition.Code:sudo apt-get install ntfs-3g
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


Reply With Quote