- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- switch from nolargefiles to largefiles
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-18-2003 02:25 AM
03-18-2003 02:25 AM
Is there a way to alter a filesystem created with "nolargefiles" so it becomes "largefiles" aware? (without erasing contents or re-creating the fs)?
TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:27 AM
03-18-2003 02:27 AM
Re: switch from nolargefiles to largefiles
fsadm -o largefiles /dev/vgxx/lvolxx
Regards, Vicente.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:31 AM
03-18-2003 02:31 AM
Re: switch from nolargefiles to largefiles
I think, there's no other way than re-creating a
filesystem that handles large files. (HP-UX 11.00)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:34 AM
03-18-2003 02:34 AM
Re: switch from nolargefiles to largefiles
Thank you! It is always good, writing "I think ..." than saying something for sure ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:35 AM
03-18-2003 02:35 AM
Re: switch from nolargefiles to largefiles
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:40 AM
03-18-2003 02:40 AM
Re: switch from nolargefiles to largefiles
Take a look at next link,
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xb7115fe8b250d71190080090279cd0f9,00.html
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:45 AM
03-18-2003 02:45 AM
Re: switch from nolargefiles to largefiles
with this config:
/dev/vgb2/lvol3 /mountdir vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
, fsadm -o largefiles /dev/vgb2/lvol3 yields:
vxfs fsadm: /dev/vgb2/lvol3 is not the root inode of a vxfs file system.
?!?!
I've tried with the rlvol device, it works silently but when trying to mount, got:
vxfs mount: mount option(s) incompatible with file system /dev/vgb2/lvol3
...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:48 AM
03-18-2003 02:48 AM
Re: switch from nolargefiles to largefiles
If your 'fsadm' command worked with no complaints using the rlvol3 device, then it was successful. You'll just need to modify your /etc/fstab entry so that it says 'largefiles'.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:51 AM
03-18-2003 02:51 AM
Re: switch from nolargefiles to largefiles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:52 AM
03-18-2003 02:52 AM
Re: switch from nolargefiles to largefiles
Use
# /usr/sbin/fsadm -F vxfs -o largefiles /filesystem_name
or
# umount /filesystem
#/usr/sbin/fsadm -F vxfs -o largefiles /dev/vg00/rlvol9
# mount /filesystem
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:58 AM
03-18-2003 02:58 AM
Re: switch from nolargefiles to largefiles
#swlist -l |grep -i onlinejfs
If not then you will need to
umount the file system and then
run fsadm against the raw volume and then mount it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:59 AM
03-18-2003 02:59 AM
Re: switch from nolargefiles to largefiles
#swlist |grep -i onlinejfs
If not then you will need to
umount the file system and then
run fsadm against the raw volume and then mount it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 03:01 AM
03-18-2003 03:01 AM
Re: switch from nolargefiles to largefiles
Just do a re-mount
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000063201616
Thanks