Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-13-2012, 07:34 AM
|
#1
|
Member
Registered: Jul 2012
Distribution: Arch, Kubuntu
Posts: 77
Rep: 
|
Mounting a folder in NTFS Partition with ntfs-3g
If
ocs_prerun="sudo su -;rm -r /home/partimag;mkdir -p /home/partimag" ocs_prerun1="ntfs-3g /dev/sdb2 /home/partimag"
mounts sdb2 as /home/partimag
How can I mount sdb2/Clones as /home/partimag?
Thanks.
P.S.: When I try
sudo su -
rm -r /home/partimag
mkdir -p /home/partimag
mkdir -p /tmp/local-dev
ntfs-3g /tmp/local-dev/Clones /home/partimag
I am getting
Is a directory error.
|
|
|
07-13-2012, 09:02 AM
|
#2
|
Member
Registered: Sep 2008
Location: Ioannina, Greece
Distribution: Gentoo
Posts: 332
Rep:
|
If I got this right, you want to mount a directory called "Clones" which is located on your sdb2 partition. First of all, you need to mount the filesystem of the device sdb2 somewhere, eg /media/sdb2. Then you need to mount the directory "/media/sdb2/Clones" to your mountpoint, eg /home/partimag. I think this is done with bind mount option. Check the man page of mount tool.
Code:
mount --bind /media/sdb2/Clones /home/partimag
|
|
2 members found this post helpful.
|
07-13-2012, 04:58 PM
|
#3
|
Member
Registered: Jul 2012
Distribution: Arch, Kubuntu
Posts: 77
Original Poster
Rep: 
|
Thank you for your reply.
So even if the folder 'Clones' is in an NTFS partition, as long as I have mounted the partition with ntfs-3g, I can still use (or have to use) the 'mount' command to mount the folder?
Last edited by imayneed; 07-13-2012 at 05:06 PM.
|
|
|
07-13-2012, 08:57 PM
|
#4
|
Member
Registered: Sep 2008
Location: Ioannina, Greece
Distribution: Gentoo
Posts: 332
Rep:
|
I always use
Code:
mount -t ntfs-3g /path/to/device /mount/point
I have never used the ntfs-3g command, so I don't know if there is any other way.
|
|
1 members found this post helpful.
|
07-13-2012, 09:21 PM
|
#5
|
Member
Registered: Jul 2012
Distribution: Arch, Kubuntu
Posts: 77
Original Poster
Rep: 
|
mount --bind worked.
First, I have to mount the partition with ntfs-3g and then mount the folder with mount.
In two steps instead of one.
ntfs-3g /dev/sdb2 /mnt
mount --bind /mnt/Clones /home/partimag
I was worried that if I didn't use ntfs-3g, it wouldn't be writeable.
The thing I learned is you cannot mount folders with ntfs-3g, just partitions.
But after you mount the NTFS partition with ntfs-3g, you can mount a folder inside that partition with mount.
Thanks.
Last edited by imayneed; 07-13-2012 at 09:46 PM.
|
|
|
07-13-2012, 09:42 PM
|
#6
|
LQ Newbie
Registered: Jul 2012
Distribution: Redhat,Fedora,centos
Posts: 17
Rep: 
|
Quote:
Originally Posted by segmentation_fault
I always use
Code:
mount -t ntfs-3g /path/to/device /mount/point
I have never used the ntfs-3g command, so I don't know if there is any other way.
|
just mount /dev/sda2 /mnt
not specify file system type(ntfs)
|
|
|
All times are GMT -5. The time now is 02:53 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|