- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vi question
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
05-29-2001 06:29 PM
05-29-2001 06:29 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 06:48 PM
05-29-2001 06:48 PM
Re: vi question
What is the size of the file under vi edit?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 06:59 PM
05-29-2001 06:59 PM
Re: vi question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2001 07:08 AM
05-30-2001 07:08 AM
SolutionRemember that the swap/cache/temp dir for vi is '/var/tmp'.
Resolution: Clean up /var/tmp, and make sure your disks are not so busy as to have no availability for writing. I have seen busy systems do this, because of a single disk being used for the OS, and most of the systems swap. If this is the case, then Oracle paging to system swap could be killing fs performance on the OS disk.
Best to look at glance, and see what it says! It will tell you if you have a disk bottleneck, and can help recommend solutions....
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2001 07:46 AM
05-30-2001 07:46 AM
Re: vi question
check for the size of the directories:
ls -ld /var /var/tmp /tmp
UN*X is reading and writing directories ALWAYS
at once/completely - hence, if one of those is
some MB in size, those will be read and written
every time - it does not matter how many
entries do exist in there. Check with
sar -a 1 100
while you start your "vi". If the column
"dblk/s" is getting to high, then that is the
reason! Go to sinlge-user mode, remove the
directory and re-create it (only way).
HTH,
Wodisch