In an effort to prevent getting many minutes into an installation only to have a CD read fail (I did verify the CD's first), I did a minimal install. Can I use the minimal install to add the necessay packages for a HTTP server and graphical interface?
Todd
On Mon, 15 Aug 2005, Todd Cary wrote:
In an effort to prevent getting many minutes into an installation only to have a CD read fail (I did verify the CD's first), I did a minimal install. Can I use the minimal install to add the necessay packages for a HTTP server and graphical interface?
Todd
Yep. Try yum install httpd kdebaseo
------------------------------------------------------------------------ Jim Wildman, CISSP, RHCE jim@rossberry.com http://www.rossberry.com "Society in every state is a blessing, but Government, even in its best state, is a necessary evil; in its worst state, an intolerable one." Thomas Paine
On Mon, 15 Aug 2005, Jim Wildman wrote:
Yep. Try yum install httpd kdebaseo
Typo... yum install httpd kdebase
------------------------------------------------------------------------ Jim Wildman, CISSP, RHCE jim@rossberry.com http://www.rossberry.com "Society in every state is a blessing, but Government, even in its best state, is a necessary evil; in its worst state, an intolerable one." Thomas Paine
On 15/08/05, Todd Cary todd@aristesoftware.com wrote:
In an effort to prevent getting many minutes into an installation only to have a CD read fail (I did verify the CD's first), I did a minimal install. Can I use the minimal install to add the necessay packages for a HTTP server and graphical interface?
Yep.
[wmcdonald@willspc ~]$ yum grouplist Setting up Group Process Setting up Repos Installed Groups: Administration Tools Compatibility Arch Support DNS Name Server Editors FTP Server Graphics KDE (K Desktop Environment) Mail Server MySQL Database Office/Productivity Printing Support Server Configuration Tools Text-based Internet X Window System Available Groups: Authoring and Publishing Compatibility Arch Development Support Development Tools Engineering and Scientific GNOME Desktop Environment GNOME Software Development Games and Entertainment Graphical Internet KDE Software Development Legacy Network Server Legacy Software Development Network Servers News Server PostgreSQL Database Sound and Video System Tools Web Server Windows File Server X Software Development Done
Then you can do a group install of whichever of those you'd like...
# yum groupinstall "Web Server"
[snip]
Dependencies Resolved Transaction Listing: Install: crypto-utils.i386 0:2.1-4 - archive-whitebox-base Install: distcache.i386 0:1.4.5-6 - archive-whitebox-base Install: httpd-manual.i386 0:2.0.52-9.ent.WB1 - archive-whitebox-base Install: mod_perl.i386 0:1.99_16-4 - archive-whitebox-base Install: mod_python.i386 0:3.1.3-5.1 - archive-whitebox-base Install: mod_ssl.i386 1:2.0.52-9.ent.WB1 - archive-whitebox-base Install: php-ldap.i386 0:4.3.9-3.6 - archive-whitebox-updates Install: squid.i386 7:2.5.STABLE6-3.4E.5 - archive-whitebox-base Install: system-config-httpd.noarch 5:1.3.1-1 - archive-whitebox-base Install: tux.i386 0:3.2.18-2 - archive-whitebox-base Install: webalizer.i386 0:2.01_10-25 - archive-whitebox-base Update: rsync.i386 0:2.6.6-1.2.el4.rf - archive-whitebox-dag
Performing the following to resolve dependencies: Install: gd.i386 0:2.0.28-4 - archive-whitebox-base Install: newt-perl.i386 0:1.08-7 - archive-whitebox-base Total download size: 5.9 M
Repeat for your graphical environment of choice.
Will.
Many thanks to all!
Is "man yum" the best way to "learn" about the suggestions? Or is there another source?
Since I have the rpm's on CD's, is there a way to set up a list as suggested, but use the local rpm's?
Todd
Will McDonald wrote:
On 15/08/05, Todd Cary todd@aristesoftware.com wrote:
In an effort to prevent getting many minutes into an installation only to have a CD read fail (I did verify the CD's first), I did a minimal install. Can I use the minimal install to add the necessay packages for a HTTP server and graphical interface?
Yep.
[wmcdonald@willspc ~]$ yum grouplist Setting up Group Process Setting up Repos Installed Groups: Administration Tools Compatibility Arch Support DNS Name Server Editors FTP Server Graphics KDE (K Desktop Environment) Mail Server MySQL Database Office/Productivity Printing Support Server Configuration Tools Text-based Internet X Window System Available Groups: Authoring and Publishing Compatibility Arch Development Support Development Tools Engineering and Scientific GNOME Desktop Environment GNOME Software Development Games and Entertainment Graphical Internet KDE Software Development Legacy Network Server Legacy Software Development Network Servers News Server PostgreSQL Database Sound and Video System Tools Web Server Windows File Server X Software Development Done
Then you can do a group install of whichever of those you'd like...
# yum groupinstall "Web Server"
[snip]
Dependencies Resolved Transaction Listing: Install: crypto-utils.i386 0:2.1-4 - archive-whitebox-base Install: distcache.i386 0:1.4.5-6 - archive-whitebox-base Install: httpd-manual.i386 0:2.0.52-9.ent.WB1 - archive-whitebox-base Install: mod_perl.i386 0:1.99_16-4 - archive-whitebox-base Install: mod_python.i386 0:3.1.3-5.1 - archive-whitebox-base Install: mod_ssl.i386 1:2.0.52-9.ent.WB1 - archive-whitebox-base Install: php-ldap.i386 0:4.3.9-3.6 - archive-whitebox-updates Install: squid.i386 7:2.5.STABLE6-3.4E.5 - archive-whitebox-base Install: system-config-httpd.noarch 5:1.3.1-1 - archive-whitebox-base Install: tux.i386 0:3.2.18-2 - archive-whitebox-base Install: webalizer.i386 0:2.01_10-25 - archive-whitebox-base Update: rsync.i386 0:2.6.6-1.2.el4.rf - archive-whitebox-dag
Performing the following to resolve dependencies: Install: gd.i386 0:2.0.28-4 - archive-whitebox-base Install: newt-perl.i386 0:1.08-7 - archive-whitebox-base Total download size: 5.9 M
Repeat for your graphical environment of choice.
Will. _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Mon, 2005-08-15 at 09:15 -0700, Todd Cary wrote:
Is "man yum" the best way to "learn" about the suggestions? Or is there another source?
There's a couple. Here's one:
http://fedora.ivazquez.net/content/view/26/30/
Since I have the rpm's on CD's, is there a way to set up a list as suggested, but use the local rpm's?
Copy the packages to a local dir and run yum-arch (C3) or createrepo (C4) on the dir. Then modify /etc/yum.conf (C3) or /etc/yum.repos.d/*.repo (C4) to point to the dir. Note that yum *does* recognize the file: protocol (e.g., file:///some/path) so you don't need a web or FTP server.
Many thanks!
Currently I am downloading the "GNOME Desktop Environment", so once that is done, I'll try your suggestion.
By the way, I have forgotten where/how to modify the boot process so that it brings up GNOME instead of the text mode.
Todd
Ignacio Vazquez-Abrams wrote:
On Mon, 2005-08-15 at 09:15 -0700, Todd Cary wrote:
Is "man yum" the best way to "learn" about the suggestions? Or is there another source?
There's a couple. Here's one:
http://fedora.ivazquez.net/content/view/26/30/
Since I have the rpm's on CD's, is there a way to set up a list as suggested, but use the local rpm's?
Copy the packages to a local dir and run yum-arch (C3) or createrepo (C4) on the dir. Then modify /etc/yum.conf (C3) or /etc/yum.repos.d/*.repo (C4) to point to the dir. Note that yum *does* recognize the file: protocol (e.g., file:///some/path) so you don't need a web or FTP server.
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Mon, 2005-08-15 at 13:28 -0700, Todd Cary wrote:
By the way, I have forgotten where/how to modify the boot process so that it brings up GNOME instead of the text mode.
/etc/inittab, id:, 5
By the way, I see "kickstart" referred to. Is it possible to put a "kickstart" list in the system and have a pre-set list of rpm's loaded, or does that assume that I have checked all dependencies...something tht yum does for me.
Todd
Ignacio Vazquez-Abrams wrote:
On Mon, 2005-08-15 at 09:15 -0700, Todd Cary wrote:
Is "man yum" the best way to "learn" about the suggestions? Or is there another source?
There's a couple. Here's one:
http://fedora.ivazquez.net/content/view/26/30/
Since I have the rpm's on CD's, is there a way to set up a list as suggested, but use the local rpm's?
Copy the packages to a local dir and run yum-arch (C3) or createrepo (C4) on the dir. Then modify /etc/yum.conf (C3) or /etc/yum.repos.d/*.repo (C4) to point to the dir. Note that yum *does* recognize the file: protocol (e.g., file:///some/path) so you don't need a web or FTP server.
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Mon, 2005-08-15 at 13:32 -0700, Todd Cary wrote:
By the way, I see "kickstart" referred to. Is it possible to put a "kickstart" list in the system and have a pre-set list of rpm's loaded, or does that assume that I have checked all dependencies...something tht yum does for me.
http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/sysadmin-guide/c...
Anaconda will resolve all deps for you.