- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: rx4640 largefiles problem
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
04-08-2006 01:22 PM
04-08-2006 01:22 PM
I am facing a problem in HP Itanium box(RX 4640) HPUX 11.23 installed on it, i created newfs and need to change
fs size to largefiles, at the moment i have these entries in /etc/fstab.
/dev/vglog/lvmloga /oracle/FDN/mirrlogA vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vglog/lvmlogb /oracle/FDN/mirrlogB vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vglog/lvologa /oracle/FDN/origlogA vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vglog/lvologb /oracle/FDN/origlogB vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
please help me to change it from nolargefiles to largefiles.
AFA!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2006 09:30 PM
04-08-2006 09:30 PM
Re: rx4640 largefiles problem
For each file system do the gollowing:
umount filesystem
fsadm -F vxfs -o largefiles /dev/vgXXX/rlvolYYY
mount filesystem
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2006 09:30 PM
04-08-2006 09:30 PM
Re: rx4640 largefiles problem
After you have used newfs to create a filesystem without largefile support you have two options to fix it.
Convert it with fsadm
newfs -F vxfs -o largefiles
The second option is destructive.
As far as I know 11i v1(11.11) dropped support for the largefiles paramter in /etc/fstab
I doubte 11i v2(11.23) as put that back in.
SEP
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
04-08-2006 10:57 PM
04-08-2006 10:57 PM
Re: rx4640 largefiles problem
Steps to change the
1.unmount filesystem
2. fsadm -F vxfs -o largefiles /dev/vgxx/rlvolx
3.change entry in /etcfstab as follows (for 11i V1 and V2)
/dev/vg02/d02 /d02 vxfs rw,suid,largefiles,delaylog,datainlog 0 2
4.mount -a
-sysadm-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 02:03 AM
04-09-2006 02:03 AM
Re: rx4640 largefiles problem
If you have Online JFS installed (which I hope you do) you do not need to unmount a filesystem to enable largefiles support.
With Online JFS:
# fsadm -F vxfs -o largefiles /mountpoint
Without Online JFS:
# umount /mountpoint
# fsadm -F vxfs -o largefiles /dev/vgNN/rlvolXX
...note the use of the (r)aw device file above.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 07:05 PM
04-09-2006 07:05 PM
SolutionFollow these Steps to change the FS.
1. Unmount FS by following commands.
umount /oracle/FDN/mirrlogA
umount /oracle/FDN/mirrlogB
umount /oracle/FDN/origlogA
umount /oracle/FDN/origlogB
2.Use fsadm command to change largefiles.
fsadm -F vxfs -o largefiles /dev/vglog/rlvmloga
fsadm -F vxfs -o largefiles /dev/vglog/rlvmlogb
fsadm -F vxfs -o largefiles /dev/vglog/rlvologa
fsadm -F vxfs -o largefiles /dev/vglog/rlvologb
3.Change entries in /etc/fstab
4.mount -a
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 07:41 PM
04-09-2006 07:41 PM