- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Will there be any data loss while increasing a Fil...
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
04-08-2008 05:27 AM
04-08-2008 05:27 AM
Will there be any data loss while increasing a Filesys size...?
I need to increase the size of a existing file system (user created) in HPUX.
Will there be any data loss while unmounting during size change.....?
Plz Reply me ...
Thanks in advance...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 05:31 AM
04-08-2008 05:31 AM
Re: Will there be any data loss while increasing a Filesys size...?
There will be no data loss if you perform the resize correctly. You will not need to unount the filesystem if you have OnlineJFS.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 05:38 AM
04-08-2008 05:38 AM
Re: Will there be any data loss while increasing a Filesys size...?
As mentioned by JRF, if you follow the steps right then there are no risks of data loss. As a precautionary measure, you may wish to backup your data before doing any manipulations.
good luck!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 06:22 AM
04-08-2008 06:22 AM
Re: Will there be any data loss while increasing a Filesys size...?
swlist -l product | grep -i OnlineJFS
Without OnlineJFS, you can extend the logical volume at any time but you must unmount the filesystem before running extendfs to reorganize the directory.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 06:24 AM
04-08-2008 06:24 AM
Re: Will there be any data loss while increasing a Filesys size...?
Already Olympics have answered your question so nothing to add more. Just wanna give you list of command you may ask afterwards, in advance!
Regular method:
#umount
#fuser -ku
#lvextend -L
size is increased size in MB
#extendfs -F vxfs /dev/vg??/rlvol?
Assuming FS is vxfs type.
#mount /dev/vg??/lvol?
Online JFS:
#swlist -l product| grep -i jfs
#fsadm -b
As already mentioned having backup in hand before you play around in LVM is good practice.
-=ShRi=-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2008 06:38 AM
04-08-2008 06:38 AM
Re: Will there be any data loss while increasing a Filesys size...?
Thanks ... Thanks for all for giving good info.
I dont have online JFS ... of course
I followed ur steps and could resolve the problem.
Thanks again to all...