Sponsored Content
Operating Systems HP-UX HP UX 10.20 E9000 System Full? Post 302920621 by vbe on Friday 10th of October 2014 01:04:06 PM
Old 10-10-2014
390MB of RAM isnt much... this system has a limit of 2GB... I should still have some RAM somewhere at home...
I think when you have time to spare we should go through slowly but keep in mind that years I havent touched one and my memory plays bad tricks lately

You would need to see if Ignite is installed:
Code:
 which makerecovery

Only I seen many systems with the soft but the soft was not in the PATH, you will find it in /opt :
Code:
 find / -name makerecovery -print

Then if someone can put some DDS in the drive to see if it works...

We need to know what are the mirror disks...

We can change the way the system uses its memory but for that I suppose /stand need to be bigger than its actual size (in /stand is there a vmunix.prev file ? ).
We need to see on what disk it boots and get a spare one in case ( they are getting rare and you will find mostly refurbished.
I gave away my lasts D class to CERN because they have a lot still running and need spares for another 6 months - 1 year, I learned by CERN you have to be carefull with the power supply, it has a special fan impossible to find on the market (but I have in my garage 2 D260 ...)
I think you had enough for today... Smilie
This User Gave Thanks to vbe For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

file system full

When I try to log in as root I get the following message realloccg /: file system full sendmail :NO Queue:low on space (have 0,SMTP-DAEMON needs 101 in /var/spool/mqueue) What should I do? (1 Reply)
Discussion started by: hopeless
1 Replies

2. UNIX for Advanced & Expert Users

Full File System

Hi All, There was a background process running on a Solaris 2.8 machine, and appeared to have filled all available disk-space. I done a killall, and upon re-booting found that the file system had filled up, and will not boot as normal as a result. For example, I'm getting /usr/adm/messages: No... (8 Replies)
Discussion started by: Breen
8 Replies

3. Solaris

File system full?

Hi, I just started working with UNIX on an old semi-fossilized Sun workstation which I use to process LOTS of images,however, I just started to get an error message that the file system is full and then my shell tool or/and text editor freeze up. Help? (8 Replies)
Discussion started by: Bend
8 Replies

4. Solaris

Full file system?

I read the sticky and thought of a script I use on a regular basis. Since unless you patch/upgrade the df command on solaris you have a very tought time teling how full the system truly is. Output looks like $ biggest.sh /tmp Filesystem kbytes used avail capacity Mounted... (0 Replies)
Discussion started by: meyerder
0 Replies

5. Solaris

file system full

I am receving following Error message in /var/adm/messages "NOTICE: alloc: /: file system full" Disk space usage is as beklow: df -k $ Filesystem kbytes used avail capacity Mounted on /dev/md/dsk/d10 76678257 56962561 18948914 76% / /proc ... (8 Replies)
Discussion started by: Asteroid
8 Replies

6. Solaris

full system backup

I have unix server with OS 5.8 ,,, I tried ufsdump 0ua -f /dev/rmt/0 / to perform full system backup on tape but I failed could any one give a procedure for full system backup on solaris machine using tapes??? (1 Reply)
Discussion started by: mm00123
1 Replies

7. Solaris

file system full

hello Even though I am not out of inodes or of space, the /var/adm/messages shows messages: file system full I am doing now fcsk -m (400G) and I am still waiting to see the fragmentation results (should I add another option to df to have a faster output?) Do you have any other hints... (6 Replies)
Discussion started by: melanie_pfefer
6 Replies

8. UNIX for Advanced & Expert Users

how to make a full system backup excluding data and restoring it to a new system

Hi, In order to have a sand box machine that I could use to test some system changes before going to production state, I'd like to duplicate a working system to a virtual one. Ideally, I'd like to manage to do it this way : - Make a full system backup excluding the user file system (this... (7 Replies)
Discussion started by: pagaille
7 Replies

9. Red Hat

File system full, but not really.

Hey all, What do you think mostly happened in the following situation? I have a Red Hat 5.5 server. Someone, somehow, managed to get two .nfs000.... type files that totaled over a terabyte in size. I removed them and thought things were back to normal. Then I started getting complains from... (2 Replies)
Discussion started by: geelsu
2 Replies
WWW(3)							     Library Functions Manual							    WWW(3)

NAME
WWW - World Wide Web Package SYNOPSIS
extract_description( FILE ) extract_meta( FILE, NAME ) hyperlink( LIST ) DESCRIPTION
This package provides a utility functions for the World Wide Web to extract descriptions of or meta information from files, and hyperlink text. SUBROUTINES
The following Perl subroutines are defined and available: extract_description( FILE ) Extracts a description from an HTML or plain text file given by the FILE name; FILE should be an absolute path. The first $descrip- tion::chars (default: 2048) characters are read. If the file ends in one of the extensions htm, html, or shtml, it is presumed to be an HTML file; if the file ends in txt, it is presumed to be a plain text file. Other extensions are not recognized and no description is returned for them. For HTML files, first, if a <META NAME="description" CONTENT="..."> or a <META NAME="DC.description" CONTENT="..."> (Dublin Core) element is found, then the words specified as the value of the CONTENT attribute is returned as the description. Otherwise, all HTML comments, text between <SCRIPT>, <STYLE>, and <TITLE> tags, and all other HTML tags are stripped. If <AREA ... ALT="..."> or <IMG ... ALT="..."> elements are found, then the words specified as the value of the ALT attributes are extracted. Finally, for either HTML or plain text files, at most $description::words (default: 50) are returned. extract_meta( FILE, NAME ) Extracts the value of the CONTENT attribute from a META element having the given NAME attribute from an HTML file given by the FILE name; FILE should be an absolute path. The file must end in one of the extensions htm, html, or shtml to be considered an HTML file. The first $description::chars (default: 2048) characters are read. The characters are cached between consecutive calls using the same filename. hyperlink( LIST ) Adds hyperlinks to strings: that is strings that contain substrings that are valid URLs (according to RFC 1630) have the appropriate HTML tags ``wrapped'' around them so that they will be selectable when displayed in a browser. The ftp, gopher, http, https, mailto, news, telnet, and wais URLs are recognized. Example: Read all about it at http://www.usatoday.com/ becomes: Read all about it at <A HREF="http://www.usatoday.com/">http://www.usatoday.com/</A> SEE ALSO
perl(1) Tim Berners-Lee. ``Universal Resource Identifiers in WWW,'' Request for Comments 1630, Network Working Group of the Internet Engineering Task Force, June 1994. Tim Berners-Lee, Larry Masinter, and Mark McCahill. ``Uniform Resource Locators (URL),'' Request for Comments 1738, Network Working Group, 1994. Dave Raggett, Arnaud Le Hors, and Ian Jacobs. ``Notes on helping search engines index your Web site,'' HTML 4.0 Specification, Appendix B: Performance, Implementation, and Design Notes, World Wide Web Consortium, April 1998. --. ``Objects, Images, and Applets: How to specify alternate text,'' HTML 4.0 Specification, S13.8, World Wide Web Consortium, April 1998. Dublin Core Directorate. ``The Dublin Core: A Simple Content Description Model for Electronic Resources.'' Larry Wall, et al. Programming Perl, 3rd ed., O'Reilly & Associates, Inc., Sebastopol, CA, 2000. AUTHOR
Paul J. Lucas <pauljlucas@mac.com> WWW
February 12, 2000 WWW(3)
All times are GMT -4. The time now is 12:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy