- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fsadm and lvreduce
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
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
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-07-2002 05:47 AM
тАО10-07-2002 05:47 AM
I have reduced a file system with this command:
# lvreduce -L 8192 /dev/vg01/lv_u01
# lvextend -L 10880 /dev/vg01/lv_oracle
# fsadm -b 10880000 /app/oracle
But, before the lvreduce I forget the fsadm and now I've 2 different size of filesystem.
How to solve it ?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2002 06:04 AM
тАО10-07-2002 06:04 AM
Re: fsadm and lvreduce
When you reduced /dev/vg01/lv_u01, did you have anything on the filesystem worth keeping?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2002 06:04 AM
тАО10-07-2002 06:04 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2002 06:06 AM
тАО10-07-2002 06:06 AM
Re: fsadm and lvreduce
So your freshly extented /app/oracle on /dev/vg01/lv_oracle now uses physical extents that were fomerly assigned to /dev/vg01/lv_u01?
In this case, to exclude any possible curruption, I would recommend to recreate the filesystem in /dev/vg01/lv_u01 using newfs. You may try to backup as much data as possible from it before...
Regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2002 06:22 AM
тАО10-07-2002 06:22 AM
Re: fsadm and lvreduce
In addition to the advice already received, remember that when using 'fsadm -b' to resize a filesystem, the value of a 1K block is 1024, not 1000 as suggested by your posting.
Thus, instead of:
# lvextend -L 10880 /dev/vg01/lv_oracle
# fsadm -b 10880000 /app/oracle
...you should have:
# lvextend -L 10880 /dev/vg01/lv_oracle
# fsadm -b 11141120 /app/oracle
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-07-2002 07:41 AM
тАО10-07-2002 07:41 AM
Re: fsadm and lvreduce
May be, now, with newfs of lv_u01 and oracle export is possibile to running up the fs.
Thanks to all.