- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: problem with largefiles option
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
10-10-2005 09:01 PM
10-10-2005 09:01 PM
problem with largefiles option
I have created new FS with largefiles option:
newfs -F vxfs -o largefiles /dev/vg01/rlvol1
now I am trying to mount this fs with largefiles option it doesnt wor.
mount -F vxfs -o delaylog,largefiles /dev/vg01/lvol1 /mount_point
When I am mounting FS I have no errors but when I type mount -p it seems that FS is mounted only with delaylog option:
/dev/vg01/lvol1 /mount_point vxfs delaylog 0 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:05 PM
10-10-2005 09:05 PM
Re: problem with largefiles option
does it show that FS was created with largefiles option?
What does mount -v say??
Did you try creating 2GB file and see??
prealloc 2000000000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:05 PM
10-10-2005 09:05 PM
Re: problem with largefiles option
Could you post the output of,
# fsadm /mount_point
or
# fsadm /dev/vg01/rvol1
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:08 PM
10-10-2005 09:08 PM
Re: problem with largefiles option
The steps are :
Creation of a filesystem with large file option:
/usr/sbin/newfs -F vxfs -o largefiles /dev/[vg]/[rlvol]
Changing an existing filesystem to largefiles:
/usr/sbin/fsadm -F vxfs -o largefiles /dev/[vg]/[rlvol]
Mounting the filesystem:
mount -F vxfs -o largefiles /dev/[vg]/[lvol]/[mountpoint]
Entry into /etc/fstab (e.g.):
/dev/vgxx/lvolx /[mountpoint] vxfs delaylog,largefiles 0 2
Checking up if large file option has been activated:
fsadm -F vxfs/dev/vgxx/rlvolx
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:13 PM
10-10-2005 09:13 PM
Re: problem with largefiles option
#fsadm -F vxfs /dev/vgsmac256/rpoldb
nomultifsets
largefiles
I have tried to unzip file that is larger then 2gb:
# gzip -d CMS_dump071005_04.dmp.gz
gzip: CMS_dump071005_04.dmp: File too large
# mount -p | grep poldb
/dev/vgsmac256/poldb /smac/poldb vxfs delaylog 0 0
there is no way to mount this FS with largefilest option, I have tried many times to unmount and mount this FS
any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:13 PM
10-10-2005 09:13 PM
Re: problem with largefiles option
See man fsadm for more details.
To get verbose with mount use as,
# mount -v -F vxfs -o delaylog,largefiles /dev/vg01/lvol1 /mount_point
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:22 PM
10-10-2005 09:22 PM
Re: problem with largefiles option
============================================
# mount -v -F vxfs -o largefiles,delaylog /dev/vgsmac256/pakdb /smac/pakdb
usage: mount [-l][-v|-p]
mount [-F FStype][-eQ] -a
mount [-F FStype][-eQrV][-o specific_options]
{ special | directory }
mount [-F FStype][-eQrV][-o specific_options]
special directory
enka02:/#
===========================================
doesn't work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:23 PM
10-10-2005 09:23 PM
Re: problem with largefiles option
mkfs -m /dev/vgxx/rlvolx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:32 PM
10-10-2005 09:32 PM
Re: problem with largefiles option
mkfs -F vxfs -o ninode=unlimited,bsize=2048,version=3,inosize=256,logsize=1024,largefiles /dev/vgsmac256/rpakdb 8388608
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:37 PM
10-10-2005 09:37 PM
Re: problem with largefiles option
Unmount and mount with largefiles option.
mount -F vxfs -o largefiles,delaylog /dev/vgxx/lvolx /mount_point
mount -v
Does it get mounted with largefiles option??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:38 PM
10-10-2005 09:38 PM
Re: problem with largefiles option
You can get round this by reading the file contents using re-direction from stdin (< or cat | ) then re-directing the output using >
Then you need to install a 64 bit version of gzip.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:39 PM
10-10-2005 09:39 PM
Re: problem with largefiles option
Refer:
The mount command uses the same two options as the mkfs, newfs, and fsadm commands (largefiles and nolargefiles). mount will not mount a large-files file system if the -o nolargefiles option is specified. Conversely, the mount command will not mount a no-large-files file system if the -o largefiles option is specified. If no option is provided to mount, it will use the state of the file system itself to determine if it is mounted as largefiles or nolargefiles.
http://docs.hp.com/en/5990-8172/ch06s02.html
Once you are changing with fsadm / mkfs then mount with delaylog option with -o only.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:53 PM
10-10-2005 09:53 PM
Re: problem with largefiles option
I am using 64bit zip so it is problem with largefiles option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 09:53 PM
10-10-2005 09:53 PM
Re: problem with largefiles option
mount -F vxfs -o largefiles,delaylog lvol mountpoint
I still think you will have a problem with gzip as well, unless you are sure you installed the 64 bit version.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 10:20 PM
10-10-2005 10:20 PM
Re: problem with largefiles option
# mount -e -F vxfs -o delaylog lvol mountpoint
-e verbose mode
# fsadm -F vxfs Mount-point
What are you getting there?
You can also try with,
sam -> disks and filesystems -> file systems
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 10:27 PM
10-10-2005 10:27 PM
Re: problem with largefiles option
# gzcat CMS_dump071005_04.dmp.gz > CMS_dump071005_04.dmp