- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: lif files.
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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
01-22-2004 05:37 AM
01-22-2004 05:37 AM
I have a huge file under /dev areas.
Its a lif files. I have no idea what it is for
but the system is out of space.
Is this file important for the system to run.
Can I get rit of it to save some space.
I'm running Hp-UX 10.x
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 05:42 AM
01-22-2004 05:42 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 05:45 AM
01-22-2004 05:45 AM
Re: lif files.
find /dev -type f
returns anything, it should be removed. The only files in /dev should be device files, directory files and perhaps some symbolic links.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 05:57 AM
01-22-2004 05:57 AM
Re: lif files.
/: write failed, file system is full
-rw-rw-rw- 1 root sys 906362880 Jan 9 12:38 nul
test_stn:/dev$ file nul
/: write failed, file system is full
nul: lif file
test_stn:/dev$ lifls nul
/: write failed, file system is full
FS SWAP ISL AUTO HPUX
PAD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 06:02 AM
01-22-2004 06:02 AM
Re: lif files.
#1) Find out if there is a process writing to "/dev/nul" using ps:
ps -ef | grep null
If so, kill it.
#2) remove the file, someone fat fingered it and typed in : /dev/nul instead of /dev/null.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 06:04 AM
01-22-2004 06:04 AM
Re: lif files.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 06:05 AM
01-22-2004 06:05 AM
Re: lif files.
I suspect someone typo'd a mkboot command such as
mkboot -l (-b, -a, etc)
to a nonexistent device which caused the write into the /dev directory. We frequently see this symptom when someone typos the tape device /dev/rmt/0mn - usually by using O/o instead of 0 (zero)
Remove the offending file to free / space back up. You can remove the "nul" file but DO NOT remove "null or "nuls".
Also look down in /dev/rdsk & /dev/dsk for a "file" that shouldn't be there.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 06:09 AM
01-22-2004 06:09 AM
Re: lif files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2004 03:48 AM
01-23-2004 03:48 AM
Re: lif files.
ln /dev/null /dev/nul
keeps my fingers honest...
- Chuck