binary Posted August 29, 2005 Share Posted August 29, 2005 Hi, I have a probelm mounting one of my NTFS partitions. It only mounts if I manually mount it in the terminal by first creating a mount point folder then - sudo mount_ntfs /dev/disk1s5 /Volumes/Documents. Is there any way I can get this command to execute during bootup/startup so that I have access to it when I log on? via shellscript or whatever? I'll need a bit of a walk through if possible because I'm not overly familiar with unix files/commands. Thanks in advance Link to comment https://www.insanelymac.com/forum/topic/1490-mounting-stubborn-ntfs-partition/ Share on other sites More sharing options...
HyruleKnight Posted August 30, 2005 Share Posted August 30, 2005 Create a directory in /Volumes where you want to mount the partition (ex "Documents"). Then add the mount command in /etc/rc after: echo "Mounting local filesystems" mount -uw / [ -f /etc/fstab ] && mount -vat nonfs mount_ntfs /dev/disk1s5 /Volumes/Documents Link to comment https://www.insanelymac.com/forum/topic/1490-mounting-stubborn-ntfs-partition/#findComment-9820 Share on other sites More sharing options...
binary Posted August 30, 2005 Author Share Posted August 30, 2005 Create a directory in /Volumes where you want to mount the partition (ex "Documents"). Then add the mount command in /etc/rc after: echo "Mounting local filesystems" mount -uw / [ -f /etc/fstab ] && mount -vat nonfs mount_ntfs /dev/disk1s5 /Volumes/Documents <{POST_SNAPBACK}> Thanks, How do I edit the rc file when the only one who can read and write to that file is the system? I tried editing it from windows, but I guess that screwed up permissions because it stopped booting and dropped me into root within the console. Any further help is appreciated Link to comment https://www.insanelymac.com/forum/topic/1490-mounting-stubborn-ntfs-partition/#findComment-9871 Share on other sites More sharing options...
HyruleKnight Posted September 7, 2005 Share Posted September 7, 2005 You can edit the file as root. Or type "sudo nano /etc/rc" and enter your password. Link to comment https://www.insanelymac.com/forum/topic/1490-mounting-stubborn-ntfs-partition/#findComment-13516 Share on other sites More sharing options...
binary Posted September 7, 2005 Author Share Posted September 7, 2005 You can edit the file as root.Or type "sudo nano /etc/rc" and enter your password. <{POST_SNAPBACK}> Thanks, worked like a charm Link to comment https://www.insanelymac.com/forum/topic/1490-mounting-stubborn-ntfs-partition/#findComment-13793 Share on other sites More sharing options...
Recommended Posts