Tuesday, October 2, 2012

Good instructions for centos 6 and guest additions 4.1.22.

Thanks Christoffer!

Link

Tuesday, May 8, 2012

Cool stuff to read ...

366-days-or-how-i-tricked-myself-into-being-awesome about a co-worker

Who should read this document? Any developer building applications which run as a service. Ops engineers who deploy or manage such applications.

Friday, March 9, 2012

git to macosx

thanks bryan for the write up:

http://www.crainbandy.com/how-to/how-to-install-git-on-mac-os-x-leopard-snow-leopard

Sunday, February 12, 2012

Sync: VBox, Vagrant, and Guest Additions ...

Are you seeing:

[default] Importing base box 'qa-vm'...
[default] The guest additions on this VM do not match the install version of
VirtualBox! This may cause things such as forwarded ports, shared
folders, and more to not work properly. If any of those things fail on
this machine, please update the guest additions and repackage the
box.

Guest Additions Version: 4.1.0
VirtualBox Version: 4.1.8

I followed the steps posted by Yodi.
It looks like you can change the iso name to match the version needed.

* Important * On the vm.
I used the following:


wget -c http://download.virtualbox.org/virtualbox/4.1.8/VBoxGuestAdditions_4.1.8.iso
sudo umount /mnt
sudo mount VBoxGuestAdditions_4.1.8.iso -o loop /mnt
sudo sh /mnt/VBoxLinuxAdditions.run


Thank you Yodi.

This appears to have worked on both:
* centos 6 2.6.32-71.el6.x86_64 x86_64 GNU/Linux
* ubuntu 2.6.32-33-server #70-Ubuntu SMP Thu Jul 7 22:28:30 UTC 2011 x86_64 GNU/Linux

Tony 'i dunna wanna be a yak shaver ...' R

Sunday, January 29, 2012

Package version list CentOS

Have you ever needed to share a package list?




rpm -qa --qf '%{NAME} %{VERSION}-%{RELEASE} %{ARCH}\n' > pkglist.txt





Ref: http://beginlinux.com/server/centos/basic-centos-6-install

Saturday, January 28, 2012

Vagrant couldn't determine the SSh port for you VM!

Saw the following message on vagrant up and vagrant ssh:

"[mongrel@localhost massiveapp]$ vagrant ssh
Vagrant couldn't determine the SSH port for your VM! This is a rare,
exceptional event, and a bug should be filed. Please try recreating your
VM (vagrant destroy, then vagrant up). Sorry!"

Resolved by changing the vm.name.

Ref: https://github.com/mitchellh/vagrant/issues/671

Install Ruby 1.9 on CentOS

In case you did not know and because I found out the hard way;

Attention: Ruby 1.9.2 now includes RubyGems so there's no need to install it separately. As a matter of fact, if you try doing so you will get an error like:


rubygems-1.3.7/lib/rubygems/source_index.rb:68:in `installed_spec_directories': undefined method `path' for Gem:Module (NoMethodError




Ref: http://www.freshblurbs.com/install-ruby-1-9-centos

Wednesday, January 25, 2012

masterful scrummaster

Good read ...

http://www.scrumshortcuts.com/blog/scrum-roles/masterful-scrummaster/

Tuesday, January 24, 2012

DevOps

“DevOps”. This word was coined by Patrick Debois to describe “an emerging set of principles, methods and practices for communication, collaboration and integration between software development (application/ software engineering) and IT operations (systems administration/infrastruc- ture) professionals.”1. In other words, software systems tend to run more smoothly when the people who are writing the code and the people who are running the servers are all working together.
Ref: Deploying Rails Automate, Deploy, Scale, Maintain, and Sleep at Night, Anthony Burns Tom Copeland