- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- redhat as4 install psp
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
08-03-2006 03:21 PM
08-03-2006 03:21 PM
redhat as4 install psp
psp: 7.4 or 7.5
/Tmp has 10gb,
install psp appear /tmp mistake.
If /Tmp is divided into 15gb can be installed,
why
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2006 06:39 PM
08-03-2006 06:39 PM
Re: redhat as4 install psp
Apparently /Tmp needs 15 GB for the install of psp. As to why, it may be due to an environment variable set by you or the install script. Read the install script for more on that.
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
08-05-2006 12:37 PM
08-05-2006 12:37 PM
Re: redhat as4 install psp
This is inagequate disk space available in '/tmp 'to execute the hp------
If it is normal to place the '/tmp' on the ' / '
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2006 08:43 AM
08-06-2006 08:43 AM
Re: redhat as4 install psp
Looks like a bug in the installation script.
Excerpts from install752.sh :
...
SPACE_REQD=70000
...
...
if [ "$IsItRHEL4" = "true" -o "$IsItRHEL4_64" = "true" ]
then
SPACE_AVAIL=`df /tmp | awk '{if(NR > 1) print $3}'`
else
SPACE_AVAIL=`df /tmp | awk '{if(NR > 1) print $4}'`
fi
if [ $SPACE_AVAIL -ge $SPACE_REQD ]
then
...
...
else
cleanup "\n\nThere is inadequate disk space available in '/tmp' to execute\nthe HP ProLiant Linux Deployment Utility.\n Exiting...\n"
exit 1
fi
...
...
As you can see, the output from "df /tmp" is interpreted in different manners, depending of the RHEL binary architecture (32 or 64 bits).
On my IA32 (SuSE), filesystem available space is given by field N°4, therefore "...print $4..." is the right one.
Good lcuk.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2006 12:53 AM
08-07-2006 12:53 AM
Re: redhat as4 install psp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2006 03:42 PM
08-07-2006 03:42 PM
Re: redhat as4 install psp
It has space of 10 GB.
thanks