Sponsored Content
Operating Systems Linux Red Hat Problem installing PSP on rhel 5.2 64 Post 302601717 by pabloli150 on Friday 24th of February 2012 08:53:45 AM
Old 02-24-2012
Problem installing PSP on rhel 5.2 64

hi,

i have a problem when i try to install Proliant support pack into a server with rhel 5.2

Code:
sv556:#/tmp/psp# ./hpsum -silent
./hpsum: error while loading shared libraries: libfreetype.so.6: cannot open shared object file: No such file or directory

i have already installed library freetype.
Code:
uname -a
Linux sv556 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:15 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux

Code:
sv556:#/tmp/psp# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.2 (Tikanga

Code:
sv556:#/tmp/psp# cat /proc/cpuinfo
processor       : 0
vendor_id       : AuthenticAMD
cpu family      : 15
model           : 33
model name      : AMD Opteron(tm) Processor 275
stepping        : 2


could anybody give any clue to solve this???

Last edited by pabloli150; 02-24-2012 at 10:02 AM..
 

10 More Discussions You Might Find Interesting

1. Red Hat

Installing Updates on RHEL 3 & 4

Is there another way to install updates on RHEL besides using the up2date utility? I have some systems that are not accessible to the internet. So, when I look for the updates that are supposed to be for my system, i dont even know where to go to download them? it just keeps bringing me to... (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

2. Red Hat

Bug hits while installing RHEL 5.5

I have one R710 Dell Box, when i try to install the RHEL on the system the installation stops with following error "Assertion (heads < 256) at disk_dos.c:486 in function probe_partition_for_geom() failed." I 'm unable to ignore/cancel the same and have hard boot the server. ... (0 Replies)
Discussion started by: fugitive
0 Replies

3. Red Hat

problem installing rhel 6

I have dexx xps 14.I was installing rhel6.But the installation hanged at following step initializing hardware detection................. installion didnt go further (2 Replies)
Discussion started by: shamapraveen
2 Replies

4. Red Hat

Problem in installing wine on rhel 6-64bit

I have installled and configured wine on rhel 6 - 64bit system... When i run wine command i faced a problem : wine : could not exec wineserver and when i run wineserver command i got the following error : /usr/local/wine/bin/wineserver : /lib/ld-linux-x86-64.so.2 : bad ELF interpreter NO... (1 Reply)
Discussion started by: anuajay1988
1 Replies

5. Red Hat

Installing EBS 12.1.1 on RHEL 6.1 x86_64‏

i am in process to install R12.1.1 on RHEL 6.1. while installing pre-requisite on RHEL 6.1 i am facing following error : rpm -ivh xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm error: Failed dependencies: libX11.so.6 is needed by xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386 ... (3 Replies)
Discussion started by: rehantayyab82
3 Replies

6. Red Hat

Error throwing while installing vsftpd package in rhel 6. using rhel 6 dvd.

Hi all, Im studying rhcsa as of now, so yum installation and dependencies are messing me to not workit out. i have dual os, win 7 & rhel 6. i have tried this installation of vsftpd package with rhel 6 dvd in VM rhel 6 in win 7 as well as host rhel 6.still the same issue. below error... (6 Replies)
Discussion started by: redhatlbug
6 Replies

7. Red Hat

Installing RHEL over Windows 7 or 8

Hi, Sorry if this is an incorrect place for this question but I haven't been able to find any answers by searching the forums or on google. I am in the market for a new HP Z420 workstation and HP wants a lot more money for one with the HP Linux Installer kit vs. the exact same configuration in... (2 Replies)
Discussion started by: rhopson
2 Replies

8. Red Hat

Installing xwindow on RHEL (offline)

I need to install xwindow on my RHEL 7.2 server which is behind a firewall and no access to internet. If I run the below code, it will not able to install, as my server dont have internet connection. yum -y install xterm* xorg* xclock xauth Do you know, where can I get the required binaries... (2 Replies)
Discussion started by: karumudi7
2 Replies

9. UNIX for Beginners Questions & Answers

Installing tmux on RHEL 6.5

Hi, I am trying to install tmux on vm allocated to me in my company . i am very new to linux. I have the root access on it. Can someone please provide the exact steps to get it installed. I tried: 1. Using yum, i get the below message. # yum install tmux Loaded plugins: security... (6 Replies)
Discussion started by: kunwar
6 Replies

10. Shell Programming and Scripting

Error installing MySQL 8 on RHEL 7

My yum install command is failing. I first did yum clean all I even tried with localinstall. Below is the error output: yum install mysql-community-server*.rpm Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered with an... (8 Replies)
Discussion started by: mohtashims
8 Replies
priocntlset(2)							   System Calls 						    priocntlset(2)

NAME
priocntlset - generalized process scheduler control SYNOPSIS
#include <sys/types.h> #include <sys/procset.h> #include <sys/priocntl.h> #include <sys/rtpriocntl.h> #include <sys/tspriocntl.h> long priocntlset(procset_t *psp, int cmd, /* arg */ ...); DESCRIPTION
The priocntlset() function changes the scheduling properties of running processes. priocntlset() has the same functions as the priocntl() function, but a more general way of specifying the set of processes whose scheduling properties are to be changed. cmd specifies the function to be performed. arg is a pointer to a structure whose type depends on cmd. See priocntl(2) for the valid values of cmd and the corresponding arg structures. psp is a pointer to a procset structure, which priocntlset() uses to specify the set of processes whose scheduling properties are to be changed. The procset structure contains the following members: idop_t p_op; /* operator connecting left/right sets */ idtype_t p_lidtype; /* left set ID type */ id_t p_lid; /* left set ID */ idtype_t p_ridtype; /* right set ID type */ id_t p_rid; /* right set ID */ The p_lidtype and p_lid members specify the ID type and ID of one ("left") set of processes; the p_ridtype and p_rid members specify the ID type and ID of a second ("right") set of processes. ID types and IDs are specified just as for the priocntl() function. The p_op member specifies the operation to be performed on the two sets of processes to get the set of processes the function is to apply to. The valid values for p_op and the processes they specify are: POP_DIFF Set difference: processes in left set and not in right set. POP_AND Set intersection: processes in both left and right sets. POP_OR Set union: processes in either left or right sets or both. POP_XOR Set exclusive-or: processes in left or right set but not in both. The following macro, which is defined in <procset.h>, offers a convenient way to initialize a procset structure: #define setprocset(psp, op, ltype, lid, rtype, rid) (psp)->p_op = (op), (psp)->p_lidtype = (ltype), (psp)->p_lid = (lid), (psp)->p_ridtype = (rtype), (psp)->p_rid = (rid), RETURN VALUES
Unless otherwise noted above, priocntlset() returns 0 on success. Otherwise, it returns -1 and sets errno to indicate the error. ERRORS
The priocntlset() function will fail if: EAGAIN An attempt to change the class of a process failed because of insufficient resources other than memory (for example, class- specific kernel data structures). EFAULT One of the arguments points to an illegal address. EINVAL The argument cmd was invalid, an invalid or unconfigured class was specified, or one of the parameters specified was invalid. ENOMEM An attempt to change the class of a process failed because of insufficient memory. EPERM The {PRIV_PROC_PRIOCNTL} privilege is not asserted in the effective set of the calling LWP. The calling LWP does not have sufficient privileges to affect the target LWP. ERANGE The requested time quantum is out of range. ESRCH None of the specified processes exist. SEE ALSO
priocntl(1), priocntl(2) SunOS 5.10 1 Feb 2003 priocntlset(2)
All times are GMT -4. The time now is 12:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy