- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fsadm steps.
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
11-23-2008 06:17 PM
11-23-2008 06:17 PM
let say ...
/dev/vg00/lvol10 20971520 18892147 1949460 91% /appl
1469(Free PE)*16(PE Size) = 23504(Free space in vg00)
And I want to increase another 1000MB 'online'...
# lvextend -L 10240 /dev/vg00/lvol10 (do I realy need to run this command???)
# fsadm -F vxfs -b 1000M /appl
Please help & verify.
ps:.wuth online JFS installed.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2008 06:24 PM
11-23-2008 06:24 PM
SolutionYour LV is currently at 20,971,520 KB, or 20,480 MB. If you want to extend to 21,480 MB, then you must do the following:
# lvextend -L 21480 /dev/vg00/lvol10
(The size here is the size you want the LV to be, NOT how much you want to extend it by. You want it to be 21480 MB, so that is the value you use.)
# fsadm -b 21480m /appl
(Again, you must put the TOTAL size you want the filesystem to be.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2008 07:09 PM
11-23-2008 07:09 PM
Re: fsadm steps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2008 07:52 PM
11-23-2008 07:52 PM
Re: fsadm steps.
First you have to extend your lv with new size (old size + add on size) then again you have to give fsadm command, if you have Online JFS then you can extend online other wise you have to umount the file system.
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2008 09:04 PM
11-23-2008 09:04 PM
Re: fsadm steps.
# lvextend -L 10240 /dev/vg00/lvol10 (do I realy need to run this command???)
(Offcourse , our intention to increase the File system size in your case, by using "lvextend" & followed by "fsadm"(generic) - a file system administration command to take effect of the changes (or) resizing the File system
Please help & verify.
ps:.wuth online JFS installed.
swlist -l product | grep -i jfs
JFS B.11.11 The Base VxFS File System
OnlineJFS B.11.11 Online features of the VxFS File System
(ONLINE - JFS ) very usefull in avoiding downtime , for example
"your database" mount point reached the Threash-hold you d'not aford for downtime of the database , If ONLINE JFS Installed you can resize the File system size with out umount mounting, Usually Mission Cirtical Support system has this facility,
Thanks,
Johnson