Sorry that should be ">="
I don't know if there's a built-in way to disable logins in AIX, but there are some ideas here:
http://www.experts-exchang
Main Topics
Browse All TopicsI ran df and have one logical volume getting full.
I have to browse around the "usual suspects" to delete large temp files that may be part of the problem.
Is there a way to use the find command to search for files with a size GREATER than a specified value?
(The man pages only show how to select fiels of a specific size.)
By the way, on my older version of AIX, there was a way to prevent more users from logging on
Add a file named nologon to the /etc directory. You could put a message in the no file and users attempting to logon would see the text message you entered in the file (i.e. System down for maint. Please try back later)
In 4.3 that method doesn't work. Is there a way to do that?
(sorry for sneaking 2 questions in one entry. My main question is the find problem)
Thanks,
Chuck
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry that should be ">="
I don't know if there's a built-in way to disable logins in AIX, but there are some ideas here:
http://www.experts-exchang
Business Accounts
Answer for Membership
by: tfewsterPosted on 2004-06-11 at 13:17:08ID: 11292311
find . -size +1000 (Files > 1000 512-byte blocks) or -size 1000000c (Files > 1000000 bytes)