Announcement

Collapse
No announcement yet.

how to mount ntfs partitions

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    how to mount ntfs partitions

    how can i set mount points on my ntfs drives? because i have already moved in to kubuntu from windows so every time i reboot i have to remount my partitions!

    #2
    Re: how to mount ntfs partitions

    you will have to and an entry to your /etc/fstab file. if you search around here you can find others that have this "SOLVED" (since i dont' know the exact line of the top of my head).
    Mark Your Solved Issues [SOLVED]
    (top of thread: thread tools)

    Comment


      #3
      Re: how to mount ntfs partitions

      You have to add lines (i.e. mounts) to your /etc/fstab. Below are two NFS lines from my /etc/fstab for my backup mount and my music library that should point you in the right direction. You can do "man nfs" and "man fstab" for information on the actual options I'm using:

      Code:
      192.168.1.6:/tnorrisbackup /media/backup nfs rw,rsize=8192,wsize=8192,timeo=14,intr
      192.168.1.5:/music /media/music nfs rw,rsize=8192,wsize=8192,timeo=14,intr
      EDIT: Whoops, I just noticed you said NTFS, not NFS...Same basic concept though just different mount options.

      Comment

      Working...
      X