Floating Sun » linux http://floatingsun.net Mon, 07 Jan 2013 02:53:26 +0000 en-US hourly 1 http://wordpress.org/?v=3.5.1 The silent victories of open source http://floatingsun.net/2011/03/27/the-silent-victories-of-open-source/?utm_source=rss&utm_medium=rss&utm_campaign=the-silent-victories-of-open-source http://floatingsun.net/2011/03/27/the-silent-victories-of-open-source/#comments Mon, 28 Mar 2011 06:38:57 +0000 Diwaker Gupta http://floatingsun.net/?p=1747 Related posts:
  1. Linux and Closed Source Software
  2. Microsoft: Open source ‘not reliable or dependable’ | CNET News.com
  3. Enough with Linux as a second class citizen!
]]>
Tux, the Linux penguin
Image via Wikipedia

For years, free/libre/open source software (henceforth referred to as FLOSS) have proclaimed, year after year, how that year is the year of Linux, or the year that open source will become mainstream, or the year that open source will finally take off etc. But it never has, at least traditionally speaking. Linux based desktops haven’t penetrated either the enterprise or consumer markets; with a few notable exceptions (Apache httpd, for instance), most FLOSS products — be it office software like OpenOffice, multimedia software such as Gimp or Inkscape — remain popular with economically insignificant niches. And yet, this year, more than ever before, open source forges ahead with its silent victories.

Consider the following shifts:

  • all the top brands of the day — Apple, Google, Facebook, Twitter, Amazon — they ALLstand tall on the shoulders of FLOSS giants.
  • Contributing software back to the open source community is becoming increasingly common, even expected. Take a look at the GitHub repositories of Twitter and Facebook, or the various Google projects. In fact, when screening engineering candidates, I often look for and encourage people to talk about their open source contributions.
  • Most of the activity around “big data” and “cloud computing” is being driven in large part by FLOSS, whether it is the Hadoop-powered ecosystem or the Xen/Linux powered Amazon Web Services.
  • Given the current smartphone landscape, it is highly likely that Android will become ubiquitous on tablet devices and a variety of consumer smart phones. Already, Android has more search mindshare than Linux, despite the fact that Linux is part of the Android stack.
  • If you start a software company today, I would bet that you will find yourself bootstrapping almost entirely using open source software. The entire development process — from the GCC compiler toolchain, to the build systems, to the scripting languages, to the version control systems, to the code review systems, to the continuous integration systems — everything is dominated by FLOSS products. Good bug trackers and enterprise Wikis are the last bastions but it is just a matter of time.

I’ve had a chance to see the enterprise software market up close and increasingly find more and more open source everywhere I look. FLOSS has not arrived, it has taken over.

]]>
http://floatingsun.net/2011/03/27/the-silent-victories-of-open-source/feed/ 0
Startup Infrastructure: Where Linux Fails http://floatingsun.net/2011/01/09/startup-infrastructure-where-linux-fails/?utm_source=rss&utm_medium=rss&utm_campaign=startup-infrastructure-where-linux-fails http://floatingsun.net/2011/01/09/startup-infrastructure-where-linux-fails/#comments Sun, 09 Jan 2011 20:31:46 +0000 Diwaker Gupta http://floatingsun.net/?p=1699 Related posts:
  1. Skype adds video for Linux
  2. Linux and Closed Source Software
  3. Year of the Linux Desktop
]]>
Category:WikiProject Cryptography participants
Image via Wikipedia

It is no secret that I’m an open source evangelist and so when it was time to set up internal infrastructure at work, naturally the first order of business was to evaluate the various OSS projects out there — everything from wikis, bug trackers, source control, code review and project management. Running Ubuntu LTS (10.04) on all of our servers was a no-brainer and there were plenty of excellent options for most everything else as well (a follow-up post on our final choices later). The Linux ecosystem is fabulous for most of the infrastructure needs of a startup, but I learnt the hard way that there are still some areas where Linux needs a lot of work before it can become competitive with proprietary, non-Linux solutions.

Authentication

Centralized account management (users and groups) and authentication is critical component in any IT deployment, no matter the size. Even for a small startup, creating users/groups repeatedly for each new server, separate authentication mechanisms for each new service is simply not scalable. That is precisely why Active Directory is so ubiquitous at enterprises.

LDAP was the obvious solution in Linux-land and I figured it would be trivial to setup an OpenLDAP server that can manage user/group information for us. It would also be the single authentication source for all servers and services. I was so wrong.

