![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| NFS Mount Points | davidra | UNIX for Dummies Questions & Answers | 1 | 11-28-2007 01:49 PM |
| Gnuplot question: how to plot 3D points as colored points in map view? | karman | UNIX and Linux Applications | 0 | 09-24-2007 04:03 AM |
| Mount Points at reboot | AIXdumb455 | UNIX for Dummies Questions & Answers | 1 | 06-20-2006 12:12 AM |
| tar using mount points | legato | UNIX for Dummies Questions & Answers | 3 | 03-30-2005 08:54 PM |
| mount points | manderson19 | UNIX for Advanced & Expert Users | 3 | 04-29-2002 12:11 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Basic question for making remote mount points
I'm on SunOS 5.8.
I'm not sure of the exact terminology, but I want to make a "remote mount" from my server to another server. (Basically I want to create one of the mount points on my server be a shared volume that's on another server here). So if I do a df -k, I want to see all of the volumes on the server, PLUS the volume I connect to on the other server. How can I do this? |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Check out the Sun docs on NFS
Check out the man page for share, nfsd, unshare, mountd Check out /etc/rc3.d/S15nfs.server, /etc/dfs/dfstab Simply put your file system to share into /etc/dfs/dfstab - for security reasons, you should specify which system can mount it. This shares out /opt2 to myotherserver with read/write for root account share -F nfs -o rw,root=myotherserver -d "description" /opt2 This shares out /uu to any server with read-only share -F nfs -o ro -d "some description" /uu |
||||
| Google The UNIX and Linux Forums |