On Tue, 2007-09-04 at 23:32 +0100, Karanbir Singh wrote:
> Hi,
>
> Phil Schaffner wrote:
> > Karanbir provided driver disk images and indicated that kmod drivers
> > would be in CentOS-5 Extras, but apparently these never materialized.
> > The only src.rpm I could turn up was the last link above, and I did get
> > CentOS-5 x86_64 kmod-style drivers to build from that one. Found other
> > indications that these drivers MIGHT be in the standard 5.1 kernel.…
[View More]
>
> Ive been talking to and working with the guys at Areca to get the
> drivers sorted, they are also working with upstream to get the driver
> included in the upstream kernel, for now - use the dd images I pushed,
> that will do-the-right-thing, and follow weak-updates, so you dont need
> kmod's for them with the kernels for c5 ( so far ) - I have half a dozen
> 11xx and 12xx Areca cards in production, and I can tell you that they
> totally rock!
Please pardon the cross-posting to centos-users - in case others may be
interested.
Did a fresh install of CentOS-5 x86_64 on my server with Areca RAID (2
5TB RAID-5 arrays) with the OS on mirrored SCSI disks set up as software
RAID-1 using Karanbir's dd ISO image. Used custom install and mounted
the existing Areca RAID arrays as /data1 and /data2 (as they were for
CentOS-4 - originally set up by the vendor with RHEL-4). Install and
reboot went flawlessly, but after update to the latest kernel a reboot
did not find the driver for kernel-2.6.18-8.1.8.el5 and left me in
single-user mode. Copied /lib/modules/2.6.18-8.el5/updates/arcmsr.ko
created by the original installation to
/lib/modules/2.6.18-8.1.8.el5/weak-updates/arcmsr.ko
did "depmod -a" and "modprobe arcmsr" and the Areca devices then
mounted.
I'm a newbie to weak-updates so would appreciate it if anyone could
point out the "right way" [TM] to do this automagically when a new
kernel is installed. Perhaps my google-foo is off today, or I have not
exercised sufficient diligence to RTFM, but can't seem to find the
recipe.
Meanwhile, back at the ranch...
Wanted to try the dkms approach and the spec file below (based on
RPMforge dkms-r1000.spec) worked for me. Installing the resulting RPM
created /lib/modules/2.6.18-8.1.8.el5/extra/arcmsr.ko, made a soft link
to it as /lib/modules/2.6.18-8.el5/weak-updates/arcmsr.ko, and removed
/lib/modules/2.6.18-8.1.8.el5/weak-updates/arcmsr.ko
Should probably have figured out how to use the original ZIP archive
from the vendor
ftp://ftp.areca.com.tw/RaidCards/AP_Drivers/Linux/DRIVER/CentOS/CentOS-5.0/1.20.0X.13/arcmsr.redhat.1.20.0x.13.zip
in the spec, but instead cheated and created a .tgz archive from it to
stay closer to the r1000 spec file's approach:
$ tar ztvf arcmsr.redhat.1.20.0x.13.tgz
drwxrwxr-x prs/prs 0 2006-12-22 17:52:50 arcmsr.redhat.1.20.0x.13/
drwxrwxr-x prs/prs 0 2006-12-22 17:52:50 arcmsr.redhat.1.20.0x.13/arcmsr/
-rw-rw-r-- prs/prs 96956 2006-11-08 16:59:50 arcmsr.redhat.1.20.0x.13/arcmsr/arcmsr.c
-rw-rw-r-- prs/prs 377113 2006-11-08 16:59:00 arcmsr.redhat.1.20.0x.13/arcmsr/arcmsr.h
-rw-rw-r-- prs/prs 149 2005-07-21 19:10:00 arcmsr.redhat.1.20.0x.13/arcmsr/Makefile
Have yet to have a go at packaging the vendor's binary (CLI and HTTP)
files in an RPM (reference earlier nosrc.rpm discussions in this
thread), but did create a chkconfig-compatible script to set up the
httpd service after a manual install. See below.
I would hope Areca drivers might appear on RPMforge or CentOS Extras
some day soon. Comments appreciated.
Phil
------------------- dkms-arcmsr.spec ---------------------
# $Id$
# Authority: prs
# Dist: nodist
Summary: Driver for Areca RAID
Name: dkms-arcmsr
Version: 1.20.0x.13
Release: 1
License: GPL
Group: System Environment/Kernel
# Need to unzip driver archive and convert to tgz
URL: ftp://ftp.areca.com.tw/RaidCards/AP_Drivers/Linux/DRIVER/CentOS/CentOS-5.0
Source: arcmsr.redhat.%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildArch: noarch
Requires: gcc
Requires(post): dkms
Requires(preun): dkms
%description
Driver (Linux kernel module) for Areca RAID Controllers.
%prep
%setup -n arcmsr.redhat.%{version}
%build
%install
%{__rm} -rf %{buildroot}
%define dkms_name arcmsr
%define dkms_vers %{version}-%{release}
%define quiet -q
# Kernel module sources install for dkms
%{__mkdir_p} %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/
%{__cp} -a arcmsr/* %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/
# Configuration for dkms
%{__cat} > %{buildroot}%{_usrsrc}/%{dkms_name}-%{dkms_vers}/dkms.conf << 'EOF'
PACKAGE_NAME=%{dkms_name}
PACKAGE_VERSION=%{dkms_vers}
BUILT_MODULE_NAME[0]=%{dkms_name}
DEST_MODULE_LOCATION[0]=/weak_updates
AUTOINSTALL="YES"
EOF
%clean
%{__rm} -rf %{buildroot}
%post
# Add to DKMS registry
dkms add -m %{dkms_name} -v %{dkms_vers} %{?quiet} || :
# Rebuild and make available for the currenty running kernel
dkms build -m %{dkms_name} -v %{dkms_vers} %{?quiet} || :
dkms install -m %{dkms_name} -v %{dkms_vers} %{?quiet} --force || :
%preun
# Remove all versions from DKMS registry
dkms remove -m %{dkms_name} -v %{dkms_vers} %{?quiet} --all || :
%files
%defattr(-, root, root, 0755)
#%doc release_note.txt README
%{_usrsrc}/%{dkms_name}-%{dkms_vers}/
%changelog
* Wed Sep 12 2007 Phil Schaffner <philip.r.schaffner(a)nasa.gov> 1.20.0X.13
- Initial RPM release.
----------------- end dkms-arcmsr.spec -------------------
----------------------- areca-httpd ---------------------
#!/bin/sh
#
# areca-httpd: Starts the Areca daemon
#
# Author: Phil Schaffner <philip.r.schaffner(a)nasa.gov>
#
# chkconfig: 345 40 60
# description: Start the areca application which logs the current state
# of the Areca RAID 1170 controller card, and then polls
# for state changes.
#
# processname: areca-httpd
# config: Unknown
# Source function library.
. /etc/rc.d/init.d/functions
RETVAL=0
ARECA_BIN=/root/bin/archttp64
ARECA_PORT="888"
# See how we were called.
case "$1" in
start)
echo -n "Starting Areca RAID 1170 HTTP daemon: "
$ARECA_BIN $ARECA_PORT >&/tmp/ArecaHTTP.log &
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/areca-httpd || RETVAL=1
;;
stop)
echo -n "Stopping Areca RAID 1170 HTTP daemon: "
killall $ARECA_BIN
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/areca-httpd
echo
sleep 2
;;
status)
ps auxww | grep $ARECA_BIN
RETVAL=$?
;;
restart)
$0 stop
$0 start
RETVAL=$?
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
exit 1
esac
exit $RETVAL
--------------------- end areca-httpd -------------------
[View Less]
Hi All,
I am looking for information on when CentOS 5 will be available for
IA64. I found this forum posting but no responses
http://www.centos.org/modules/newbb/viewtopic.php?topic_id=8714&forum=45
I am looking to perform a large migration of about 500 workstations from
various Suse and Red Hat versions to CentOS to standardize some what.
Because I have to support x86 (32 & 64) and IA64 it would be nice to do
this all at once. I know that CentOS 4.5 supports all the platforms …
[View More]
listed, but if it's going to come out soon I'll just wait as it offers
my users a lot more in terms of packages and support.
BTW: Anyone out there have CentOS on SGI Altix?
--
James A. Peltier
Technical Director, RHCE
SCIRF | GrUVi @ Simon Fraser University - Burnaby Campus
Phone : 604-291-3610
Fax : 604-291-3045
Mobile : 778-840-6434
E-Mail : jpeltier(a)cs.sfu.ca
Website : http://gruvi.cs.sfu.ca | http://scirf.cs.sfu.ca
MSN : subatomic_spam(a)hotmail.com
[View Less]
In-Reply-To: <20070911203414.GQ19043(a)polop.usc.edu>
On: Tue, 11 Sep 2007 13:34:14 -0700, Garrick Staples <garrick(a)usc.edu> wrote:
Content-Type: text/plain; charset="us-ascii"
On Tue, Sep 11, 2007 at 03:56:07PM -0400, James B. Byrne alleged:
>> I am now getting this:
>>
>> configure: creating ./config.status
>> config.status: creating Makefile
>> + --with-sitedir=/usr/lib/ruby/site_ruby --with-default-kcodeone
>> --with-bundled-sha1 --with-…
[View More]bundled-md5 --with-bundled-rmd160
>> --enable-shared --enable-ipv6 --enable-pthread
>> --with-lookup-order-hack=INET --disable-rpath --with-ruby-prefix=/usr/lib
>> /var/tmp/rpm-tmp.49488: line 62: --with-sitedir=/usr/lib/ruby/site_ruby:
>> No such file or directory
>> error: Bad exit status from /var/tmp/rpm-tmp.49488 (%build)
>>
>> Since /usr/lib/ruby/site_ruby evidently exists, why am I being told that
>> it does not?
> It is telling you that "--with-sitedir=/usr/lib/ruby/site_ruby" doesn't
> exist as a file, which is obviously correct. You probably have an extra
> newline char or missing continuation char.
You will note that the error message states "No such file or directory"
which is not congruent with your observation. Indeed, site_ruby MUST be a
directory.
--
*** E-Mail is NOT a SECURE channel ***
James B. Byrne mailto:ByrneJB@Harte-Lyne.ca
Harte & Lyne Limited http://www.harte-lyne.ca
9 Brockley Drive vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada L8E 3C3
[View Less]
Hi,
I'm currently fiddling with the KDE desktop just to see if it suits our users
better than the default GNOME.
I configured the RPMForge repos and launched a 'yum install kaffeine'. After
packages are downloaded, I get the following error:
Running Transaction Test
Finished Transaction Test
Transaction Check Error:
file /usr/share/mimelnk/application/x-mplayer2.desktop from install of
kaffeine-0.7.1-1.2.el5.rf conflicts with file from package
kdelibs-3.5.4-11.el5.centos
Error …
[View More]Summary
-------------
Any suggestions?
Niki Kovacs
[View Less]
Hey All,
I'm trying to upgrade to perl 5.8.8 via CentOSPlus, but am having no
luck. Here is what I have done.
# yum list | grep perl
. . .
perl.i386 3:5.8.5-12.1 installed
. . .
Created /etc/yum.repos.d/CentOS-Base.repo with:
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch…
#baseurl=http://mirror.centos.…
[View More]org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
priority=2
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
exclude=kernel kernel-devel kernel-smp-* kernel-hugemem* kernel-largesmp*
Then tried:
# sudo yum --enablerepo=centosplus upgrade perl
Setting up Upgrade Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Excluding Packages from CentOS-4 - Plus
Finished
Could not find update match for perl
No Packages marked for Update/Obsoletion
What am I missing?
Actually, looking at the "yum list" output, it looks like the current
version installed is of the i386 architecture, while this machine is
x86_64? Is that the problem? If so is it safe to install the i386
package? Is there an easy way to do this via yum?
# uname -a
Linux dev 2.6.9-42.0.10.ELsmp #1 SMP Tue Feb 27 09:40:21 EST 2007
x86_64 x86_64 x86_64 GNU/Linux
I'm begining to think the previous admin made some poor decisions on
this server...
Thanks!
Nick
[View Less]
Hi list,
I´m searching a webmail imap client including a calendar and a todo list
(last is not necessary) for 2 or 3 users. I have tried zimbra but it´s too
oversized for my claim.
Do someone have a hint?
Thanks.
Kamill
Hi,
seems to have a lot of security fixes:
http://www.php.net/ChangeLog-5.php#5.2.0
Version 5.2.0 was orginally released 02-Nov-2006.
What is the process and time frame for released software to be available in
an operating system? I am not familiar with this.
Sincerely,
Melinda Odom
Design Hosting, Inc.
www.designhosting.biz
479-471-0891
-----Original Message-----
From: centos-bounces(a)centos.org [mailto:centos-bounces@centos.org]On Behalf
Of centos-request(a)centos.org
Sent: Tuesday, …
[View More]September 11, 2007 7:00 AM
To: centos(a)centos.org
Subject: CentOS Digest, Vol 32, Issue 11
Send CentOS mailing list submissions to
centos(a)centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos
or, via email, send a message with subject or body 'help' to
centos-request(a)centos.org
You can reach the person managing the list at
centos-owner(a)centos.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of CentOS digest..."
Today's Topics:
1. php 5.2 (Melinda Odom)
2. downloading an src.rpm? (Dave)
3. Re: php 5.2 (Alexander Dalloz)
4. Re: downloading an src.rpm? (Alexander Dalloz)
5. Re: Re: KDE-Repos (Lamar Owen)
6. Centos 4.5 clamav update error (Lorenzo)
7. Re: Centos 4.5 clamav update error (Ralph Angenendt)
8. Re: Centos 4.5 clamav update error (Lorenzo)
9. Re: Centos 4.5 clamav update error (John Hinton)
10. Re: KDE-Repos (Timothy Kesten)
11. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
12. Boot problem with CENTOS 5 (chuck)
13. New RTL8111B Wiki Page (Kirk Bocek)
14. Re: How to upgrade WBEL4 to CentOS4? (Phil Schaffner)
15. Re: package manager (Phil Schaffner)
16. Re: Boot problem with CENTOS 5 (Phil Schaffner)
17. Re: Performance of CentOS as a NAT gateway (Guy Boisvert)
18. Re: Performance of CentOS as a NAT gateway (Guy Boisvert)
19. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
20. is there an apache limit on submit size for centos 4 and 5
(Jerry Geis)
21. Re: Performance of CentOS as a NAT gateway (Toby Bluhm)
22. Re: How to upgrade WBEL4 to CentOS4? (tdukes(a)sc.rr.com)
23. Re: rpm spec files for ruby (James B. Byrne)
24. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
25. Nautilus won't start (Kenneth Porter)
26. RE: Performance of CentOS as a NAT gateway (Ross S. W. Walker)
27. Re: Performance of CentOS as a NAT gateway (Les Mikesell)
28. Re: Performance of CentOS as a NAT gateway
(gjgowey(a)tmo.blackberry.net)
29. Re: Nautilus won't start (gjgowey(a)tmo.blackberry.net)
30. Re: Nautilus won't start (Kenneth Porter)
31. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
32. Re: Performance of CentOS as a NAT gateway (John R Pierce)
33. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
34. Downgrade samba? (Jason Pyeron)
35. Re: Performance of CentOS as a NAT gateway
(gjgowey(a)tmo.blackberry.net)
36. Re: Downgrade samba? (gjgowey(a)tmo.blackberry.net)
37. Re: rpm spec files for ruby (Karanbir Singh)
38. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
39. Re: Downgrade samba? (Karanbir Singh)
40. Re: Performance of CentOS as a NAT gateway
(gjgowey(a)tmo.blackberry.net)
41. apche vhosts ldap (Sunet Sysadmin)
42. Re: Performance of CentOS as a NAT gateway (Bart Schaefer)
43. Re: Installerror on installation Kaffeine on CentOS 5 (Rex Dieter)
44. Re: Performance of CentOS as a NAT gateway
(gjgowey(a)tmo.blackberry.net)
45. Re: How to upgrade WBEL4 to CentOS4? (Scott Silva)
46. Re: Boot problem with CENTOS 5 (chuck)
47. Re: Boot problem with CENTOS 5 (John R Pierce)
48. Re: apche vhosts ldap (Indran D Govender)
49. Re: Performance of CentOS as a NAT gateway
( <hrbac.conf(a)seznam.cz>)
50. Network Connection Card Problem? (Jun Salen)
51. Re: Network Connection Card Problem? (Jun Salen)
52. MD5 and NIS (Jeremy Sanders)
53. Re: Network Connection Card Problem? (Alain Spineux)
----------------------------------------------------------------------
Message: 1
Date: Mon, 10 Sep 2007 09:39:54 -0500
From: "Melinda Odom" <info(a)designhosting.biz>
Subject: [CentOS] php 5.2
To: <centos(a)centos.org>
Message-ID: <OHEMIKFDMHLDNJAPNOLEAEMNIGAA.info(a)designhosting.biz>
Content-Type: text/plain; charset="windows-1250"
Hi,
I was asking about php 5.2 because I would like to use this program with
these requirements:
http://www.magentocommerce.com/system-requirements
This ecommerce store is built with the zend framework and requires php 5.2.
Mcrypt is not in the centos mirrors either.
I did manage to get this beta ecommerce store installed on php 5.1.6-12 by
removing the mycript line in the install xml file and also changing the
initial install page code to not be less than 5.1 I wouldn't think this
would be good to do for a production program.
I would prefer to stay with the centos mirror as this is what I have setup.
Hopefully centos will have php 5.2 in the future.
Thanks!
Sincerely,
Melinda Odom
Design Hosting, Inc.
www.designhosting.biz
479-471-0891
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.485 / Virus Database: 269.13.12/997 - Release Date: 9/9/2007
10:17 AM
------------------------------
Message: 2
Date: Mon, 10 Sep 2007 10:52:21 -0400
From: "Dave" <dmehler26(a)woh.rr.com>
Subject: [CentOS] downloading an src.rpm?
To: <centos(a)centos.org>
Message-ID: <000301c7f3ba$312fa0a0$0200a8c0@satellite>
Content-Type: text/plain; format=flowed; charset="Windows-1252";
reply-type=original
Hello,
I've got the rpmforge repo configured as a 3rd party repo. There's an
rpm that i'd like to get the coresponding src.rpm, install it, and recompile
it. How would i do this with yum?
Thanks.
Dave.
------------------------------
Message: 3
Date: Mon, 10 Sep 2007 16:57:21 +0200
From: Alexander Dalloz <ad+lists(a)uni-x.org>
Subject: Re: [CentOS] php 5.2
To: CentOS mailing list <centos(a)centos.org>
Message-ID: <46E55B51.4090302(a)uni-x.org>
Content-Type: text/plain; charset=windows-1250
Melinda Odom schrieb:
> Hi,
>
> I was asking about php 5.2 because I would like to use this program with
> these requirements:
> http://www.magentocommerce.com/system-requirements
>
> This ecommerce store is built with the zend framework and requires php
5.2.
> Mcrypt is not in the centos mirrors either.
http://wftp.tu-chemnitz.de/pub/linux/centos/5/extras/x86_64/RPMS/php-mcrypt-
5.1.6-12.el5.centos.x86_64.rpm
What's that?
Or are you speaking about CentOS 4.5? Then get it through this path:
http://phprpms.sourceforge.net/mcrypt
> Sincerely,
> Melinda Odom
Alexander
------------------------------
Message: 4
Date: Mon, 10 Sep 2007 17:01:02 +0200
From: Alexander Dalloz <ad+lists(a)uni-x.org>
Subject: Re: [CentOS] downloading an src.rpm?
To: CentOS mailing list <centos(a)centos.org>
Message-ID: <46E55C2E.8000208(a)uni-x.org>
Content-Type: text/plain; charset=windows-1252
Dave schrieb:
> Hello,
> I've got the rpmforge repo configured as a 3rd party repo. There's an
> rpm that i'd like to get the coresponding src.rpm, install it, and
> recompile it. How would i do this with yum?
> Thanks.
> Dave.
yum install yum-utils (from extras)
yum-downloader <package>
Alexander
------------------------------
Message: 5
Date: Mon, 10 Sep 2007 11:10:03 -0400
From: "Lamar Owen" <lowen(a)pari.edu>
Subject: Re: [CentOS] Re: KDE-Repos
To: CentOS mailing list <centos(a)centos.org>
Message-ID: <200709101110.03088.lowen(a)pari.edu>
Content-Type: text/plain; charset="iso-8859-1"
On Sunday 09 September 2007, Timothy Kesten wrote:
> http://kde-redhat.sourceforge.net/
> There are mentioned yum Repos for REHL.
This repository works fine. But, be aware that it replaces large portions
of
your system, including system libraries. It doesn't touch the kernel, which
is one reason I use it on several desktops. It gives you a much updated
userland with the stable kernel base. But, if you across a bug in one of
the
libraries KDE-Rehat replaces, you will hten need to take it up with the
KDE-Redhat maintainer and not file it as a bug report in CentOS.
--
Lamar Owen
Chief Information Officer
Pisgah Astronomical Research Institute
1 PARI Drive
Rosman, NC 28772
(828)862-5554
www.pari.edu
------------------------------
Message: 6
Date: Mon, 10 Sep 2007 17:12:19 +0200
From: Lorenzo <lorenzo(a)gmk.it>
Subject: [CentOS] Centos 4.5 clamav update error
To: centos(a)centos.org
Message-ID: <46E55ED3.9060403(a)gmk.it>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Hi all,
I have a problem updating clamav on my mail server:
Error: Missing Dependency: libc.so.6(GLIBC_2.4) is needed by package clamav
Error: Missing Dependency: libc.so.6(GLIBC_2.4) is needed by package clamd
Error: Missing Dependency: rtld(GNU_HASH) is needed by package clamav
Error: Missing Dependency: rtld(GNU_HASH) is needed by package clamd
I'm using rpmforge repo on CentOS 4.5, everything else is up to date.
I guess that there is a conflict with the currently available glibc.i686
(2.3.4-2.36) and the package providing rtld.
Does anyone knows if there is a fix/workaround for that?
Otherwise is it possible to setup exim to use clamd on a different server
via
tcp/ip?
tia
Regards
-Lorenzo Quatrini
------------------------------
Message: 7
Date: Mon, 10 Sep 2007 17:32:17 +0200
From: Ralph Angenendt <ra+centos(a)br-online.de>
Subject: Re: [CentOS] Centos 4.5 clamav update error
To: centos(a)centos.org
Message-ID: <20070910153217.GR1328(a)br-online.de>
Content-Type: text/plain; charset="us-ascii"
Lorenzo wrote:
> Hi all,
> I have a problem updating clamav on my mail server:
>
> Error: Missing Dependency: libc.so.6(GLIBC_2.4) is needed by package
clamav
> Error: Missing Dependency: libc.so.6(GLIBC_2.4) is needed by package clamd
> Error: Missing Dependency: rtld(GNU_HASH) is needed by package clamav
> Error: Missing Dependency: rtld(GNU_HASH) is needed by package clamd
>
> I'm using rpmforge repo on CentOS 4.5, everything else is up to date.
You're using the rpmforge repository for CentOS 5 on CentOS 4.5. This
will and cannot work.
Ralph
[View Less]
Hello,
I've got the rpmforge repo configured as a 3rd party repo. There's an
rpm that i'd like to get the coresponding src.rpm, install it, and recompile
it. How would i do this with yum?
Thanks.
Dave.
"Lamar Owen" <lowen(a)pari.edu> wrote:
>>
What is the minimum for actual hardware? I have a small s390 here that
I've
been looking for a reason to power up. What sort of access is needed?
<<
Typical install minimum is around 512 MB RAM and a few GB of DASD. If
you're installing in an LPAR you'll need to use the HMC to boot install
media from CD-ROM or tape. Under VM, you can use a CMS profile disk to move
the initial boot files onto DASD, then run a REXX exec to punch them …
[View More]to a
virtual RDR and then re-ipl. Once the install-time kernel has started, you
need to drive the install via SSH, or remote X or VNC (I forget which
mechanisms RHEL supports) and it needs to use either a physical interface
or a guest LAN interface, IUCV or VCTC to do that as well as download the
installation packages.
Once installation is done, I don't know what resources would be required to
rebuild the entire distro - that's where the developers come in. And
obiously another LPAR or VM guest would be required to test the built 5.0
system.
Best,
--- Les Bell, RHCE, CISSP
[http://www.lesbell.com.au]
Tel: +61 2 9451 1144
FreeWorldDialup: 800909
[View Less]