Saturday, April 27, 2013

Mounting Windows (NTFS) partition at boot : How to


How to mount a Windows (NTFS) partition at boot : 
Comment greffer une partition Windows (NTFS) au démarrage:


First Find your partition UUID / trouver un UUID :
sudo blkid

example of output :


then follow that guide / puis suivre ce tuto : ici (en français) (à partir de "2.2 Gérer le montage de partitions, Manuellement, en modifiant les règles de montage dans le fichier de configuration /etc/fstab")

create mount point / créer un point de montage : 
sudo mkdir <point de montage>

i called it /media/sda6 (which was not a good idea, better call it /media/data or anything else...)
sudo mkdir /media/sda6

Backup fstab before editing / sauvegarder le fichier fstab avant l'édition: 
sudo cp /etc/fstab /etc/fstab_sauvegarde

to revert / pour rétablir
sudo cp /etc/fstab_sauvegarde /etc/fstab

then add a line to the fstab / ensuite ajouter une ligne à fstab : 
for me it was  : 
# automount NTFS partition
UUID=76D05D1CD05CE3C1 /media/sda6 ntfs-3g rw,user,auto,gid=100,uid=1000 ,nls=utf8,umask=002 0 0


Enjoy!


No comments:

Post a Comment