Results 1 to 4 of 4
I have a dual boot system on my laptop Debian Sid / Windows XP.
I am trying to mount NTFS partition.
I have directory windows in /mnt, ls -l output:
...
- 12-17-2007 #1
mount issue
I have a dual boot system on my laptop Debian Sid / Windows XP.
I am trying to mount NTFS partition.
I have directory windows in /mnt, ls -l output:
this is before I mount the partition.Code:ccooper-lap:/mnt# ls -l total 20 drwxr-xr-x 2 root root 4096 2007-12-12 12:56 usb drwxrwxrwx 2 root root 4096 2007-12-13 09:45 windows
I have it set up in /etc/fstab.
After I type 'mount windows'.Code:/dev/hda1 /mnt/windows ntfs defaults,errors=remount-ro 0 2
The directory goes to permission 700 rather than staying at 777. So i cannot access the files unless I am root or I do 'chmod -R 777 windows'. This makes it work but it takes a long time to do, and i don't want to have to do t his every time, anyone know what might be wrong?Code:ccooper-lap:/mnt# mount windows ccooper-lap:/mnt# ls -l total 28 drwxr-xr-x 2 root root 4096 2007-12-12 12:56 usb drwx------ 1 root root 12288 2007-12-10 14:40 windows
My output for mount is
Code:ccooper-lap:/mnt# mount /dev/hda2 on / type ext3 (rw,errors=remount-ro) tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755) proc on /proc type proc (rw,noexec,nosuid,nodev) sysfs on /sys type sysfs (rw,noexec,nosuid,nodev) procbususb on /proc/bus/usb type usbfs (rw) udev on /dev type tmpfs (rw,mode=0755) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620) /dev/hda4 on /home type ext3 (rw) /dev/hda1 on /mnt/windows type ntfs (rw,errors=remount-ro)
- 12-17-2007 #2It should be/dev/hda1 /mnt/windows ntfs defaults,errors=remount-ro 0 2
Install ntfs-3g to enable NTFS write access and replace ntfs with ntfs-3g in /etc/fstab file.Code:/dev/hda1 /mnt/windows ntfs defaults,umask=0 0 0
/etc/fstabCode:su apt-get install ntfs-3g
All users will have write access in NTFS partition.Code:/dev/hda1 /mnt/windows ntfs-3g defaults,umask=0 0 0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-17-2007 #3
- 12-17-2007 #4
Glad to help you.

Have fun with Linux !!!It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote
