How does /export dir work?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How does /export dir work?
# 1  
Old 04-23-2003
How does /export dir work?

In solaris I can switch to /export/appl/home or /appl/home to get to my home dir. If I switch to /export/apps as oppose to just /apps I see lots of other stuff. Can someone tell me the difference? Thanks
# 2  
Old 04-23-2003
Take a look at the df command - it should show you where each is mounting from (one should be local, the other NFS). Post the results.

% df -k

Also post what service you are using (check your /etc/nsswitch.conf) It should be NIS or NIS+. You can then check out the appropriate command for each to show the auto maps.

You can also search this site for "nfs home" as these questions have been asked before (and answered).

Sun's NFS FAQ
# 3  
Old 04-24-2003
dude,

he didn't mention anything about nfs, automapping, or the such. he wanted to know why he was getting different information when he looked in /export/apps and /apps. the answer is simple: they are two different directories. one is a sub-directory of /export and one is sub-directory of /. if he is seeing different contents, then they probably are NOT linked!

FYI: on solaris, just because something appears in the /export directory doesn't mean it is "exported." it's not like the /etc/exports file in linux. it is just a standard solaris directory that is created by default upon installation. it is standard, however, that you place directories to be shared using nfs in this directory, hence the name "export." but it is not mandatory.

you probably scared the guy to death and have him completely confused.
# 4  
Old 04-24-2003
manderson,

Quote:
he wanted to know why he was getting different information when he looked in /export/apps and /apps. the answer is simple: they are two different directories. one is a sub-directory of /export and one is sub-directory of /. if he is seeing different contents, then they probably are NOT linked!
gillbates was also not asking why /export/apps and /apps were not linked like /export/appl/home and /appl/home appear to be. I view RTM's response a little differently than you. If I were fairly new to Unix and noticed what gillbates did, I'd be wondering why two directories appear to be the same one, not why two directories appear to be different ones, which is obvious and needs no explanation.

What RTM is trying to explain is why /export/appl/home and /appl/home appear to be the same directory.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Assign read write permission to the user for specific dir and it's sub dir and files in AIX

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. I do not want to assign user the same group of that directories too.... (0 Replies)
Discussion started by: blinkingdan
0 Replies

2. Shell Programming and Scripting

KSH - Find paths of multiple files in CC (dir and sub-dir))

Dear Members, I have a list of xml files like abc.xml.table prq.xml.table ... .. . in a txt file. Now I have to search the file(s) in all directories and sub-directories and print the full path of file in a output txt file. Please help me with the script or command to do so. ... (11 Replies)
Discussion started by: Yoodit
11 Replies

3. UNIX for Dummies Questions & Answers

How to list all files in dir and sub-dir's recursively along with file size?

I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In have to list all the files in directory and its sub directories along with file path and size of the file Please help me in this regard and many thanks in advance. (3 Replies)
Discussion started by: nmakkena
3 Replies

4. Solaris

how to change /export/home/user dir to /home /user in solaris

Hi all i am using solaris 10, i am creating user with useradd -d/home/user -m -s /bin/sh user user is created with in the following path /export/home/user (auto mount) i need the user to be created like this (/home as default home directory ) useradd -d /home/user -m -s /bin/sh... (2 Replies)
Discussion started by: kalyankalyan
2 Replies

5. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

6. Shell Programming and Scripting

export variable from ksh script doesn't work

Hi there, in a script I have #!/usr/bin/ksh TEST=hello export TEST Problem is, that the variable doesn't get exported. I also tried typeset -x TEST=hello When I put the two lines in my .profile, the variable is set fine. Whats could be the problem here? (4 Replies)
Discussion started by: doc_symbiosis
4 Replies

7. UNIX and Linux Applications

CPIO Problem, copy to the root dir / instead of current dir

HI all, I got a CPIO archive that contains a unix filesystem that I try to extract, but it extract to the root dir / unstead of current dir, and happily it detects my file are newer otherwise it would have overwrited my system's file! I tried all these commands cpio -i --make-directories <... (2 Replies)
Discussion started by: nekkro-kvlt
2 Replies

8. Shell Programming and Scripting

ssh, cd to a dir, and and then do some work.

I want to do something like #!/bin/bash ssh name@computer 'cd /my/dir' and then continue working in this directory. Right now if I execute a script "myscript" containing the above, it just drops me back into the bash shell where I started, whereas I want to be able to do work and stuff on... (1 Reply)
Discussion started by: tphyahoo
1 Replies

9. Shell Programming and Scripting

a script to clone a dir tree, & overwrite the dir struct elsewhere?

hi all, i'm looking for a bash or tcsh script that will clone an empty dir tree 'over' another tree ... specifically, i'd like to: (1) specify a src directory (2) list the directory tree/hiearchy beneath that src dir, w/o files -- just the dirs (3) clone that same, empty dir hierarchy to... (2 Replies)
Discussion started by: OpenMacNews
2 Replies

10. UNIX for Dummies Questions & Answers

How does /export dir work?

In solaris I can switch to /export/appl/home or /appl/home to get to my home dir. If I switch to /export/apps as oppose to just /apps I see lots of other stuff. Can someone tell me the difference? Thanks (1 Reply)
Discussion started by: gillbates
1 Replies
Login or Register to Ask a Question