- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- reduce / FS
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-11-2008 09:43 AM
11-11-2008 09:43 AM
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 1540096 327384 1203296 21% /
I need to know :
1. Why did the system says / has to be 1152MB when the actual usage was only 372MB
2. Is there any way to reduce the / partition from 1500MB to 1000MB now ??
Appreciate any leads. Thanks....
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 09:48 AM
11-11-2008 09:48 AM
SolutionMost likely the system was planning for future needs, so given that resizing the / FS is not easy ( well it´s easy :-) ) then it calculated possible future needs.
Now you can make it smaller if you want to, just make a make_tape_recovery, boot from it, enter into interactive mode and resize the root file system to something smaller.
Regards,
Jaime
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 09:54 AM
11-11-2008 09:54 AM
Re: reduce / FS
You don't want a root FS thats at over 90% full do you? Also one day you might want to upgrade this OS to 11iv3, so assigning plenty of space to the filesystems is always a sensible idea. Diskspace is cheap - why do you care about 500MB?
>> 2. Is there any way to reduce the / partition from 1500MB to 1000MB now ??
If you really want to... I guess this would work - but I'd advise you to take an Ignite backup first:
fsadm -F vxfs -b 1024000 /
lvreduce -L 1000 dev/vg00/lvol3
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 10:14 AM
11-11-2008 10:14 AM
Re: reduce / FS
# fsadm -F vxfs -E -e -d -E /
and after that reduce:
# fsadm -F vxfs -b 1024M /
# lvreduce -L 1024M /dev/vg00/lvol3
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 10:40 AM
11-11-2008 10:40 AM
Re: reduce / FS
If you have Online JFS (I think you do), you can us fsadm to reduce the file system hot without downtime or umount.
This is fairly straightforward and is well documented in the man page.
Its fairly i/o intensive, and I always back up the data before doing it.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 10:50 AM
11-11-2008 10:50 AM
Re: reduce / FS
after reducing the file system, lvreduce must be run to get any disk space back.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 11:54 AM
11-11-2008 11:54 AM
Re: reduce / FS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 08:50 PM
11-11-2008 08:50 PM
Re: reduce / FS
Thanks alot for your solution,
I was able to resize the / FS without having to reinstall the OS,
YOUR'E THE BEST !!
Thanks to everyone else too, who poured some ideas