How to determine share name of Linux server?


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat How to determine share name of Linux server?
# 1  
Old 07-31-2014
How to determine share name of Linux server?

Hi,

How to determine share name of Linux server ?

OS version is RHL 6.5

Regards,
Maddy
# 2  
Old 07-31-2014
Do you mean samba share? if yes, try \\linux-ip-address from one of the windows boxes
# 3  
Old 08-01-2014
Three choices:-
  • Do you mean NFS share to another unix server? You can browse /etc/exports to see what you are sharing. A mount statement on the client would be something like:-
    Code:
    mount -t nfs hostname:/shared/directory /local/mountpoint

  • Do you mean a Samba share to mount with a Windows client?
    If you fire up a browser like this, then you may get a management GUI where you can explore:-
    Code:
    http://hostname:901

    You will need to put in the root password.

    CAUTION - you will be able to edit the configuration very easily, so mistakes are easy.
    The configuration file is likely to be similar to /opt/freeware/samba/version/etc/smb.conf
    Find it and copy it away securely before you start.
    .
  • Not sure what else you might mean.
Do any of these help? If it's the 3rd option, can you explain a little more of what you are trying to achieve please.



Robin
This User Gave Thanks to rbatte1 For This Post:
# 4  
Old 08-01-2014
Hi Robin,

Actually we wanted to create a separate NFS mount point of size 200 GB in a server .
So we requested storage team to create it. but they ask us to provide the share name for server and
one of my team mate has provided that.dont know how he given that share name.

So thought of asking something about it.

Regards,
Maddy
# 5  
Old 08-01-2014
I think they're just asking you, "What do you want this brand-new share to be called?" Since it doesn't exist yet, there's not a lot to be found...
# 6  
Old 08-01-2014
<What do you want this brand-new share to be called>
Smilie
# 7  
Old 08-02-2014
I think that I understand the question now.............

You have remote storage available via NFS. Your team mate gave the storage team a name for the NFS handle but you don't know what he said.

Answer: To display the NFS handles offered by a remote node

Code:
# showmount <ip address of node>

These 2 Users Gave Thanks to hicksd8 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Mounting Windows Share to Linux Server

Hi Folks - I need to mount a Windows Share to a Linux server. What is the best/easiest way to do this? Is this 'how-to' guide accurate: How to Share Files Between Windows and Linux Or is there a better method you could share? Thanks! (8 Replies)
Discussion started by: SIMMS7400
8 Replies

2. Shell Programming and Scripting

Script to determine server IP

Need help with the script, I am trying to include this script as part of kickstart profile. based of the host's IP address, in this case if the host is IP starting with 10.10.3.* or 10.10.6.*, I will be pushing appropriate routing file from my web server. I validate host IP from nslookup. ... (3 Replies)
Discussion started by: bobby320
3 Replies

3. Web Development

Script to determine which web server at ip addresses

how do we determine if ip addresses are hosting IIS version 7.x or Apache 2.2.x. ? (3 Replies)
Discussion started by: NameSake
3 Replies

4. Shell Programming and Scripting

Determine if variable is the Server component of UNC

Hi all, Using sh/csh, unfortunately shell scripts are not my strong suit. Trying to write a script that gets called from a program for pre-processing. The program passes individual components of a UNC (//server/path1/path2/filename). Thus the unc path of: //server/path1/path2/filename, is... (7 Replies)
Discussion started by: Festus Hagen
7 Replies

5. Red Hat

Unable to access NFS share on Solaris Server from Linux client

Hi, I am trying to access a NFS shared directory on Solaris 10 Server from a client which is RHEL 4 Server. On the NFS Server, in /etc/dfs/, I added following line to dfstab file. share -F nfs -o rw /var/share & then ran the following svcadm -v enable -r... (3 Replies)
Discussion started by: SunilB2011
3 Replies

6. Solaris

Can't access NFS Share on Solaris Server from a Linux Client

Hi, I am trying to access a NFS shared directory on Solaris 10 Server from a client which is RHEL 4 Server. On the NFS Server, in /etc/dfs/, I added following line to dfstab file. & then ran the following On the client machine, while running the mount command, I am... (0 Replies)
Discussion started by: SunilB2011
0 Replies

7. IP Networking

How to Determine client's DNS server Ip

Is there a way for a server to determine client's DNS ip? I have an application that logs client's IP but in certain cases its desirable to know their DNS too (1 Reply)
Discussion started by: vickylife
1 Replies

8. UNIX for Dummies Questions & Answers

Linux Server Network Settings - Share Directory Structure

Hello Unix Gurus Who I Hope Reads This, I have quasi-inherited control over a Linux cluster at a university research lab. The post-doc that set it up is gone, and the person in charge of administering the cluster doesn't know a ton about Linux. Amongst other things, I want to use the cluster... (0 Replies)
Discussion started by: mbl
0 Replies
Login or Register to Ask a Question