Ruby on rails on freebsd 7

2008-11-28 Thread Robby Balona
Has anybody managed to get Ruby on Rails 2 working on Freebsd 7 . I have
tried for 3 day now . Done portupgrades and portsnaps but still cant
seem to get it to work


I get the following error when I run rails

../lib/rails_generator/options.rb:32:in default_options: undefined
method write_inheritable_attribute

I googled this error and found very little to help except that it looks
like its something to do with activesupport-1.4.2 not being install
correctly...

Any direction would be welcome

Regards

Robby



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ruby on rails on freebsd 7

2008-11-28 Thread Robby Balona
On Fri, 2008-11-28 at 12:41 +, Daniel Bye wrote:
 On Fri, Nov 28, 2008 at 11:30:20AM +0200, Robby Balona wrote:
  Has anybody managed to get Ruby on Rails 2 working on Freebsd 7 . I have
  tried for 3 day now . Done portupgrades and portsnaps but still cant
  seem to get it to work
 
 Yes, I'm using it very successfully. The version of Rails in ports 
 seems to have stuck at 1.2.6.
 
  
  
  I get the following error when I run rails
  
  ../lib/rails_generator/options.rb:32:in default_options: undefined
  method write_inheritable_attribute
  
  I googled this error and found very little to help except that it looks
  like its something to do with activesupport-1.4.2 not being install
  correctly...
 
 rails 2.* ships with activsupport 2.*.
 
 Your best bet will be to upgrade your installed gems:
 
 $ sudo gem upgrade --system
 
 (If that doesn't work, try `update_rubygems' instead)
 
 Gems should now report its version as 1.3.1:
 
 $ gem -v
 1.3.1
 
 Now you can simply use gems to install Rails and its dependencies:
 
 $ sudo gem install rails --include-dependencies
 
 If you really want version 2.0 or 2.1 instead of the recently released
 2.2, include a --version=2.1 to the command. However, given the
 enhancements, I'd go with the latest.
 
 HTH,
 
 Dan
 

Great thanks will try all your advice!


Regards

Robby





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Best SMTP Gateway Program and Reporting Tools

2008-08-19 Thread Robby Balona

John Almberg wrote:

On Aug 12, 2008, at 4:22 PM, Josh Kidd wrote:


I just wanted to pose this question to the list on people's opinions as
to what the best SMTP Gateway program (ie. Sendmail, Postfix, etc) is
and what the best log analysis tool for that SMTP program is.


I use qmail. Its touted to be very secure, which was my #1 goal. 
Proving that is above my pay grade, but I can say I have had no 
problems, which is a big improvement over my last server which ran 
Linux and sendmail.


It also logs a lot of information about what it's doing, and has a 
bunch of command line tools to help you analyze it.


-- John

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
I love qmail also.. but didn't do well under heavy smtp load in my 
environment. I put qmail +vpopmail + qmailadmin 
+clamav+dovecot+spamassasin + assap +squirrelmail together. Exim is 
great if you can get past the asinine language of the config file. 
Postfix is also ok but never found a good virtual mail interface for it.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Best SMTP Gateway Program and Reporting Tools

2008-08-19 Thread Robby Balona

Steve Bertrand wrote:

Robby Balona wrote:

I love qmail also.. but didn't do well under heavy smtp load in my 
environment. I put qmail +vpopmail + qmailadmin 
+clamav+dovecot+spamassasin + assap +squirrelmail together. 


I use Qmail on almost all of our SMTP servers. On the ones that only 
house a couple hundred email addresses, your setup works flawlessly in 
our environment.


On the boxes with 10k+ email accounts, I do away with all of the 
filtering stuff, and front-end the Qmail/Vpopmail boxes with third 
party appliances.


From what I can tell, it's the filtering processes that are the 
bottleneck under heavy load. Take them out of the equation and load is 
no longer an issue.


Just my .02.

Steve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
Yep you are right , spamassasin's perl munched up processors and created 
havoc .


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Firefox3 port problem

2008-07-24 Thread Robby Balona

Hi Guys

I have been tring to port firefox3 on freebsd 7 for a week now. I keep 
coming up against this error


gmake:***[libgiofam.la] Error 1

I have done a portsnap update already. Please dont flame me for not 
looking on google for the error as I have not really worried about it 
until now, when I need firefox.


Just thought I would mention it ,


Thanks

Robby

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Firefox3 port problem

2008-07-24 Thread Robby Balona

Thanks Roland

I have much to learn.

Regards

Robby



Roland Smith wrote:

On Thu, Jul 24, 2008 at 03:53:08PM +0200, Robby Balona wrote:
  

Hi Guys

I have been tring to port firefox3 on freebsd 7 for a week now. I keep 
coming up against this error



Why are you trying to port it? It is allready in ports: www/firefox3
 
  

gmake:***[libgiofam.la] Error 1

I have done a portsnap update already. 



Using portsnap is not enough; it just updates the ports tree. You also
need to update your installed ports.

  

Please dont flame me for not looking on google for the error as I have
not really worried about it until now, when I need firefox.



You need to update your installed ports. You're missing gio-fam-backend,
which is now needed by the gtk+ toolkit which is needed for firefox.

Use portmaster or portupgrade to upgrade all you installed ports.

Roland
  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


eee pc asus

2008-07-02 Thread Robby Balona

Hi Guys


Anyone had any luck running freebsd on asus eee pc. I have tried and got 
it running without the network cause dont think i have enough knowledge 
to create  wifi/nic from the Athos driver.


Any Idea's


Regards

Robby
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: eee pc asus

2008-07-02 Thread Robby Balona

cool thanks!!!

Matthias Apitz wrote:

El día Wednesday, July 02, 2008 a las 10:41:36AM +0200, Robby Balona escribió:

  

Hi Guys


Anyone had any luck running freebsd on asus eee pc. I have tried and got 
it running without the network cause dont think i have enough knowledge 
to create  wifi/nic from the Athos driver.


Any Idea's



See:
http://wiki.freebsd.org/AsusEee
and my installation guide
http://www.unixarea.de/installEeePC.txt

matthias
  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Is it difficult to move from Linux?

2007-10-23 Thread Robby Balona
Switch .. switch now and you will love it.

i just spent 3 days trying to get unixODBC working on linux... . I got
it to work in about 10 min on Freebsd. Freebsd rules... its a slight bit
different but it rules.

You will never go back once you port something.

On Tue, 2007-10-23 at 14:07 +, Mayank Jain wrote:
 Hi
 Using freeBSD is more fun. Installing packages and all that is very easy. The 
 things you can do in LINUX you can surely do with FreeBSD. Collection of 
 large number of ports and the flexibility to modify anything the way you want 
 make it cool. Really after installing FreeBSD I had never swithched back to 
 LINUX.
 Hope you will also enjoy working on it. 
 
 On Tuesday 23 October 2007 03:53, Byung-Hee HWANG wrote:
  Donovan,
 
  On Mon, 2007-10-22 at 19:33 +0100, Donovan R. Palmer wrote:
   Hi,
  
   I have been using Linux for over 10 years, but have for a number of
   reasons become very interested in learning to use FreeBSD. Are there any
   ex or current Linux users here and could you tell me how hard it is to
   make the shift from Linux?  Is there anything in particular which has
   been written which would be useful to read?
 
  Just my story.. I moved to FreeBSD from Linux five years ago. Shell is
  only thing I felt difficult. But now I am using tcsh instead of bash.
  Aside from that, everything is OK ;;
 
  Sincerely,
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]