I have reached a point that I need to set up NFS on my server and
clients. Is there a document any where that give the directions in
step one, step two format? I have installed the server and the client
pkgs through synaptic but now I'm just lost.
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
07-02-2008, 06:28 AM
David Curtis
NFS
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Bill Taylor wrote:
> I have reached a point that I need to set up NFS on my server and
> clients. Is there a document any where that give the directions in
> step one, step two format? I have installed the server and the client
> pkgs through synaptic but now I'm just lost.
>
A Google of 'NFS ubuntu' brings up about 7 howtos on the subject.
I started using NFS a month or so ago and haven't looked back. I never
really got the hand of Samba/smb on linux. In my view NFS just seems
more logical, more unix-ey.
I used the first link from that google search, exporting one directory
on my desktop to one ip address, my laptop. It was up and running in 15
mins.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
07-02-2008, 01:35 PM
Kim Goldenberg
NFS
Bill Taylor wrote:
I have reached a point that I need to set up NFS on my server and
clients. Is there a document any where that give the directions in
step one, step two format? I have installed the server and the client
pkgs through synaptic but now I'm just lost.
I have the server side set up to be an installation server for other
Linux distribution (for a platform other than x86). See this link:
http://ubuntuforums.org/showthread.php?t=249889
HTH
Kim
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
06-14-2010, 01:24 PM
Ray Pittigher
NFS
When running a NFS server on Fedora how can I see what files are in use
by others over the NFS mount?
This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender.
Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail.
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 02:31 PM
Jerry Feldman
NFS
On 06/14/2010 09:24 AM, Ray Pittigher wrote:
> When running a NFS server on Fedora how can I see what files are in use
> by others over the NFS mount?
>
the lsof(8) will give you this information and a lot more. Most likely
you will want to pipe the output through grep(1)
--
Jerry Feldman <gaf@blu.org>
Boston Linux and Unix
PGP key id: 537C5846
PGP Key fingerprint: 3D1B 8377 A3C0 A5F2 ECBB CA3B 4607 4319 537C 5846
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 02:32 PM
"Dale J. Chatham"
NFS
lsof | grep <NFS server> works for me.
On 06/14/2010 08:24 AM, Ray Pittigher wrote:
> When running a NFS server on Fedora how can I see what files are in use
> by others over the NFS mount?
>
> This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender.
> Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail.
>
--
Our peculiar security is in the possession of a written Constitution.
Let us not make it a blank paper by construction."
--Thomas Jefferson, letter to Wilson Nicholas, 1803
There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order.
-- Ed Howdershelt (Author)
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 02:57 PM
"Richard W.M. Jones"
NFS
On Mon, Jun 14, 2010 at 09:24:51AM -0400, Ray Pittigher wrote:
> When running a NFS server on Fedora how can I see what files are in use
> by others over the NFS mount?
In "classic" NFS this isn't really possible. NFS is stateless, so on
the server you can only see momentary reads and writes from files, you
cannot see if a file is, say, opened by a client but the client is not
reading and writing to it at that moment.
Modern NFS is a little bit different. I think NFSv4 maintains more
state on the server, and also you've got things like file locking, so
maybe it is possible to get more information out in those cases.
Someone else who knows about NFSv4 will have to answer that more
definitively though.
http://nfs.sourceforge.net/#faq_a6
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages. http://et.redhat.com/~rjones/libguestfs/
See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 03:50 PM
M A Young
NFS
On Mon, 14 Jun 2010, Richard W.M. Jones wrote:
> On Mon, Jun 14, 2010 at 09:24:51AM -0400, Ray Pittigher wrote:
>> When running a NFS server on Fedora how can I see what files are in use
>> by others over the NFS mount?
>
> In "classic" NFS this isn't really possible. NFS is stateless, so on
> the server you can only see momentary reads and writes from files, you
> cannot see if a file is, say, opened by a client but the client is not
> reading and writing to it at that moment.
>
> Modern NFS is a little bit different. I think NFSv4 maintains more
> state on the server, and also you've got things like file locking, so
> maybe it is possible to get more information out in those cases.
> Someone else who knows about NFSv4 will have to answer that more
> definitively though.
>
> http://nfs.sourceforge.net/#faq_a6
File locking was available in earlier NFS versions as well, and
/proc/locks would tell you what the locks on the server were though many
would be local locks.
Michael Young
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 04:25 PM
Ray Pittigher
NFS
Yes that works on the client side but what about seeing what clients are doing from the server side?
On 06/14/2010 10:32 AM, Dale J. Chatham wrote:
> lsof | grep<NFS server> works for me.
>
> On 06/14/2010 08:24 AM, Ray Pittigher wrote:
>> When running a NFS server on Fedora how can I see what files are in use
>> by others over the NFS mount?
>>
>> This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender.
>> Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail.
>>
>
>
--
Ray Pittigher
Software Development Environment Department
--phone 973-284-2275
--pager 973-880-0224
--email raymond.pittigher@itt.com
--wireless email 9738800224@archwireless.net
http://acdnjpvcs/tmtrack/tmtrack.dll for all your SDE Support needs
I'm sure Vista is wonderful. I'm sure XBox is great, too.
A Microsoft person said so.
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
06-14-2010, 04:35 PM
"Dale J. Chatham"
NFS
Ah, I see...
That is going to be a problem.
One (unsatisfying) way would be to set up shared key ssh, then loop
through all hosts running lsof on each host.
Not sure what problem you're trying to solve, ...
On 06/14/2010 11:25 AM, Ray Pittigher wrote:
> Yes that works on the client side but what about seeing what clients
> are doing from the server side?
>
> On 06/14/2010 10:32 AM, Dale J. Chatham wrote:
>> lsof | grep<NFS server> works for me.
>>
>> On 06/14/2010 08:24 AM, Ray Pittigher wrote:
>>> When running a NFS server on Fedora how can I see what files are in use
>>> by others over the NFS mount?
>>>
>>> This e-mail and any files transmitted with it may be proprietary and
>>> are intended solely for the use of the individual or entity to whom
>>> they are addressed. If you have received this e-mail in error please
>>> notify the sender.
>>> Please note that any views or opinions presented in this e-mail are
>>> solely those of the author and do not necessarily represent those of
>>> ITT Corporation. The recipient should check this e-mail and any
>>> attachments for the presence of viruses. ITT accepts no liability
>>> for any damage caused by any virus transmitted by this e-mail.
>>>
>>
>>
>
--
Our peculiar security is in the possession of a written Constitution.
Let us not make it a blank paper by construction."
--Thomas Jefferson, letter to Wilson Nicholas, 1803
There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order.
-- Ed Howdershelt (Author)
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines