- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: from symbolic to fast links
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
09-27-2001 01:23 AM
09-27-2001 01:23 AM
from symbolic to fast links
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:36 AM
09-27-2001 01:36 AM
Re: from symbolic to fast links
From docs.hp.com:
When create_fastlinks is non-zero, it causes the system to create HFS symbolic links in a manner that
reduces the number of disk-block accesses by one for each symbolic link in a pathname lookup. This
involves a slight change in the HFS disk format, which makes any disk formatted for fast symbolic links
unusable on Series 700 systems prior to HP-UX Release 9.0 and Series 800 systems prior to HP-UX
Release 10.0 (this configurable parameter was present on Series 700 Release 9.0 systems, but not on
Series 800 HP-UX 9.0 systems).
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:41 AM
09-27-2001 01:41 AM
Re: from symbolic to fast links
I'd get the latest jfs patches and watch out for incompatabilities if you're considering NFS mounting it.
Also you may need a more up to date ignite patch to support it.
Downgrading your filesystem to earlier JFS releases won't be possible after doing this, but then you'd really want to have a good reason.. such as legacy apps or something like that.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:46 AM
09-27-2001 01:46 AM
Re: from symbolic to fast links
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:54 AM
09-27-2001 01:54 AM
Re: from symbolic to fast links
I would argue that most ppl use VxFS where possible and HFS only when necessary, i.e. /stand, so doesn't that make create_fastlinks irrelavent for the most part?
Just trying to get a clearer understanding...
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 02:02 AM
09-27-2001 02:02 AM
Re: from symbolic to fast links
2- tlinstall ( transition link install) creates all transition links on instalation; this is a system tool, so you would not change.
You can choose to remove all that links.
see man tlinstall.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 04:14 AM
09-27-2001 04:14 AM
Re: from symbolic to fast links
My understanding of fast-links is as Santosh has noted, namely, that they apply only to HFS filesystems. Given, therefore, that most (?) of us use VxFS (JFS) filesystems for their performance and resiliency, I think this is a moot issue.
With regard to transition links, while HP software doesn?t (shouldn?t) rely on them, I?d be hesitant about blindly removing them until I made sure there were no executables, scripts or make files using them.
I would update, however, any of the aforementioned to directly reference the directories instead of transiting the transitional (symbolic) link. This would improve access speed.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 10:39 AM
09-27-2001 10:39 AM
Re: from symbolic to fast links
as the others I am not so certain about the
fast-links working in a VxFS environment, but
they cannot hurt, and they would save some
space in your buffer cache...
BUT you will have to re-build ALL symbolic
links after booting with that new kernel,
like:
tlremove
find / -type l -exec recreatelink {} ";"
tlinstall
where "recreatelink" would look like:
#!/usr/bin/sh
# recreatelink: param 1 is the name of the link
target=$(ls -l $1 | cut -d'>' -f2)
rm -f $1
ln -s $target $1
# end
test it before using (and I am not responsible
for anything which will ever happen to you ;-)
HTH,
Wodisch