how to check if nfs mount from nfs server

2003-04-05 Thread Julie Xu
I am trying to remote installation, any my installation server is a RedHat. I have installation problem and I would like to check from the RedHat if the client successful nfs mounted the directory or not? Is anyway I can check this? Any comments will be appreciated Thanks in advance Julie Xu

NFS mount probs

2003-04-03 Thread bkrusic
Hi, When mounting via NFS, sometimes I get; mount: RPC: Timed out Other times it works. NFS servers are a combo of 7.3/8.0 patched as of yesturday. Using DDNS for host resolution. I wish I had more info so that I can fix it so I'm hoping someone here can based on this small amont of info. Br

nfs mount permissions

2003-02-21 Thread Caleb Chaplin
When trying to mount an NFS export from my redhat 8 workstation I receive errors saying that "only root can do that." I'm not sure if it's a permission set on my NFS server or if it's more of a general user-level permission on my workstation. There are 2 exports on the server (which happens to be

Re: nfs mount takes too much time

2002-12-05 Thread Joshua Schmidlkofer
Make sure that portmap is running: service portmap start js On Mon, 2002-12-02 at 12:57, Freddy Chavez wrote: > I want to use NFS so I have this on /etc/exports > on a computer with IP=192.168.2.1: > /home/nfs 192.168.0.0/255.255.0.0(rw) > > Then from other computer I execute: > mount -

Re: nfs mount takes too much time

2002-12-02 Thread nate
Freddy Chavez said: > I want to use NFS so I have this on /etc/exports > on a computer with IP=192.168.2.1: > /home/nfs 192.168.0.0/255.255.0.0(rw) > > Then from other computer I execute: > mount -t nfs 192.168.2.1:/home/nfs /mnt/nfs > > And it works, but it takes about 4 minutes !!! > I think

nfs mount takes too much time

2002-12-02 Thread Freddy Chavez
I want to use NFS so I have this on /etc/exports on a computer with IP=192.168.2.1: /home/nfs 192.168.0.0/255.255.0.0(rw) Then from other computer I execute: mount -t nfs 192.168.2.1:/home/nfs /mnt/nfs And it works, but it takes about 4 minutes !!! I think it's not a DNS problem because ther

nfs mount to a netapp hangs

2002-10-23 Thread redhat
I have to end up rebooting the box or do a 'umount -f' to get commands such as 'df -k' working again. I'm running the latest kernel and packages. Anyone have an ideas why? Kenneth -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://lis

ipchains rules needed to allow NFS mount and autofs

2002-08-13 Thread blaise
I have a small LAN (let's say 192.168.48.0/24) with RedHat 7.3 boxes. I would like to get mount and autofs mounts working through the firewall. autofs is configured through /etc/auto.master, which specifies a file /etc/auto.my_domain that has the list of disks exported from other machines to

Re: NFS mount

2002-08-01 Thread Aly Dharshi
Quite true sorry about the typo its /etc/exports on nfs server Robert P. J. Day wrote: > On Thu, 1 Aug 2002, Aly Dharshi wrote: > > >>Christian, >> >> You want to set the /etc/export file on the NFS server. That is > > > /etc/exports > > rday > > > -- Aly Dharshi [EMAIL PROTECTED

Re: NFS mount

2002-08-01 Thread Robert P. J. Day
On Thu, 1 Aug 2002, Aly Dharshi wrote: > Christian, > > You want to set the /etc/export file on the NFS server. That is /etc/exports rday -- redhat-list mailing list Unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: NFS mount

2002-08-01 Thread Aly Dharshi
nfs mounts mounted all the time. shodan:/home /home nfs rsize=8192,wsize=8192,timeo=14,intr Such a line will allow your client or server, the server can also be the client whereby you can nfs mount the same thing. Example you are creating home directories in the directory /export

RE: NFS mount

2002-08-01 Thread Christian Fredrickson
clarify what the line would look like on the client and what the line would look like on the server? Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Aly Dharshi Sent: Thursday, August 01, 2002 10:21 AM To: [EMAIL PROTECTED] Subject: Re: NFS mount Yes

Re: NFS mount

2002-08-01 Thread Aly Dharshi
ile, no user can mount that directory? > > Chris > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Aly Dharshi > Sent: Thursday, August 01, 2002 12:16 AM > To: [EMAIL PROTECTED] > Subject: Re: NFS mount > > >

RE: NFS mount

2002-08-01 Thread Christian Fredrickson
16 AM To: [EMAIL PROTECTED] Subject: Re: NFS mount That file needs to be populated with something like: /home my.nfs.client.example.com(rw,sync,no_wdelay,no_root_squash) I would also suggest a man on exports which will give you a more indepth idea of what maybe suitable for you site. C

Re: NFS mount

2002-08-01 Thread loophole
The file '/etc/exports' should have something like this: /home/ch 10.10.10.*(rw,no_root_squash) Check 'man exports' for more options and the impact of rw and no_root_squash. You need to have the nfs and portmap service running in the server and portmapper in the client machine. If the ser

Re: NFS mount

2002-07-31 Thread Aly Dharshi
That file needs to be populated with something like: /home my.nfs.client.example.com(rw,sync,no_wdelay,no_root_squash) I would also suggest a man on exports which will give you a more indepth idea of what maybe suitable for you site. Cheers, Aly. -- Aly Dharshi [EMAIL PROTE

RE: NFS mount

2002-07-31 Thread Christian Fredrickson
: NFS mount 1)What happens when you do "showmount -e 10.10.10.6" 2)Are you running ipchains? 3)What is in /etc/exports? On Wed, 2002-07-31 at 16:23, Christian Fredrickson wrote: > I am trying to mount an NFS directory. I am having an issue. I try the > following command: &g

