Looking for Debian complete package for 1.8

In a backwards move I have gone from CentOS (fedora) to Xandros (debian) because the fonts were driving me crazy. Now I find that it is impossoble to find a debian package for ruby and rails. Anyone know of one or a solution to the problem? I am not against compiling if I can get a good apt-get source and it does not destroy Xandros in the process.

I am also entertaining suggestions for linux distros where fonts are perfect without anti-aliasing. Xandros is the only one I have found in 2 years of looking.

Thanks for any help.

···

--

Tesla - Alternating current, the first modern day opensource project?

apt-get install rails

works ok on etch.

···

On 26/08/05, Tesla <tesla.nicoli@gmail.com> wrote:

In a backwards move I have gone from CentOS (fedora) to Xandros (debian)
because the fonts were driving me crazy. Now I find that it is
impossoble to find a debian package for ruby and rails. Anyone know of
one or a solution to the problem? I am not against compiling if I can
get a good apt-get source and it does not destroy Xandros in the process.

I am also entertaining suggestions for linux distros where fonts are
perfect without anti-aliasing. Xandros is the only one I have found in 2
years of looking.

Thanks for any help.

--

Tesla - Alternating current, the first modern day opensource project?

--
Rasputin :: Jack of All Trades - Master of Nuns

Tesla wrote:

In a backwards move I have gone from CentOS (fedora) to Xandros (debian) because the fonts were driving me crazy. Now I find that it is impossoble to find a debian package for ruby and rails. Anyone know of one or a solution to the problem? I am not against compiling if I can get a good apt-get source and it does not destroy Xandros in the process.

Debian vs. Ruby is a Tale of Woe of epic proportions. My understanding is the authors wanted you to be able to get "just the part you need", but my experience has been one of constantly finding pieces missing.

I solved the problem with this really, REALLY grody hack:

for pkg in $(apt-cache search ruby | grep -E '^lib' | grep -v 'ruby1.6'

awk '{print $1}' | wc -l); do echo "Installing $pkg..."; sudo apt-get

--yes --force-yes install $pkg; done

That will install about 95 packages. It's messy and gross, and you'll end up with a bunch of fiddly weird packages installed, but it worked for me.

I'm hardly a linux or Debian guru, but sometimes hitting a particularly annoying problem with a gigantic stone axe is really satisfying. :slight_smile:

Doesn't get you gem or Rails, however. *sigh* Did I mention the proportions were epic? :slight_smile:

-dB

···

--
David Brady
ruby_talk@shinybit.com
I'm feeling really surreal today... OR AM I?

David Brady wrote:

for pkg in $(apt-cache search ruby | grep -E '^lib' | grep -v 'ruby1.6' | awk '{print $1}' | wc -l); do echo "Installing $pkg..."; sudo apt-get --yes --force-yes install $pkg; done

...drop the "| wc -l". That was for me to count the libraries for the previous e-mail. :slight_smile:

Corrected:

for pkg in $(apt-cache search ruby | grep -E '^lib' | grep -v 'ruby1.6'

awk '{print $1}'); do echo "Installing $pkg..."; sudo apt-get --yes

--force-yes install $pkg; done

-dB

···

--
David Brady
ruby_talk@shinybit.com
I'm feeling really surreal today... OR AM I?

switch your sources to pull from TESTNG and then
apt-get update
apt-get upgrade
apt-get install ruby rails

then download gems and "build" that and POOF Ruby, Rails and Gems on
Debian - just finished installing it myself

HTH
Danny

···

On 8/26/05, David Brady <ruby_talk@shinybit.com> wrote:

David Brady wrote:

> for pkg in $(apt-cache search ruby | grep -E '^lib' | grep -v
> 'ruby1.6' | awk '{print $1}' | wc -l); do echo "Installing $pkg...";
> sudo apt-get --yes --force-yes install $pkg; done

...drop the "| wc -l". That was for me to count the libraries for the
previous e-mail. :slight_smile:

Corrected:

for pkg in $(apt-cache search ruby | grep -E '^lib' | grep -v 'ruby1.6'
> awk '{print $1}'); do echo "Installing $pkg..."; sudo apt-get --yes
--force-yes install $pkg; done

-dB

--
David Brady
ruby_talk@shinybit.com
I'm feeling really surreal today... OR AM I?

Danny Collins wrote:

switch your sources to pull from TESTNG and then apt-get update apt-get upgrade
apt-get install ruby rails

Doesn't this mean that EVERY application you have on your system will be "upgraded" to *testing* versions?

I may have used an unstable source, but the last time I did an apt-get upgrade with funky sources, it rendered my system unusable (unstable version of XFree86, for starters).

I'm not a debian guru. Perhaps testing is not the same thing as unstable?

-dB

···

--
David Brady
ruby_talk@shinybit.com
I'm feeling really surreal today... OR AM I?

Testing is somewhere between stable and unstable ... I've found it to be a
fairly comfortable place to live.

If you want to mix and match between testing, stable and unstable, this
article may be helpful: Apt-Pinning for Beginners

···

On Friday 26 August 2005 08:16 pm, David Brady wrote:

Danny Collins wrote:
>switch your sources to pull from TESTNG and then
>apt-get update
>apt-get upgrade
>apt-get install ruby rails

Doesn't this mean that EVERY application you have on your system will be
"upgraded" to *testing* versions?

I may have used an unstable source, but the last time I did an apt-get
upgrade with funky sources, it rendered my system unusable (unstable
version of XFree86, for starters).

I'm not a debian guru. Perhaps testing is not the same thing as unstable?

--
-- Jim Weirich jim@weirichhouse.org http://onestepback.org
-----------------------------------------------------------------
"Beware of bugs in the above code; I have only proved it correct,
not tried it." -- Donald Knuth (in a memo to Peter van Emde Boas)

You can cheat - just add the testing (a.k.a. etch) sources,
apt-get update, run the commands, then comment them again and apt-get
update again.

Although I'm not convinced you'll get all of ruby that way, it's a good start.

(Incidentally, is everyone seeing my posts twice, or is it a gmail
rendering bug?)

···

On 27/08/05, David Brady <ruby_talk@shinybit.com> wrote:

Danny Collins wrote:

>switch your sources to pull from TESTNG and then
>apt-get update
>apt-get upgrade
>apt-get install ruby rails
>
>
Doesn't this mean that EVERY application you have on your system will be
"upgraded" to *testing* versions?

I may have used an unstable source, but the last time I did an apt-get
upgrade with funky sources, it rendered my system unusable (unstable
version of XFree86, for starters).

I'm not a debian guru. Perhaps testing is not the same thing as unstable?

-dB

--
David Brady
ruby_talk@shinybit.com
I'm feeling really surreal today... OR AM I?

--
Rasputin :: Jack of All Trades - Master of Nuns

Its gmail's fault. Seems like a regression to me.

regards,

Brian

···

On 27/08/05, Dick Davies <rasputnik@gmail.com> wrote:

You can cheat - just add the testing (a.k.a. etch) sources,
apt-get update, run the commands, then comment them again and apt-get
update again.

Although I'm not convinced you'll get all of ruby that way, it's a good start.

(Incidentally, is everyone seeing my posts twice, or is it a gmail
rendering bug?)

--
http://ruby.brian-schroeder.de/

Stringed instrument chords: http://chordlist.brian-schroeder.de/