- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Long file names
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
07-27-2000 10:25 AM
07-27-2000 10:25 AM
Long file names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 10:40 AM
07-27-2000 10:40 AM
Re: Long file names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 10:49 AM
07-27-2000 10:49 AM
Re: Long file names
Eg touch 20000727.1.123456789.tif
The file will be created and listed as any other file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 11:04 AM
07-27-2000 11:04 AM
Re: Long file names
man convertfs
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 11:05 AM
07-27-2000 11:05 AM
Re: Long file names
See http://us-support.external.hp.com/cki/bin/doc.pl/sid=f811ca4f116541e3b7/screen=ckiDisplayDocument?docId=200000024627189
Also see the man pages for convertfs.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 11:10 AM
07-27-2000 11:10 AM
Re: Long file names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 11:15 AM
07-27-2000 11:15 AM
Re: Long file names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 11:59 AM
07-27-2000 11:59 AM
Re: Long file names
Man pages indicate size defaults to root file system on hfs system. In my case root file system is vxfs.
convertfs man page mentions only hfs not vxfs file systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2000 12:22 PM
07-27-2000 12:22 PM
Re: Long file names
What does getconf NAME_MAX /xxx return?
/xxx is the filesystem in which you are attempting to create the file.
Also, /stand isn't ever vxfs; it's only hfs.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2000 10:53 AM
07-28-2000 10:53 AM
Re: Long file names
getconf NAME_MAX /xxx returns 255
Thanks,
Curtis
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2000 11:05 AM
07-28-2000 11:05 AM
Re: Long file names
Is it possible that the vendor program has a set length for filenames and that you are exceeding it? Have you tried experimenting with the names of your input files? Figuring the .tif will add 4 characters have you run it against filenames of lenghts 9, 10, and 11 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2000 11:20 AM
07-28-2000 11:20 AM
Re: Long file names
I agree with Alan -- it looks like your filesystem hanles long names just fine. You say that the "output format should [show]...". Exactly what are you looking at that doesn't show the filename without the extension you expect?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2000 10:53 PM
07-30-2000 10:53 PM
Re: Long file names
/usr/sbin/fstyp -v /dev/vg00/lvol1 there you can see a value called f_namemax: 255
the right hand side shows the length in characters of the file name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2000 10:57 PM
07-30-2000 10:57 PM
Re: Long file names
/usr/sbin/fstyp -v /dev/vg00/lvol1 there you can see a value called f_namemax: 255
the right hand side shows the length in characters of the file name. if the value is 14 then run convertfs on the filesystem to support long file names .Note:convertfs is supported only on HFS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2000 11:21 PM
07-30-2000 11:21 PM
Re: Long file names
fsadm -F vxfs -o largerfiles /dev/vgx/rlvol1
this should make your /dev/vgx/lvol1 file system to support large files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2000 05:35 AM
07-31-2000 05:35 AM
Re: Long file names
Thanks for all your input. I changed the dots within the file name to another character (ex: _ , -) and the file name was generated > 14. Looks like something to do with the dots in the file name and could be the vendors program.
Thanks again for your input.