- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File System Space...
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
02-02-2004 06:04 AM
02-02-2004 06:04 AM
lvextend -L 76 /dev/vg00/lvol4
then I do:
fsadm -F vxfs -b 77824 /home.
It comes back with the following error message:
vxfs fsadm: /dev/vg00/rlvol4 is currently 53248 sectors - size will be increased
vxfs fsadm: attempt to resize /dev/vg00/rlvol4 failed with errno 28
Also, I tried to remove some really large files from the file system. It looks like it removed them but there is still no space left. When I do a bdf I get the following:
/dev/vg00/lvol4 53248 53248 0 100% /home
There is an generous reward for anyone who can help me figure out the problem:)
Thanks!
-Hazem
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:09 AM
02-02-2004 06:09 AM
Solutionfuser -cu /home
to display the proceses
caution:
fuser -cuk /home
to kill all processes on the /home filesystem.
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
02-02-2004 06:09 AM
02-02-2004 06:09 AM
Re: File System Space...
You will need to have some free space in the filesystem to use onlineJFS to extend the filesystem online.
"Deleting largefiles" in /home should have freed up enough space for the fsadm to work. Looks like you deleted the files that are still open by the procesess.
So, I would suggest you use lsof to find out the processes that have the these files opened and kill those processes. Or detele the files that are not opened by any of the processes.
Once you get a little space freed, then 'fsadm' should work.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:11 AM
02-02-2004 06:11 AM
Re: File System Space...
Use lsof to find out which process, and once that process dies, the space will be reallocated again, and you can then pursue with your fsadm command.
The problem with fsadm is it need a little bit of space to work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:22 AM
02-02-2004 06:22 AM
Re: File System Space...
-Hazem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:26 AM
02-02-2004 06:26 AM
Re: File System Space...
You will need to use 'lsof' to really get the picture. Search the forums to know from where to get the lsof installed.
lsof /home
will show all the processes and their opened files.
Try deleting|moving some more files to get atleast your fsadm working.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:28 AM
02-02-2004 06:28 AM
Re: File System Space...
-Hazem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:33 AM
02-02-2004 06:33 AM
Re: File System Space...
That was because those files were opened by processes. As I said, you will get a good picture if you try 'lsof'. It's a must to have tool on the system along with 'tusc'.
How much free space did you get?. Is it around 75 MB which is you added just now?. If so, then you still have those largefiles opened.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 06:40 AM
02-02-2004 06:40 AM
Re: File System Space...
tusc is availble somewhere at http://software.hp.com or perhpas the ftp site.
Installing lsof generates an error but the product is usable after install. The error is fixed by suid on the lsof binary and reinstalling.
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
05-07-2004 03:14 PM
05-07-2004 03:14 PM
Re: File System Space...
find -name /home core
*.gz
*.tar
cd /home
du -sk * | sort -nr | head
finds top offending users :).