- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: extend /temp directory sucess but bdf no diff
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
06-18-2006 06:54 PM
06-18-2006 06:54 PM
I run lvextend -L 2000 /dev/vg00/lvol4
Then go to lvdisplay -v /dev/vg00/lvol4
the lv size(MB) is 2000
but when i bdf the space available still 200M
Pls help
thanks
fauziah
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 07:12 PM
06-18-2006 07:12 PM
Re: extend /temp directory sucess but bdf no diff
umount /temp
extends -F vxfs /dev/vg00/rlol4
check if online JFS is available
swlist | grep -i online
if onlineJFS is there u can do it by fsadm
fsadm -F vxfs -b newsize /temp
Cheers,
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 07:14 PM
06-18-2006 07:14 PM
Re: extend /temp directory sucess but bdf no diff
umount /temp
extends -F vxfs /dev/vg00/rlol4
check if online JFS is available
swlist | grep -i online
if onlineJFS is there u can do it by fsadm
fsadm -F vxfs -b 2147483648 /temp
man fsadm
Cheers,
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 07:19 PM
06-18-2006 07:19 PM
Solutionyou need to extend the filesystem standing on the logical volume:
umount /temp
(or /tmp?)
extendfs -F vxfs /dev/vg00/rlvol4
mount /temp
If you have OnLineJFS you can do that without umount/mount:
fsadm -F vxfs -b 200M /temp
HTH.
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 07:34 PM
06-18-2006 07:34 PM
Re: extend /temp directory sucess but bdf no diff
Another thing do I need to go to single user mode?
fauziah
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2006 10:20 PM
06-18-2006 10:20 PM
Re: extend /temp directory sucess but bdf no diff
shutdown -r 0
then carefully watch the reboot steps from the console. When the messages indicate you can interrupt the boot process within 10 seconds, press the Enter key on the console keyboard. Then say yes to booting from the primary disk and yes to interact with the boot loader. At the prompt, type the command:
hpux -is
and it will bootup to single user mode. Just type the command:
extendfs /dev/vg00/rlvol4
then run the commands:
mount /usr
mount /tmp
bdf /tmp
and you'll see the new size. The reason that lvextend does not complete the task is that LVM commands change the size of the disk but have nothing to do with filesystems.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2006 01:43 PM
06-19-2006 01:43 PM