After struggling with OpenLDAP for several painful hours, I gave up — the documentation is fragmented, Google doesn’t help much and personally I think the LDAP creators had never heard of “usability” when designing it. The seemingly simple task of creating some new users and groups involved several black-magic incantations of the LDAP command line tools. Getting servers to authenticate against the resulting directory was even harder.

Just as I was about to throw in the towel and setup an AD instance in-house, I stumbled upon the 389 Directory Server (now known as the Fedora Directory Server). With a new found hope, I set about installing it on Ubuntu and hit another roadblock — there are no up-to-date packages of FDS for Ubuntu. Reluctantly, I setup a Fedora instance (the only one so far) and installed FDS. Thankfully, Red Hat has put together really comprehensive documentation and guides for the Directory Server, which was invaluable.

From there on, it was mostly downhill (only a few minor hiccups). Finally we have a nice GUI to manage users and groups, and all servers/services authenticate against a single Directory Server. But the journey was unnecessarily painful. Here’s what I’d like to see:

  • Up-to-date packages of FDS for Ubuntu. Sane defaults and functionality out-of-the-box
  • Ready to consume documentation on how to integrate LDAP with various web applications, Linux distros etc (I’ll put together some of this soon)
  • More awareness — I should have found FDS a lot sooner than I did, but it is certainly not very well marketed
  • Single sign on: This is a whole different beast

Remote Access

At my previous company, we had a Cisco VPN solution. There were plenty of Cisco compatible VPN clients on Windows and Mac. In fairness, it was relatively easy to get vpnc working on Ubuntu as well. In fact, with Network Manager, you can manage your VPN connections using a simple and intuitive UI. But the setup was not very reliable and my connections would get dropped relatively frequently. It was impossible to have a long-running VPN session without disruption. I’m not sure if the problem was with the Cisco hardware or the Ubuntu vpnc client; I did see similar issues with the built-in VPN client on Mac OS X.

But at least VPN on Linux works. I can’t say the same about other remote access mechanisms, in particular IPSec and L2TP over IPSec. It took me some time to figure out which package to use (Strongswan, Openswan, iked etc etc); another couple of hours to get the Openswan configuration just right; several hours of struggling to automatically setup DNS lookups when using the IPSec connection (gave up and ended up using entries in /etc/hosts!). There is no UI in Network Manager to manage IPSec connections either. Strongswan does have a NM plugin, but that only works for IKEv2 (certificate based authentication), while I had to use IKEv1 (shared key based authentication).

At the end of the day, I do have a working IPSec tunnel and it is definitely more reliable than the Cisco VPN (been up for more than 2 days without disruption). But all this can and should become a lot more seamless.

These are a few areas where Linux failed me in setting up the infrastructure for a startup; it shines most everywhere else. Hopefully these last few kinks will get ironed out soon.

]]>
http://floatingsun.net/2011/01/09/startup-infrastructure-where-linux-fails/feed/ 8
And just like that, I’m a GNOME user http://floatingsun.net/2010/09/09/and-just-like-that-im-a-gnome-user/?utm_source=rss&utm_medium=rss&utm_campaign=and-just-like-that-im-a-gnome-user http://floatingsun.net/2010/09/09/and-just-like-that-im-a-gnome-user/#comments Fri, 10 Sep 2010 06:21:59 +0000 Diwaker Gupta http://floatingsun.net/?p=1614 Related posts:
  1. Inconsistent font rendering in GNOME and KDE
  2. Priceless quote from Linus
  3. Why KDE?
]]>
When I first started using Linux (more than a decade ago), I did my share of playing around with various desktop environments: the classic FVWM, GNOME, KDE, Enlightenment etc. I settled down with KDE. Over the years, I kept coming back to GNOME to check it out but somehow KDE always felt home to me.

Well guess what, not any more. As of a few days ago, I’m (mostly) a GNOME user.

I still love KDE (the desktop) and KDE based applications (KMail, Amarok etc). It is still infinitely more configurable than anything comparable in GNOME (Evolution and Thunderbird are still fairly limited in comparison) and over the years I’ve tweaked it to just the way I like it. But GNOME has something the KDE project does not: Canonical.

Thats right, I switched to GNOME because of Canonical, the company that drives Ubuntu development. Sure, there is a lot of effort behind the various Ubuntu variants such as Kubuntu, Xubuntu etc. But make no mistake, none of these variants are first-class citizens in the Ubuntu ecosystem.

The switch was a result of my recent experience setting up Ubuntu on my home theater PC. The effort Canonical has put into making the Ubuntu experience more seamless and pleasant is clearly visible. Pretty much everything works out of the box: folders that I share show up on other computers in my home network, bluetooth/webcam etc all work just fine, setting up remote desktop is a breeze and so on, Avahi/bonjour works like a charm; I can setup a DAAP server to share my music and it shows up on iTunes just like that.

Note that all of these things are obviously not limited to Ubuntu in any way. But the user experience in Ubuntu is unparalleled in comparison with Kubuntu etc. Subtle niceties like the notifications (the Ayatana project), the Me menu,  the messaging menu, the “light” themes etc. come together in a very cohesive way to deliver an experience that rivals that of Mac OS. But beyond the subtleties, Canonical is shaping the future of Linux on the desktop, laptop and mobile devices: the Unity interface, multi-touch support for mobile devices and more. Bottomline: having a company put its weight behind a desktop has ramifications.

So as much as I love thy, KDE, for now we shall part ways. I’m still using some KDE apps (like digiKam), but until Canonical decides to officially adopt Kubuntu, GNOME it is.

]]>
http://floatingsun.net/2010/09/09/and-just-like-that-im-a-gnome-user/feed/ 3
Enough with Linux as a second class citizen! http://floatingsun.net/2008/03/18/enough-with-linux-as-a-second-class-citizen/?utm_source=rss&utm_medium=rss&utm_campaign=enough-with-linux-as-a-second-class-citizen http://floatingsun.net/2008/03/18/enough-with-linux-as-a-second-class-citizen/#comments Tue, 18 Mar 2008 17:04:02 +0000 Diwaker Gupta http://floatingsun.net/2008/03/18/enough-with-linux-as-a-second-class-citizen/ Related posts:
  1. Webcams in Linux
  2. Skype adds video for Linux
  3. Year of the Linux Desktop
]]>

I’m sick of Linux being treated like a second class citizen. Hardware and software vendors alike almost proudly display “Supported for PC and Mac” tag lines. Technically, that doesn’t even make sense, because both Windows and OS X can now run on pretty much the same hardware. And so can Linux. Even from a market share stand point, I can understand vendors’ desires to advertise out of the box Windows support, but the market share of OS X is not substantially greater than that of Linux (specially if you put together all the different distributions).

