- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Large Files
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
03-01-2004 06:48 PM
03-01-2004 06:48 PM
Large Files
i have a little problem using Files larger then 2Gigabyte. We use a vxfs File System and there was the option "nolargefiles" in the fstab. I deleted that option and remounted that volume.
Still there is a max file size of 2 gigabyte.
Any1 knows how to fix that without restarting the server?
Would be pleased about an answer
greetz
Peter Reuschlein
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 06:52 PM
03-01-2004 06:52 PM
Re: Large Files
you could add "largefiles" to your fstab :)
and/or use "fsadm -F vxfs -o largefiles ..."
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 06:55 PM
03-01-2004 06:55 PM
Re: Large Files
# umount /myfs
# fsadm -F vxfs -o largefiles /dev/myvg/mylvol
Change the entry in /etc/fstab to resemble largefiles option
# mount -a
To check to see if you have online JFS
# swlist -l product | grep -i online
If it reports nothing you don't have it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 07:01 PM
03-01-2004 07:01 PM
Re: Large Files
just by editing fstab wouldn't work.
have backup of the filesyetm you wanted to convert into largefiles.
#fstyp /dev/vgxx/lvolxx
(will show you type of file system)
#fsadm -F vxfs -o largefiles /dev/vgxx/rlvolxx
will convert lvolxx in to largefile system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 07:06 PM
03-01-2004 07:06 PM
Re: Large Files
How about doing it online.
# fsadm -F vxfs -o largefiles /mountpoint
# mount -o remount,largefiles /mountpoint
and last but not least alter the fstab.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 07:59 PM
03-01-2004 07:59 PM
Re: Large Files
vxfs fsadm: /dev/vg01/lvol17 is not the root inode of a vxfs file sytem
thats the error when i try to do that fsadmin thingy on the volume.
here the output of mount -v <-- perhaps that helps
hprp7410:/etc(root)$mount -v
/dev/vg00/lvol3 on / type vxfs log on Wed Dec 10 08:31:57 2003
/dev/vg00/lvol1 on /stand type hfs defaults on Wed Dec 10 08:31:59 2003
/dev/vg00/lvol8 on /var type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:24 2003
/dev/vg00/lvol7 on /usr type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol9 on /phoenix type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol6 on /opt type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol11 on /logs type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol12 on /java type vxfs delaylog,nodatainlog,nolargefiles on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol5 on /home type vxfs delaylog,nodatainlog on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol15 on /dbbackup type vxfs delaylog,nodatainlog,nolargefiles on Wed Dec 10 08:32:25 2003
/dev/vg01/dbLOG on /dbLOG type vxfs delaylog,nodatainlog,nolargefiles on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol13 on /db type vxfs delaylog,nodatainlog,nolargefiles on Wed Dec 10 08:32:25 2003
/dev/vg00/lvol14 on /data type vxfs delaylog,nodatainlog,nolargefiles on Wed Dec 10 08:32:25 2003
/dev/vg01/lvol16 on /tmp type vxfs delaylog,nodatainlog,nolargefiles on Thu Feb 5 12:43:10 2004
/dev/vg01/lvol17 on /xmlfiles type vxfs log,nodatainlog on Tue Mar 2 09:56:26 2004
.. think there is a [code][/code]function missing on this board ;)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 08:05 PM
03-01-2004 08:05 PM
Re: Large Files
So you do not have online jvs,
You will have to umount the filesystem and enable the largefiles option.
# umount /xmlfiles
# fsadm -F vxfs -o largefiles /dev/vg01/rvol17
# mount /xmlfiles
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 08:08 PM
03-01-2004 08:08 PM
Re: Large Files
# fsadm -F vxfs /xmlfiles
nomultifsets
largefiles
Robert-Jan