NFS mount assistance needed...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers NFS mount assistance needed...
# 1  
Old 03-21-2005
NFS mount assistance needed...

Hello all -

I've searched this forum, but was unable to find out the info I need.

I'm trying to mount (nfs mount) a directory on another box from my Linux machine.

The mount point resides on a Tru64 digital unix machine. The machine trying to do the mount is a Linux machine (redhat 8.0).

I'm having a hard time getting the point mounted.

More specifically - I get the error:

mount RPC timed out

This is how I think it's supposed to be done:

Tru64 machine:
In /etc/exports you must make an entry to allow exporting of file:

/usr/some_file IP ADDRESS

Linux machine:
In /etc/fstab you must make an entry:

IP ADDRESS:/usr/some_file /my_dir nfs

Could someone shed some light on the problem?

I believe that all the necessary daemons are started.

Thanks!
# 2  
Old 03-21-2005
You should have something like:

server_name:/export/test /test ext3 defaults 1 1

If this does not work then try to mount it manually.
i.e

mount server_name:/export/test /mnt/test

But your error say RPC mount timeout. I think that has to do with not seeing the server or that the server is not exporting or sharing that mount.

Smilie
# 3  
Old 03-21-2005
Quote:
Originally Posted by larryase
You should have something like:

server_name:/export/test /test ext3 defaults 1 1

If this does not work then try to mount it manually.
i.e

mount server_name:/export/test /mnt/test

But your error say RPC mount timeout. I think that has to do with not seeing the server or that the server is not exporting or sharing that mount.

Smilie
Actually I was right all along.

The entries are correct.

What I failed to realize/check is the firewall settings on the Linux box.

More specifically - I forgot to turn off (didn't know about it) iptables (make sure that it's not enabled under services)...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies

2. Shell Programming and Scripting

Assistance needed for pattern matching

Hi, Below are input files:- File1:- 1: ### CREATE TABLE ## 2: SOMETHING ELSE 1 3: ### CREATE TABLE ## 4: ### CREATE <spaces> 5: TABLE ### 6:SOMETHING ELSE 2 7: ## CREATE 8: <spaces> TABLE ### 9: SOMETHING ELSE 3 File2:- Similar Format... Desired 1 Output File:- (3 Replies)
Discussion started by: kishal
3 Replies

3. Shell Programming and Scripting

assistance needed to add 2 other routines to my script

Hello guys, In my script, I need to add two other routines where I Manipulate the files with a 'x' The routine looks at CLI named qip-getobjectprof that references a input file named hosts_list.txt Then I use the CLI named qip-setobject to set the orignal name with an 'x'and move the... (3 Replies)
Discussion started by: richsark
3 Replies

4. UNIX for Advanced & Expert Users

Assistance Needed With Find/Replace in Vi

Hello All I have always had a question about find and replace in Vi. As this uses Vi, sed, and RegEx I never knew how or where to post the question but I thought I would give it a shot here. Say I have a text file filled with the following: Sue, your IP address is 192.168.1.10 which is... (4 Replies)
Discussion started by: NoSalt
4 Replies

5. IP Networking

Can't see home folder on one NFS mount but can in another mount on another share

Hello, I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;) Below are the configs /etc/exports on host /home/woodnt/Homeschool... (2 Replies)
Discussion started by: Narnie
2 Replies

6. Shell Programming and Scripting

Assistance needed with perl script

Ok, theres a log file containing the below. Lets call the logfile log_fantastic: 2009/03/16 21:42:45 USER: tonnabo - MAC: 0014BF2D385A - STATUS_ID: 30 - STATE: ERROR 2009/03/16 21:42:45 USER: tonnabo - MAC: 001310AC120D - STATUS_ID: 15 - STATE: OK 2009/03/16 21:42:45 USER: tonnabo - MAC:... (5 Replies)
Discussion started by: SkySmart
5 Replies

7. UNIX for Dummies Questions & Answers

mount -o llock -F nfs vs mount -F nfs

Hi, We encountered NFS issue (solaris) especially running on Oracle application. Problem such as forms hang when close button is click, concurrent job shows running status all time. Understand we need to use mount -o llock -F nfs instead of mount -F nfs to eliminate? this problem.. Can... (1 Reply)
Discussion started by: KhawHL
1 Replies

8. UNIX for Dummies Questions & Answers

Yellow Book assistance needed

Has anyone worked with yellow book in a unix/linux environment? If so, could you provide me with more answers around this? (2 Replies)
Discussion started by: FL1
2 Replies

9. UNIX for Dummies Questions & Answers

Assistance needed.

the command "nawk" returns the error command cannot be found in my unix system. Is there a specific library i need to have to use this command? I tried, the whereis command and it returns nothing. if there is nothing to do, what command can i use to replace this nawk command? Appreciate some... (4 Replies)
Discussion started by: 12yearold
4 Replies
Login or Register to Ask a Question