LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-02-2014, 05:03 PM   #1
fletchb
LQ Newbie
 
Registered: May 2014
Posts: 11

Rep: Reputation: Disabled
How to install GUI from disk for Centos 6.5


Hi,
The installer failed to install the GUI for a new 6.5 web server install. I don't yet have a network connection working so I need to load the gui from the DVD. With the old Redhat this used to be pretty easy to do but not sure about Centos. Any ideas? Thanks.
 
Old 05-02-2014, 05:16 PM   #2
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
You'll need to set up the DVD as a yum repository and then install using yum like normal:
http://fritshoogland.wordpress.com/2...m-based-linux/
(or any number of other online guides)
 
Old 05-02-2014, 05:32 PM   #3
fletchb
LQ Newbie
 
Registered: May 2014
Posts: 11

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by suicidaleggroll View Post
You'll need to set up the DVD as a yum repository and then install using yum like normal:
http://fritshoogland.wordpress.com/2...m-based-linux/
(or any number of other online guides)
Thanks. I will try to get the networking up and running and if that doesn't work will try the above..
 
Old 05-02-2014, 08:30 PM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,623

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
the SERVER install dose NOT install a gui
Gnome is not needed on a server that dose not have a screen attached

and really dose need a network connection , servers are web based

it would be easier to just reinstall the default DESKTOP install if that is what you really do want

the cent6 and RHEL6 installers on the dvd's are about the same
just slightly different graphics

but if you must
pop in the install dvd
and select "upgrade an existing install"
and select the default Desktop install
if there is a network connection there is an option to set that up in the installer on the dvd

Last edited by John VV; 05-02-2014 at 08:32 PM.
 
Old 05-03-2014, 11:55 AM   #5
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,135

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
The DVD lets you do a custom install. You can pick what you want, like the server stuff and a desktop. You have to be careful that you install everything, though: I seem to remember finding I'd got a GUI with no fonts, or something like that, once!
 
Old 05-03-2014, 12:31 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,623

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
the cent installer has some of the same issues that the older fedora installer had
if you start to pick and choose the programs to install things tend to break


using the default "server" or" desktop" install is recommended
then customize it AFTER the first boot and after you have set up the first non root user ,the time, your location, and so on.
 
Old 05-16-2014, 03:49 PM   #7
fletchb
LQ Newbie
 
Registered: May 2014
Posts: 11

Original Poster
Rep: Reputation: Disabled
Thanks all.

I did do a server install, but it still failed to add the GUI. I have not have time to try and go back and fix it. It may be easier just to format and start over.

But on another matter...our university is going to have a power failure this Sunday so I need to shutdown our web server. I can remotely log in during the night and shut it down that way ,but I would rather do it via cron or the like. Problem is I can
t seem to have any luck with cron -e. I just see control characters but it doesn't want to let me add a new entry or even exit the editor. Is there a better editor that will work? years ago I think I used pico..so I will give that a try. Just wondering what do you use?

Thanks
 
Old 05-16-2014, 07:47 PM   #8
btmiller
Senior Member
 
Registered: May 2004
Location: In the DC 'burbs
Distribution: Arch, Scientific Linux, Debian, Ubuntu
Posts: 4,290

Rep: Reputation: 378Reputation: 378Reputation: 378Reputation: 378
The "nano" command is a modern-day clone of pico. It should be enabled by default, and if not you should be able to find the package on your install disks. The default editor on CebntOS is vim, I believe, and if you plan to be a sysadmin you would be well-advuised to at least learn the basics. However, for most things you can use nano instead by doing something like:

Code:
export EDITOR=nano
crontab -e
You can add the export command into your shell start-up file to permanently set the EDITOR environment variable, which most programs that invoke a text editor will respect.

BTW, don't forget to remove the crontab entry once the power failure is over!
 
Old 05-28-2014, 04:47 PM   #9
fletchb
LQ Newbie
 
Registered: May 2014
Posts: 11

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by btmiller View Post
The "nano" command is a modern-day clone of pico. It should be enabled by default, and if not you should be able to find the package on your install disks. The default editor on CebntOS is vim, I believe, and if you plan to be a sysadmin you would be well-advuised to at least learn the basics. However, for most things you can use nano instead by doing something like:

Code:
export EDITOR=nano
crontab -e
You can add the export command into your shell start-up file to permanently set the EDITOR environment variable, which most programs that invoke a text editor will respect.

BTW, don't forget to remove the crontab entry once the power failure is over!
Thanks..that is a big help..and yes I did forget!
 
Old 05-29-2014, 05:08 AM   #10
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,349

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
Centos has a repo file for the DVD CentOS-Media.repo
Contents are
Code:
# CentOS-Media.repo
#
#  This repo can be used with mounted DVD media, verify the mount point for
#  CentOS-6.  You can use this repo and yum to install items directly off the
#  DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos too:
#  yum --enablerepo=c6-media [command]
#  
# or for ONLY the media repo, do this:
#
#  yum --disablerepo=\* --enablerepo=c6-media [command]
 
[c6-media]
name=CentOS-$releasever - Media
baseurl=file:///media/CentOS/
        file:///media/cdrom/
        file:///media/cdrecorder/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Just enable that ...

HTH
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to install a GUI on CentOS? ulkoma Linux - Newbie 8 03-20-2015 11:35 AM
[SOLVED] how to install gui to Centos 6.3 via SSH w/remote control beefydog Linux - Newbie 5 02-12-2013 11:53 AM
GUI for Centos 6.2 basic server install zahid Linux - Newbie 3 06-25-2012 07:49 PM
Trying to install a GUI & VNC on a CentOS 5.1 server cdn415 Linux - Software 2 08-17-2008 09:16 PM
Install GUI on Centos 4.4 ahusaizi Linux - Newbie 2 06-25-2008 08:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:38 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