UVFS in Cent OS


 
Thread Tools Search this Thread
Operating Systems Linux UVFS in Cent OS
# 1  
Old 06-22-2010
UVFS in Cent OS

Hi,

Trying to install Interwoven Teamsite in CentOs 5.4. Found issue in the first step while installing the uvfs .


Code:
[root@raj uvfs_2.0.3]# gmake
/usr/bin/gcc -g -O3 -Wall   -I.   -c -o uvfs_signal.o uvfs_signal.cc
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
gmake: *** [uvfs_signal.o] Error 1
[root@raj uvfs_2.0.3]#

My gcc is updated .
Need some help.

Last edited by pludi; 06-22-2010 at 08:28 AM.. Reason: code tags, please...
# 2  
Old 06-22-2010
Try using g++
Code:
g++ <c++ source file>

Also this error can be caused by differing versions of gcc and g++. Check using
Code:
gcc --version 
g++ --version

# 3  
Old 06-23-2010
I tried to update

Code:
[root@raj /]# yum install gcc-c++
[root@raj /]# yum install gcc

Moderator's Comments:
Mod Comment CODE tags please, ty

Last edited by pludi; 06-23-2010 at 04:49 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

Add persistent route in cent os 6.5

Hi , I have cent os 6.5 and am trying to make few routes permanent for bond: i have added two routes using below two commands : /sbin/route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.59.160.128 /sbin/route add -net 0.0.0.0 netmask 0.0.0.0 gw 49.44.52.90 post which route command output is... (5 Replies)
Discussion started by: omkar.jadhav
5 Replies

2. UNIX for Advanced & Expert Users

Disable rm -rf * or rm -rf / in Cent OS

Can some one suggest me the way to disable " rm -rf * " or " rm -rf / " command execution permanently from the server. Any suggestion will be very much helpful . (18 Replies)
Discussion started by: shiek.kaleem
18 Replies

3. Red Hat

How to Find all the SSL certs on a give host Cent OS

Hi I am trying to find all the ssl certs installed/located on cent os Host , Please help . (1 Reply)
Discussion started by: smartguyz2012
1 Replies

4. Red Hat

AD Intergration with Cent OS 6

Hello, I am integration AD authentication to Cent OS 6 servers. I am running to this error when I tried to join with AD server. error message : # net ads join -U 504783 Host is not configured as a member server. Invalid configuration. Exiting.... Failed to join domain: This... (0 Replies)
Discussion started by: bobby320
0 Replies

5. Red Hat

Could not install UVFS 2.0.3 on Redhat

Hi all, I am trying to install UVFS 2.0.3 in redhat 5.4 64bit.. This is required by teamsite 6.7.1.. When I run gmake, it gives me error /usr/bin/gcc -g -O3 -Wall -I. -c -o uvfs_signal.o uvfs_signal.cc gcc: error trying to exec 'cc1plus': execvp: No such file or directory gmake: * Error... (0 Replies)
Discussion started by: Makri
0 Replies

6. Red Hat

Installation of Web Logic9.2 on Cent OS5

Hi, Trying to install web logic 9.2 on Cent OS in the Graphical mode. After accepting the license agreement the "Complete" installation is selected.The path for installing the components is mentioned and when clicked on "Next" it hangs and is not proceeding further. Any suggestion or... (0 Replies)
Discussion started by: rajp_8007
0 Replies

7. Linux

how to make a Cent OS package.

I am using Cent OS 5.1. It has a command "yum" to install or update new packeges from a mirror or repository. i am doing installation and configuration of Sun directory server and opensso. i have made a shell script to install and configure both. but now the need is to create a Cent OS packege,... (1 Reply)
Discussion started by: toanilsharma1
1 Replies

8. Shell Programming and Scripting

Chek if a file exists in Ubuntu and Cent OS using shell script

I have tried few examples in the internet but all of them are different and none worked. I need to check if a file exists in a directory if it does not then exit . here is what I have for now $filename ="/usr/local/net/var/lib/directoryservice/sync.disable" if ; then echo "The file exists"... (2 Replies)
Discussion started by: m_kk
2 Replies
Login or Register to Ask a Question