Dear people, Are any of you running rails on suse ? I am using suse pro 9.2 and it only comes with ruby 1.8.1 and trying to install ruby 1.8.2 has caused zlib errors. Asking on the ruby mailing list didn''t get any favourable replies. Any help would be greatly appreciated as I really like ror and would like using it on my suse machine. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
I had this problem as well. I ended up compiling it from scratch. The problem is that you need all the dependencies as well. Which is where the problem is. Suse is a rpm based distribution and zlib like most libraries come in 2 rpms. One which contains the binaries and the other which contains libraries and headers which normally has a "-devel" after the package name. Ruby wont pick up that youve got zlib installed unless you install that. I used: zlib-devel-1.2.1-70.6.i586.rpm Just make sure youve got one that matches the version of zlib youve got. There may also be other dependencies needed for each one make sure you have the corresponding -devel package installed as well. regards Pelle On Fri, 11 Mar 2005 01:00:33 -0800 (PST), Low Kian Seong <rubyonrails_low-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> Dear people, > > Are any of you running rails on suse ? I am using suse > pro 9.2 and it only comes with ruby 1.8.1 and trying > to install ruby 1.8.2 has caused zlib errors. > > Asking on the ruby mailing list didn''t get any > favourable replies. Any help would be greatly > appreciated as I really like ror and would like using > it on my suse machine. > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- http://talk.org + Geek blog http://SoapBX.com + Get on the box and shout
ronb-dQPWFhN023HbOSAuCW/P5pvRsg8Z6D3kAL8bYrjMMd8@public.gmane.org
2005-Mar-11 14:42 UTC
Re: rails on suse
I''m on suse pro 9.2 too and just compiled/installed ruby 1.8.2 so I could upgrade ror. The "obvious" thing I missed on the first go-round was that suse wants to put ruby in /usr/bin instead of /usr/local/bin. This works: ./config --prefix /usr make make test su make install I had installed all the devel packages when I upgraded to 9.2 so that part wasn''t an issue. best wishes, Ron> I had this problem as well. I ended up compiling it from scratch. The > problem is that you need all the dependencies as well. Which is where > the problem is. Suse is a rpm based distribution and zlib like most > libraries come in 2 rpms. One which contains the binaries and the > other which contains libraries and headers which normally has a > "-devel" after the package name. Ruby wont pick up that youve got zlib > installed unless you install that. > > I used: zlib-devel-1.2.1-70.6.i586.rpm > Just make sure youve got one that matches the version of zlib youve got. > > There may also be other dependencies needed for each one make sure you > have the corresponding -devel package installed as well. > > regards > Pelle > On Fri, 11 Mar 2005 01:00:33 -0800 (PST), Low Kian Seong > <rubyonrails_low-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote: >> Dear people, >> >> Are any of you running rails on suse ? I am using suse >> pro 9.2 and it only comes with ruby 1.8.1 and trying >> to install ruby 1.8.2 has caused zlib errors. >> >> Asking on the ruby mailing list didn''t get any >> favourable replies. Any help would be greatly >> appreciated as I really like ror and would like using >> it on my suse machine. >> >> __________________________________________________ >> Do You Yahoo!? >> Tired of spam? Yahoo! Mail has the best spam protection around >> http://mail.yahoo.com >> _______________________________________________ >> Rails mailing list >> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> > > > -- > http://talk.org + Geek blog > http://SoapBX.com + Get on the box and shout > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >