[Vserver] listing of --bind mounts

2006-08-24 Thread Roderick A. Anderson
It appears I'm clueless on this but I have RFTM or at least the man page 
for the mount command but still don't see a method.


How do I get a listing of all the --bind (from 
/etc/vservers/$GUEST/fstab ) mounts from the host?


All I'm seeing is the regular mounts; partitions, nfs, etc.


TIA,
Rod
--
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] listing of --bind mounts

2006-08-24 Thread Daniel Hokka Zakrisson

Roderick A. Anderson wrote:
It appears I'm clueless on this but I have RFTM or at least the man page 
for the mount command but still don't see a method.


How do I get a listing of all the --bind (from 
/etc/vservers/$GUEST/fstab ) mounts from the host?


All I'm seeing is the regular mounts; partitions, nfs, etc.


When you do what? I see the bind mounts just fine in /etc/mtab, as well 
as /proc/mounts.


--
Daniel Hokka Zakrisson
GPG id: 06723412
GPG fingerprint: A455 4DF3 990A 431F FECA  7947 6136 DDA2 0672 3412
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] listing of --bind mounts

2006-08-24 Thread Roderick A. Anderson

Daniel Hokka Zakrisson wrote:

Roderick A. Anderson wrote:

It appears I'm clueless on this but I have RFTM or at least the man 
page for the mount command but still don't see a method.


How do I get a listing of all the --bind (from 
/etc/vservers/$GUEST/fstab ) mounts from the host?


All I'm seeing is the regular mounts; partitions, nfs, etc.



When you do what? I see the bind mounts just fine in /etc/mtab, as well 
as /proc/mounts.


From the host
mount
doesn't show them but a
vserver $GUEST exec mount
does.

It appears to be a context thingy.

Anyway to run a command for all the 'active' contexts?


Rod
--
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] listing of --bind mounts

2006-08-24 Thread Stephan Mueller
* Roderick A. Anderson <[EMAIL PROTECTED]> [24.08.2006]:

> It appears I'm clueless on this but I have RFTM or at least the man
> page for the mount command but still don't see a method.
> 
> How do I get a listing of all the --bind (from
> /etc/vservers/$GUEST/fstab ) mounts from the host?
> 
> All I'm seeing is the regular mounts; partitions, nfs, etc.

if I got your point you should try "df -a" on the host. This gives you a
list of all mount points, including soft mounts.


Cheers,

Steph.
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] listing of --bind mounts

2006-08-24 Thread Roderick A. Anderson

Stephan Mueller wrote:

* Roderick A. Anderson <[EMAIL PROTECTED]> [24.08.2006]:



It appears I'm clueless on this but I have RFTM or at least the man
page for the mount command but still don't see a method.

How do I get a listing of all the --bind (from
/etc/vservers/$GUEST/fstab ) mounts from the host?

All I'm seeing is the regular mounts; partitions, nfs, etc.



if I got your point you should try "df -a" on the host. This gives you a
list of all mount points, including soft mounts.


Darn I was hoping it was this easy but no luck.  I think it has to do 
with the 'soft mounts(?)' are  in the context of the $GUEST.


Thanks,
Rod
--



Cheers,

Steph.
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver


Re: [Vserver] listing of --bind mounts

2006-08-24 Thread Herbert Poetzl
On Thu, Aug 24, 2006 at 10:55:28AM -0700, Roderick A. Anderson wrote:
> Daniel Hokka Zakrisson wrote:
> >Roderick A. Anderson wrote:
> >
> >>It appears I'm clueless on this but I have RFTM or at least the man 
> >>page for the mount command but still don't see a method.
> >>
> >>How do I get a listing of all the --bind (from 
> >>/etc/vservers/$GUEST/fstab ) mounts from the host?
> >>
> >>All I'm seeing is the regular mounts; partitions, nfs, etc.
> >
> >
> >When you do what? I see the bind mounts just fine in /etc/mtab, as well 
> >as /proc/mounts.
> 
> From the host
>   mount
> doesn't show them but a
>   vserver $GUEST exec mount
> does.
> 
> It appears to be a context thingy.

it actually is a 'namespace' thingy, so what you
want to do is enter _all_ namespaces and list their
view of the virtual filesystem layer ...

unfortunately mainline does not provide a simple way
to do so, but fortunately you can get away most of 
the time by using vnamespace ...

> Anyway to run a command for all the 'active' contexts?

a generic context loop in bash looks like this:

 for n in `cd /proc/virtual && ls -d [1-9]*`; do echo $n; done

to enter a namespace use something like this:

 vnamespace -e  --  [ ...]

HTH,
Herbert

> Rod
> -- 
> ___
> Vserver mailing list
> Vserver@list.linux-vserver.org
> http://list.linux-vserver.org/mailman/listinfo/vserver
___
Vserver mailing list
Vserver@list.linux-vserver.org
http://list.linux-vserver.org/mailman/listinfo/vserver