- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: large files
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
12-30-2002 04:13 AM
12-30-2002 04:13 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 04:23 AM
12-30-2002 04:23 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 04:26 AM
12-30-2002 04:26 AM
Re: large files
fsadm -F hfs -o largefiles /dev/vg02/lvol1
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 04:35 AM
12-30-2002 04:35 AM
Re: large files
and good luck in 2003.
Werner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 04:37 AM
12-30-2002 04:37 AM
Re: large files
Hi,
you can't enable large files on the lvol that are already If you intend to do, you need a backup of that lvol.
remove that lvol, re-create with large 'Allow large files' (sam --> disks and file and file systems --> logical volumes --> action,choose create. In modify FS defaults choose Allow Large Files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 06:45 AM
12-30-2002 06:45 AM
Re: large files
umount /fsname
lvremove /dev/vgxx/lvolname
(Contiguous is set to yes, you may need to adjusst. You might want to not use the -n if you want to use standard lvol names)
lvcreate -C y -n newvg01 /dev/vg01
lvextend -L 100 /dev/vg01/newvg01 /dev/dsk/c1t5d0
lvdisplay -v /dev/vg01/newvg01 | more
(If you need to mirror)
lvextend -m 1 /dev/vg01/newvg01 /dev/dsk/c1t5d0 /dev/dsk/c1t6d0
newfs -F vxfs -o largefiles /dev/vg02/roracle5
modify /etc/fstab to enable largefiles mount at boot time.
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 06:54 AM
12-30-2002 06:54 AM
Re: large files
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 07:01 AM
12-30-2002 07:01 AM
Re: large files
There is *no* need to recreate a filesystem to *enable* largefiles capability. The 'fsadm' command can be used to convert either a HFS or VxFS filesystem to or from largefiles. The caveat is only that conversion from largefiles to no-largefiles succeeds only if no largefiles are present in the filesystem. The converse (converting from no-largefiles to largefiles) should always succeed.
The 'lvchange' command can be used for changing a logical volume from contiguous allocation to non-contiguous allocation. Again, there is no need to recreate the logical volume. The caveat in inverting the contiguous allocation policy is that a non-empty logical volume cannot be changed from non-contiguous to contiguous allocation unless it meets all the requirements for contiguous allocation in the first place. That is, physical extents are allocated in ascending order; there is no gap between physical extents within a mirror copy; and physical extents of any mirror copy all reside on a single physical volume.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2002 07:08 AM
12-30-2002 07:08 AM
Re: large files
See, it all comes down to how you ask the question. Our author asked, "How can i enable large files ..." and got a couple of different [and roundabout] ways to do it. The author could have asked, "What is the best way to enable large files ..." and maybe gotten better answers? Maybe not? :)
JP