Operating System - HP-UX
1833114 Members
3201 Online
110051 Solutions
New Discussion

i cann't covert the File system to Large files support..

 
SOLVED
Go to solution
shan_7
Advisor

i cann't covert the File system to Large files support..

Hi,

In 10.20 hp-ux server, i try to convert the file system to large file support . but it giving the following error while proceeding with the command
#fsadm -F vxfs -o largefiles /dev/vg07/lvol2
vxfs fsadm: file system is not root inode of vxfs file system..
#
and i checked with fstyp -v file_system
f_flag value is 0 so current file system won't support the large file system...

help me ...

Shankar
7 REPLIES 7
Steven E. Protter
Exalted Contributor

Re: i cann't covert the File system to Large files support..

back up the data

newfs -F vxfs -o largefiles /dev/vg07/rlvol2

That should do it, though 10.20 is far from my fortee.

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
Michael Tully
Honored Contributor

Re: i cann't covert the File system to Large files support..

Is the filesystem still mounted?
Anyone for a Mutiny ?
Ravi_8
Honored Contributor
Solution

Re: i cann't covert the File system to Large files support..

Hi Shankar

back up the data in vg07/lvol2

#umount < file system>
#lvremove /dev/vg07/lvol2
#lvcreate -L -n lvol2 /dev/vg07
#newfs -F vxfs -o largefile /dev/vg07/rlvol2
#mount /dev/vg07/lvol2
#fstyp -v /dev/vg07/lvol2

restore data from backup
never give up
Fabio Ettore
Honored Contributor

Re: i cann't covert the File system to Large files support..

Hi Shankar,

have you tried fsadm by mountpoint?

# fsadm -F vxfs -o largefiles /

Good luck!
Ettore
WISH? IMPROVEMENT!
KapilRaj
Honored Contributor

Re: i cann't covert the File system to Large files support..

as far as my understanding goes the fs needs to be recreated !

Will dig in why !

Kaps
Nothing is impossible
Naveej.K.A
Honored Contributor

Re: i cann't covert the File system to Large files support..

Hi Shankar,

Tried this???

SAM ==> disks and filesystems ==> filesystems ==> action ==> modify - allow large files

With best wishes
Naveej
practice makes a man perfect!!!
Stanimir
Trusted Contributor

Re: i cann't covert the File system to Large files support..

Hi!
You need simply to unmount your filesystem
before doing fsadm and also you need to
use raw devices: "rlvol2"

#umount /dev/vg07/lvol2
#fsadm -F vxfs -o
largefiles /dev/vg07/rlvol2

Good luck,
Stan