But most importantly, I think it just being mean to the open source community. Consider the recent [[http://www.apple.com/pr/library/2008/03/18safari.html|Safari announcement]]. Now it is well known that Safari is based on [[http://webkit.org/|WebKit]] which has its roots in [[http://konqueror.kde.org/features/browser.php|KHTML]], the HTML renderer originally developed by the [[http://kde.org|KDE community]]. To its credit, Apple has showed its interest in giving back to the community and [[http://arstechnica.com/journals/linux.ars/2007/07/23/the-unforking-of-kdes-khtml-and-webkit|WebKit and KHTML developers are collaborating]] to share their innovations.

But then why does Apple release Safari for Windows and Mac only? WebKit works fine on all platforms (both with GTK and QT) so there’s really no good reason. For that matter, what about iTunes? Why isn’t there an iTunes equivalent for Linux from Apple itself? Why does it want to alienate so many iPod and iPhone users who have Linux on their desktop? What about keyboards and wireless mice? Or monitors and hard drives and webcams and tablets and microphones? Or any number of the zillions of peripherals out there.

If you read the news, there is no dearth of evidence that open source in general, and Linux in particular, is impacting our daily lives more than ever before. Even if you don’t realize it. From embedded systems to mission critical systems, from enterprise systems to the OLPC, from news papers to television stations, Linux and open source are every where. For a comprehensive in-depth article and lots of numbers backing these claims, I highly recommend [[http://www.dwheeler.com/oss_fs_why.html|this article]] by David Wheeler. How long will we have to wait before vendors finally accept that this is a customer base that they can NOT afford to ignore? How long will the community will have to keep proving itself over and over again that it is NOT a bunch of nerdy hobbyists who have no connection with reality?

**Update**: Here are some more resources on Linux/open source usage:
* [[http://mtechit.com/linux-biz/|Linux in business]]: business by categories
* [[http://www.aaxnet.com/design/linux2.html|Companies using Linux]]
* [[http://www.desktoplinux.com/index.html|Lots of news about Linux on the desktop]]: several big vendors like Dell and Lenovo now sell laptops and desktops pre-installed with Linux

]]>
http://floatingsun.net/2008/03/18/enough-with-linux-as-a-second-class-citizen/feed/ 6
Skype adds video for Linux http://floatingsun.net/2007/11/08/skype-adds-video-for-linux/?utm_source=rss&utm_medium=rss&utm_campaign=skype-adds-video-for-linux http://floatingsun.net/2007/11/08/skype-adds-video-for-linux/#comments Thu, 08 Nov 2007 18:10:27 +0000 Diwaker Gupta http://floatingsun.net/2007/11/08/skype-adds-video-for-linux Related posts:
  1. Multimedia support in Linux
  2. Google Talk
  3. Vling – Now in Beta
]]>
Smart move by Skype, and about frikking time! Skype 2.0 beta for Linux: the Great Revolution – Skype for Linux

]]>
http://floatingsun.net/2007/11/08/skype-adds-video-for-linux/feed/ 0
ESR on World Domination http://floatingsun.net/2006/12/03/esr-on-world-domination/?utm_source=rss&utm_medium=rss&utm_campaign=esr-on-world-domination http://floatingsun.net/2006/12/03/esr-on-world-domination/#comments Mon, 04 Dec 2006 06:30:47 +0000 Diwaker Gupta http://floatingsun.net/blog/2006/12/03/772/ Related posts:
  1. Web 2.0 Around the World
  2. The Physical World as a Virtual Reality
  3. Unsung heroes of the FLOSS world
]]>

Just finished reading [[http://www.catb.org/~esr/writings/world-domination/world-domination-201.html|World Domination 201]] by ESR and Rob Landley. Its an OK read. They make a good case, but it didn’t come across as urgent and compelling as probably they intended it to. But most catalysts of change tend to be a little extreme, so I actually like the way the article has been written. It remains to be seen how much traction can it generate.

]]>
http://floatingsun.net/2006/12/03/esr-on-world-domination/feed/ 0
Webcams in Linux http://floatingsun.net/2006/10/26/webcams-in-linux/?utm_source=rss&utm_medium=rss&utm_campaign=webcams-in-linux http://floatingsun.net/2006/10/26/webcams-in-linux/#comments Thu, 26 Oct 2006 16:54:09 +0000 Diwaker Gupta http://floatingsun.net/blog/2006/10/26/763/ Related posts:
  1. Enough with Linux as a second class citizen!
  2. Skype adds video for Linux
  3. Linux and Closed Source Software
]]>

Gone are the days when getting webcams to work under Linux was a distant dream. Until recently I was myself under the illusion that //very few// (if any) webcams work under Linux and even if they do, what good would they be since I wouldn’t be able to use them with Yahoo or MSN or NetMeeting.

Take a look at the [[http://mxhaard.free.fr/spca5xx.html|list of supported webcams]] here. And this is just using **one** driver. Several Philips and Logitech webcams are supported using the [[http://www.saillard.org/linux/pwc/|pwc]] and [[http://www.ee.oulu.fi/~tuukkat/quickcam/quickcam.html|qc]] ([[http://qce-ga.sourceforge.net/|alternative]]) drivers. I just noticed yesterday that my two years old Creative Webcam NX-Pro was also supported by the spca5xx driver. Excited, I got home and plugged the webcam in and voila! //It just worked ™!//

I then went on the test the webcam with [[http://camorama.fixedgear.org/|camorama]], [[http://ekiga.org|Ekiga]], [[http://openwengo.com|Wengophone-NG]] and of course, my beloved [[http://kopete.kde.org|Kopete]]. Infact, I was even able to broadcast my webcam on Yahoo using Kopete! Suh-weet!

Readers who are going “so whats the big deal, we’ve been doing this in Windows for years” must realize that all this has happen **without any** (or little) cooperation from the vendors and manufacturers. This is reverse engineering at its best. Imagine how good desktop linux can be once vendors start endoring and supporting products the way they release drivers for PC and Mac.

So if you have a webcam lying around and you wished it worked on Linux, give it a spin. In all probability, it just will :-)

]]>
http://floatingsun.net/2006/10/26/webcams-in-linux/feed/ 1
Andrew Morton moves to Google http://floatingsun.net/2006/08/07/andrew-morton-moves-to-google/?utm_source=rss&utm_medium=rss&utm_campaign=andrew-morton-moves-to-google http://floatingsun.net/2006/08/07/andrew-morton-moves-to-google/#comments Tue, 08 Aug 2006 05:34:17 +0000 Diwaker Gupta http://floatingsun.net/blog/2006/08/07/705/ Related posts:
  1. Google Earth – System Requirements
  2. Google Maps update
  3. Skype adds video for Linux
]]>
Now Google has a foot in the mainstream kernel development as well. Whats next? Linux Today – Morton Gets Googled

]]>
http://floatingsun.net/2006/08/07/andrew-morton-moves-to-google/feed/ 0
Linux and Closed Source Software http://floatingsun.net/2006/08/03/linux-and-closed-source-software/?utm_source=rss&utm_medium=rss&utm_campaign=linux-and-closed-source-software http://floatingsun.net/2006/08/03/linux-and-closed-source-software/#comments Fri, 04 Aug 2006 05:00:20 +0000 Diwaker Gupta http://floatingsun.net/blog/2006/08/03/698/ Related posts:
  1. Enough with Linux as a second class citizen!
  2. The silent victories of open source
  3. Linux vs. Solaris
]]>