Re: NFS mount

2002-07-31 Thread Samuel Flory
1)What happens when you do "showmount -e 10.10.10.6" 2)Are you running ipchains? 3)What is in /etc/exports? On Wed, 2002-07-31 at 16:23, Christian Fredrickson wrote: > I am trying to mount an NFS directory. I am having an issue. I try the > following command: > mount 10.10.10.6:/home/ch /hom

RE: NFS mount

2002-07-31 Thread Christian Fredrickson
Nothing. That file is empty. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Aly Dharshi Sent: Wednesday, July 31, 2002 5:48 PM To: [EMAIL PROTECTED] Subject: Re: NFS mount What are the contents of /etc/exports ? -- Aly Dharshi [EMAIL

Re: NFS mount

2002-07-31 Thread Aly Dharshi
What are the contents of /etc/exports ? -- Aly Dharshi [EMAIL PROTECTED] System Administrator ORS Servers "A good speech is like a good dress that's short enough to be interesting and long enough to cover the subject" -- redhat-list mailing list Unsubscribe mailto

NFS mount

2002-07-31 Thread Christian Fredrickson
I am trying to mount an NFS directory. I am having an issue. I try the following command: mount 10.10.10.6:/home/ch /home/ch and recieve the following error: mount: RPC: Program not registered I have read that this can be a port mapper issue, so I added the following to my /etc/hosts.allow file t

Subject: Re: backup via: cp -a /etc to nfs mount as root, permissionschange,..

2000-09-20 Thread Jack Byers
Ken responded: >This looks like a permissions/id problem. >Did you "su -" (i.e., to root) from an ordinary user account before >running this? uhh, not quite, I did just 'su' (not 'su -') from an ordinary user account, before running I am not sure what you are implying, but Iwill try again do

Re: backup via: cp -a /etc to nfs mount as root, permissions change,....

2000-09-20 Thread kf
This looks like a permissions/id problem. Did you "su -" (i.e., to root) from an ordinary user account before running this? hth, kf -- My recommendation: Don't shop at Explorer Micro, Columbus, Ohio. On Wed, 20 Sep 2000, Jack Byers wrote: = trying to backup /etc from byers my rhat 5.2 sy

backup via: cp -a /etc to nfs mount as root, permissions change,....

2000-09-19 Thread Jack Byers
trying to backup /etc from byers my rhat 5.2 system to a backupdir on corni rhat6.2 on my lan the target backupdir: [root@corni /]# ls -ld dcproot drwxrwxrwx7 root root 4096 Sep 20 04:38 dcproot [root@corni /]# [root@byers byers]# mount corni:/dcproot /mnt/jack [root@byers byers]

nfs mount ?

1999-12-16 Thread Claudiu Balciza
How do I have to mount a NFS export in order to follow the directory symlinks ? C -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.

NFS mount errors

1998-06-04 Thread Doug Elznic
I try the following: [root@ian /root]# mount -t nfs calvert:/ /mnt/floppy mount clntudp_create: RPC: Port mapper failure - RPC: Unable to receive Does anyone know what that error message means? -- PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! http://www.redhat.com