- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- make links between directories
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 03:09 AM
05-13-2005 03:09 AM
make links between directories
ln -s /fs1/aa1 /fs2/aa1
I did a "ll" and I can see the link, and it works from UNIX.
I have share by NFS /fs2, when I mount /fs2 in a windows PC I see the directoy /fs2/aa1 like an archive NOT A DIRECTORY, so from windows I can't access to the link.
Somebody know what do I have to do to see the link like a directory in windows?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 03:36 AM
05-13-2005 03:36 AM
Re: make links between directories
You might be able to fix this by removing the link and recreating as follows:
1. cd /fs2
2. ln -s ../fs1/aaa1 ./aaa1
Also, are these separate file systems?
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 04:01 AM
05-13-2005 04:01 AM
Re: make links between directories
I Try but it doesn't work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 04:05 AM
05-13-2005 04:05 AM
Re: make links between directories
It usually won't follow symlinks, or child mounts.
Meaning, if you want to access data in '/fs1/aa1', you'll have to share that path too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 04:06 AM
05-13-2005 04:06 AM
Re: make links between directories
Sorry, 2am ;) mind not as clear as I thought it was..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 04:44 AM
05-13-2005 04:44 AM
Re: make links between directories
Stuart is correct. You really won't have any luck with the symlink over the two mount points.
" The NFS protocol is specified to not let a NFS client cross
mount points. This is so the NFS client does not get confused
about the identity of files in the even[t] two files on two
different server file systems share the same file id (inode #). "
The relative link naming will only work within the same mount point so that is not really what you need.
I believe your only two options are to either export /fs1 and /fs2 or get all the data into the same mount point.
david