I just read [[http://www.osweekly.com/index.php?option=com_content&task=view&id=2270&Itemid=449|this article]] on OSWeekly.com (via [[http://linux.slashdot.org/linux/06/08/03/0349226.shtml|Slastdot]]) and I must say I found the article pretty lame. Let me elaborate.

* F/LOSS software is usually open-source and adheres to open standards. Why should the FLOSS community then be help responsible for “finding some ground with closed source software”? Shouldn’t it be the other way round?
* As others have noted, the article is self contradictory. It talks about the lack of “exciting” software on Linux, and then goes on to blabber about Outlook-like software. Outlook has been around since forever now. What major innovations has personal information management seen in that space? Do people really think Outlook is an example software?
* Besides the fact that the article is inconsistent about “exciting” software, the premise itself is wrong. There are //tons// of exciting software on Linux. Infact, much //much// more than there ever will be on M$. The notion of what is exciting may of course vary among individuals, but do you really think that a closed source platform would be more conducive than an open source platform for hackers and developers who want to build truly creative software.
* Needless to say, I think there are several fairly robust and very well done software on Linux that can compete well with any closed source software. Let me list a few here (note that although some of the below //are// available for Windows, they are all still very much F/LOSS and all have their roots in Linux platforms):
* [[http://getfirefox.com|Firefox]] — browser
* [[http://amarok.sf.net|Amarok]] — music player/organizer
* [[http://qalculate.sf.net|Qalculate]] — calculator
* [[http://kopete.kde.org|Kopete]] — Multi-protocol Messenger (before you start whining, the reason why Kopete “lacks” some “features” is because the protocols are proprietary. For apples to apples comparison, compare closed-source Jabber clients with their open source counterparts)
* [[http://inkscape.org|Inkscape]] — Vector graphics
* [[http://httpd.apache.org|Apache]] — the web server that ushered Linux into the server market (//hat tip: Shashikant//).
* Finally, in a lot of cases, the software on Linux isn’t good enough simply because the market forces are not driving software development. Naturally there’s bound to be some divergence between customer requirements/expectations and what developers deliver. Remember that the bulk of this stuff is built on volunteer time.

I agree that a lot of areas could use some user-oriented development. In particular audio and video editing, word-processing, image-processing, video games etc.

]]>
http://floatingsun.net/2006/08/03/linux-and-closed-source-software/feed/ 7
Two interesting reads http://floatingsun.net/2005/11/27/two-interesting-reads/?utm_source=rss&utm_medium=rss&utm_campaign=two-interesting-reads http://floatingsun.net/2005/11/27/two-interesting-reads/#comments Sun, 27 Nov 2005 22:11:12 +0000 Diwaker Gupta http://floatingsun.net/blog/2005/11/27/431/ Related posts:
  1. Today’s interesting reads
  2. Today’s interesting reads
  3. Today’s interesting reads
]]>

One technical: [[http://www.bitrot.de/macswitch.html|When a Linux user buys Apple's Mac mini]]

One non-technical: [[http://www.bitrot.de/workinusa.html|Working in the USA - Experiences of a European]]

Someday I need to write my own versions of both of the above. Someday.

]]>
http://floatingsun.net/2005/11/27/two-interesting-reads/feed/ 0