Operating System - HP-UX
1832670 Members
3119 Online
110043 Solutions
New Discussion

rx4640 largefiles problem

 
SOLVED
Go to solution
Asif Chaudhary
Advisor

rx4640 largefiles problem

Hi All!!

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!!!
6 REPLIES 6
Victor Fridyev
Honored Contributor

Re: rx4640 largefiles problem

Hi,

For each file system do the gollowing:
umount filesystem
fsadm -F vxfs -o largefiles /dev/vgXXX/rlvolYYY
mount filesystem

HTH
Entities are not to be multiplied beyond necessity - RTFM
Steven E. Protter
Exalted Contributor

Re: rx4640 largefiles problem

Shalom,

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
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
sysadm_1
Valued Contributor

Re: rx4640 largefiles problem

hi,
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-

James R. Ferguson
Acclaimed Contributor

Re: rx4640 largefiles problem

HI:

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...
Asif Sharif
Honored Contributor
Solution

Re: rx4640 largefiles problem

HI AFA,

Follow 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
Regards,
Asif Sharif
Asif Chaudhary
Advisor

Re: rx4640 largefiles problem

Thanks every body for excelent support.