How do I share a directory in UNIX for another UNIX server?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How do I share a directory in UNIX for another UNIX server?
# 1  
Old 12-19-2008
How do I share a directory in UNIX for another UNIX server?

Hi,

Here's my newbie question!

I've two servers with Oracle on. I've created an oralce export (10 GB) on server 1.
Server 2 does not have enough space to copy the export and import it. I'd like to import the export from server 1 to server 2 remotely.
If this was windows I'd create a share on server 1 and map a drive to this on server 2.
Can I do something similar in UNIX?

Regards
Mark
ps can people really smoke on forums!! Smilie
# 2  
Old 12-19-2008
Use NFS.

man exportfs or exports to learn how to export a directory for sharing (sorry about using the word export... it means making a share in UNIX land).

Then you can mount it from a client using:

mount remote-host-name:/remote-dir-that-was-exported /local-mount-dir

The /local-mount-dir is an empty directory on the client.
# 3  
Old 12-20-2008
Thanks for your help exactly what I was looking for Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Script that, if file exists in Samba share, moves file to Unix server

I'm looking to do pretty much what the title says. I want a script that runs, it can run on Unix or Windows, doesn't matter, and searches a Samba shares for a .txt file. If the file exists, the script will move (or possibly copy) the file from the Samba share into a directory on our Unix... (3 Replies)
Discussion started by: twcostello
3 Replies

2. Shell Programming and Scripting

Find and delete files and folders which are n days older from one unix server to another unix server

Hi All, Let me know how can i find and delete files from one unix server to another unix server which are 'N' days older. Please note that I need to delete files on remote unix server.So, probably i will need to use sftp, but question is how can i identify files and folders which are 'N'... (2 Replies)
Discussion started by: sachinkl
2 Replies

3. Shell Programming and Scripting

Copy a directory from a server (UNIX) to a PC (Windows)

Hello, I already do some question about this topic. I already establish the conection from the server (Centus) whit the windows PC using SSH. Now I have two problems: 1- The server always ask me about a password to copy the files to the windows pc, I don't know how to avoid this, if someone can... (2 Replies)
Discussion started by: yeestrada
2 Replies

4. UNIX for Dummies Questions & Answers

share directory from linux to unix

hello,:b: I want to share a directory from Linux server to Unix server, i did it before for Unix servers only , first server: share -F nfs /backup second server: mount -F nfs 192.1.1.208:/backup / but i can't find share command in linux, we tried to use samba but it doesn't works. any... (6 Replies)
Discussion started by: dagigg
6 Replies

5. 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

6. Solaris

Map Unix server directory to another Unix server directory

Hi, Anybody knows how to map a particular server directory to another server directory. Both servers are unix. For example when i view the files in server A /export/home/web/doc/ , I am actually viewing the files in server B /export/home/web/doc. Have been looking for a solution for a long time.... (2 Replies)
Discussion started by: sagolo
2 Replies

7. UNIX for Dummies Questions & Answers

How to share CGI Scripts across UNIX web server?

Hi, is it possible to create a CGI folder somewhere on the server and allow all domains on that server be able to access the scripts? I tried a ScriptAlias addition in httpd.conf but still no luck. Would greatly appreciate any tips! Thanks. Linux version 2.4.20-021stab028.3.777-enterprise Plesk... (5 Replies)
Discussion started by: karlsworld
5 Replies

8. Shell Programming and Scripting

How to share CGI Scripts across UNIX web server?

Hi, is it possible to create a CGI folder somewhere on the server and allow all domains on that server be able to access the scripts? I tried a ScriptAlias addition in httpd.conf but still no luck. Would greatly appreciate any tips! Thanks. Linux version 2.4.20-021stab028.3.777-enterprise Plesk... (1 Reply)
Discussion started by: karlsworld
1 Replies

9. Shell Programming and Scripting

FTP script for sending a file from one unix directory to another unix server director

Hi, My local server is :/usr/abcd/ Remote server is :/Usr/host/test/ I want to send files from local unix directory(All files starting with O_999) to remote host unix directory. Can any body give me the Unix Shell script to do this. One more doubt: Shall we need to change the file... (1 Reply)
Discussion started by: raja_1234
1 Replies

10. UNIX for Dummies Questions & Answers

Reference a directory on another Unix server

I want to reference a directory on another Unix server. I have looked at the ln command but have seen information only relating to directories on the same server. Any suggestions? It is IBM AIX Unix 4.3 server. (1 Reply)
Discussion started by: pengwyn
1 Replies
Login or Register to Ask a Question