I need to map my Windows C:\ drive in Ubuntu. How could I accomplish this?

link|improve this question
Perhaps better asked on ubuntu.stackexchange.com – Oded Oct 8 '10 at 18:34
Not enough info. Is your C: on the same computer as Ubuntu (dual-boot) or is it a different computer on a network? – Mark Henderson Jun 20 '11 at 5:38
feedback

migrated from stackoverflow.com Oct 8 '10 at 18:53

This question came from our site for professional and enthusiast programmers.

2 Answers

Right click your C drive then go to Properties > Sharing > Advanced Sharing and tick "Share this folder"

On your Ubuntu pc:

$ sudo apt-get install smbfs
$ sudo mkdir /mnt/c
$ sudo mount -t smbfs //192.168.0.2/c /mntc -o username=<yourusername>,password=<yourpassword>

(assuming that your windows machine has IP address 192.168.0.2 and you have chosen "c" as your share name)

link|improve this answer
feedback

Try this link.

It tells you how to install ntfs-config. Once you have that software, you can permanently mount your Windows partition.

link|improve this answer
1  
This assumes that your Windows drive is on the same computer. If you want a network share, follow Russell's suggestion. – Chance Oct 8 '10 at 19:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.