LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > CentOS
User Name
Password
CentOS This forum is for the discussion of CentOS Linux. Note: This forum does not have any official participation.

Notices


Reply
  Search this Thread
Old 10-02-2014, 05:41 PM   #1
kupferman
LQ Newbie
 
Registered: Sep 2014
Posts: 4

Rep: Reputation: Disabled
yum install of gcc as pre-requisite for guestAdditions hangs


In following the directions for install of guestAdditions
yum install of gcc seams to hang in centOS under VirtualBox
 
Old 10-03-2014, 11:26 AM   #2
ilesterg
Member
 
Registered: Jul 2012
Location: München
Distribution: Debian, CentOS/RHEL
Posts: 587

Rep: Reputation: 72
What exactly happens when it 'hangs'? what's the last output of your command? What exactly is your command?
 
Old 10-03-2014, 01:14 PM   #3
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
and HOW!!! are you installing gcc?
the correct way is
Code:
su -
yum groupinstall "Development Tools"
 
Old 10-03-2014, 08:00 PM   #4
kupferman
LQ Newbie
 
Registered: Sep 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
I always get the same repeated message in yum.log when it tries to update glibc-common

Also whether you run yum install gcc or the install syntax you suggested, it always hangs in the
same place, i.e when updating glibc-common: Here is the repeated message verbatim form yum.log:

Gconf Error: Failed to contact configuration server; some possible causes are that you need
to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See
http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the
message bus security blocked the reply, the reply timeout expired, or the network connection was broken.)

Note: I've been googling for 3 days on this error message and have gotten no answers that solve the
problem. I downloaded the iso from SentOS. It automatically logs me in with the full GUI as
centoslive@livecd. By the way I havn't figured out how to login as root because it automatically logs me in with
(I guess) the username:livecd.

I'm wondering that this may be a problem and the configuration server doesn't know how to parse the machine
name@username properly.

So there it is.

Last edited by kupferman; 10-03-2014 at 08:04 PM.
 
Old 10-03-2014, 08:03 PM   #5
kupferman
LQ Newbie
 
Registered: Sep 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
I always get the same repeated message in yum.log when it tries to update glibc-common

Also whether you run yum install gcc or the install syntax you suggested, it always hangs in the
same place, i.e when updating glibc-common: Here is the repeated message verbatim form yum.log:

Gconf Error: Failed to contact configuration server; some possible causes are that you need
to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See
http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the
message bus security blocked the reply, the reply timeout expired, or the network connection was broken.)

Note: I've been googling for 3 days on this error message and have gotten no answers that solve the
problem. I downloaded the iso from SentOS. It automatically logs me in with the full GUI as
centoslive@livecd. By the way I havn't figured out how to login as root because it automatically logs me in with
(I guess) the username:livecd.

I'm wondering that this may be a problem and the configuration server doesn't know how to parse the machine
name@username properly.

So there it is.

P.S. I posted the same reply to Guru.

Last edited by kupferman; 10-03-2014 at 08:05 PM.
 
Old 10-03-2014, 08:51 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
well
AGAIN , how are you trying to install gcc ????

if you are trying to do this
-- IT WILL NOT WORK ---
"yum install gcc"
will NOT work well

That will NOT install ALL THE OTHER software that is NEEDED by gcc

install the development group


also
Quote:
Failed to contact configuration server
that is telling you you have no internet access

what is the output of this
Code:
ping google.com
it should be something like this
Code:
64 bytes from ord08s06-in-f8.1e100.net (74.125.225.40): icmp_seq=2 ttl=55 time=19.8 ms

Last edited by John VV; 10-03-2014 at 08:54 PM.
 
Old 10-03-2014, 11:47 PM   #7
kupferman
LQ Newbie
 
Registered: Sep 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by John VV View Post
well
AGAIN , how are you trying to install gcc ????

if you are trying to do this
-- IT WILL NOT WORK ---
"yum install gcc"
will NOT work well

That will NOT install ALL THE OTHER software that is NEEDED by gcc

install the development group


also

that is telling you you have no internet access

what is the output of this
Code:
ping google.com
it should be something like this
Code:
64 bytes from ord08s06-in-f8.1e100.net (74.125.225.40): icmp_seq=2 ttl=55 time=19.8 ms
if you read my post, I installed the development group and had the same problem as yum install gcc
because both hung has per my post for the same reason.
 
Old 10-03-2014, 11:49 PM   #8
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
can you ping google ?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Configuring srcdir & objdir for GCC as a pre-requisite for installing Apache Cerh Linux - Newbie 1 10-20-2010 12:54 PM
pre-requisite of traffic control Barq Linux - Networking 3 04-19-2009 09:35 AM
Pre-Requisite to Posting URLs to other sites... twfey LinuxQuestions.org Member Intro 1 10-20-2008 06:24 PM
Dual Boot Pre-requisite Question... GNewbie Linux - Newbie 4 01-13-2006 11:48 AM
Debian hangs at pre-install screen powersauce Debian 4 07-18-2004 06:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > CentOS

All times are GMT -5. The time now is 05:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration