Operating System - HP-UX
1753500 Members
4641 Online
108794 Solutions
New Discussion юеВ

Re: largefiles - filesystem

 
SOLVED
Go to solution
Ravinder Singh Gill
Regular Advisor

largefiles - filesystem

how do i check if a fileystem is largefiles enabled if it does not have an entry in fstab and is manually mounted?
9 REPLIES 9
Steven E. Protter
Exalted Contributor
Solution

Re: largefiles - filesystem

Shalom Ravinder,

fstyp /dev/vg00/lvol3
vxfs


If your system is 11.00 or lower, you will see largefiles in the /etc/fstab file. You must, whether the filesystem is formatted for it or not mount with the largefiles option.

mount -F vxfs -o largefiles /dev/vg01/lvol1 /oradata

The largefiles parameter was deprecated from mount in 11i and above, so you should NOT use it or specify it in /etc/fstab

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
Arunvijai_4
Honored Contributor

Re: largefiles - filesystem

Hello,

You can use SAM to check that out.

SAM--> Disk and Filesystems --> File Systems --> Select a FS --> Actions --> View More Information...

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Pete Randall
Outstanding Contributor

Re: largefiles - filesystem

Use fsadm:

# fsadm /var
fsadm: /etc/default/fs is used for determining the file system type
largefiles
#


Pete

Pete
Dave Hutton
Honored Contributor

Re: largefiles - filesystem

If its vxfs
# fsadm -F vxfs /mountpoint

Ivan Ferreira
Honored Contributor

Re: largefiles - filesystem

fsadm also reports if the file system has largefiles enabled:

# fsadm /depot/patch
fsadm: /etc/default/fs is used for determining the file system type
largefiles
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Arunvijai_4
Honored Contributor

Re: largefiles - filesystem

Hi Again,

# fsadm /

Should help you.

Also, you can use # fstyp

Check out the man pages for more informaton.

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
James R. Ferguson
Acclaimed Contributor

Re: largefiles - filesystem

Hi Ravi:

A simple way is:

# mkfs -m -F vxfs /dev/vgXX/lvolN

Change the filesystem type if this is not a VxFS filesystem.

Regards!

...JRF...
Cem Tugrul
Esteemed Contributor

Re: largefiles - filesystem

hello;

fsadm /mount_point
OR

SAM-->Disk and Filesystems-->File Systems-->Select FS -->Actions-->View More Information

Good Luck,
Our greatest duty in this life is to help others. And please, if you can't
Ravinder Singh Gill
Regular Advisor

Re: largefiles - filesystem

Thanks