Fubaredness Is Contagious

by Dmitriy Samovskiy

Fubaredness Is Contagious header image 4

Entries Tagged as 'linux'

EC2 Instances Always Boot to Runlevel 4

June 20th, 2008 · No Comments

It appears that Amazon EC2 instances always boot to runlevel 4, no matter what runlevel you set as default in your /etc/inittab. I found a very old reference to this fact in forums (see here), which explains *how* it happens (XEN does it) but doesn’t explain *why*. And yes, by passing “4″ as last argument […]

[Read more →]

Tags: linux · virtualization

One year at CohesiveFT

April 10th, 2008 · 4 Comments

Yesterday was 1 year since I started at CohesiveFT. New things this year (in no particular order):

Mac. I got a Macbook Pro as my work laptop. Feels great every time I sit down to work, even though I am not a very demanding desktop user - browser, email, IM, rss reader for non-public feeds, […]

[Read more →]

Tags: linux · python · rabbitmq · ruby · work

EC2 for Web Hosting

February 29th, 2008 · No Comments

Lack of persistent disk out of the box and IP addresses that are not preserved between reboots are indeed the 2 primary issues that make hosting public web sites on Amazon EC2 “tricky” (even though not impossible).
Instead of addressing the problem head on, have you considered multisourcing your infrastructure? Let Amazon EC2 host your […]

[Read more →]

Tags: linux · technology

VBulletin and spam bots

February 14th, 2008 · Comments Off

If you maintain a VBulletin installation and spam bots are causing trouble, these two links are a must read: http://www.vbulletin.com/forum/showthread.php?t=211647 and http://www.vbulletin.com/forum/showthread.php?t=205214

[Read more →]

Tags: linux

VcubeV

February 3rd, 2008 · No Comments

This week on Elastic Server blog we announced the official name of the technology that I described in my article for Linux Journal. It’s now called VcubeV (the Vs are silent).
I love it. Did you notice association with P2P, especially if you take “P” to stand for “physical” instead of “peer”? “V” in our case […]

[Read more →]

Tags: linux

Linux Journal publishes my article

January 7th, 2008 · No Comments

February issue of Linux Journal includes my article titled Building a Multisourced Infrastructure Using OpenVPN.

[Read more →]

Tags: linux

Apache Config Trick: A Special Directory

June 21st, 2007 · No Comments

So say you need to require users to enter their username and password before they can get content from your Apache server? Well, that’s easy:
<Location “/”>
AuthType …
AuthName…
Require valid-user

</Location>

But what if you want to have one special directory where you don’t want to authenticate users? Extended regular expressions to the rescue (perldoc perlre)! Just change […]

[Read more →]

Tags: linux