Do you have a box.com Account. For those who do not know http://www.box.com, it is a cloud storage system just like http://www.dropbox.com but it uses an open standard API called OpenBox API. Domenico Rotiroti wrote a fuse driver called boxfs to mount your box.com account as a filesystem in Linux. Pretty awesome, if you compare it to Dropbox where you only sync from one folder to your Dropbox account. Well anyways over the past weekend I created a ppa repository to install boxfs onto Ubuntu in three easy steps.

  • First get python-software-properties (this will give you add-apt-repository)

    sudo apt-get install python-software-properties
    
  • Next register my ppa ppa:flazzarini/boxfs (hit ENTER when it asks you to)

    sudo add-apt-repository ppa:flazzarini/boxfs
    
  • Do an update of your apt sources

    sudo apt-get update
    
  • And finally install boxfs

    sudo apt-get install boxfs
    

You should have everything you need, to get going. To mount your box.com account do the following.

cd ~
mkdir box.com
boxfs -u YouUsername -p YourPassword box.com/

To unmount simply do

umount ~/box.com/

For any bugs please report them to https://launchpad.net/~flazzarini/+archive/boxfs


Install Firebird 2.5 onto Ubuntu 10.04 via PPA

Fri, 27 Apr 2012 by Frank Lazzarini

As of Ubuntu 12.04 Firebird 2.5 packages are included in the official repositories, but here I am focusing on installing Firebird 2.5 on older installations with Ubuntu 10.04 LTS. So you want to install Firebird 2.5 onto Ubuntu 10.04 without the need to install …

read more

Gtk using ugly theme in KDE 4.8.1 on Ubuntu 11.10 Oneiric

Sun, 25 Mar 2012 by Frank Lazzarini

I lately updated my laptop with the latest packages and I've got KDE 4.8.1 from the ppa. To my surprise all the gtk apps that I have installed look terrible, with the standard GTK look, apps like firefox/pidgin and so on. The default theme look was change …

read more

Multiple Firebird Servers on Ubuntu

Mon, 21 Feb 2011 by Frank Lazzarini

In this tutorial I will show you how to install multiple separate Firebird 2.1 servers on a single Host, lets just say you are short on budget and you want to have your testing/integration database running on the same environment as your production database, which is usually not …

read more

Install Firebird 1.5 Classic Server on Ubuntu 64bit

Mon, 22 Feb 2010 by Frank Lazzarini

In Ubuntu versions > 8.04 you will encounter the problem that there are no more packages of Firebird 1.5 Classic Server available in the package repository. Therefore we need to install all dependencies and all packages manually. Firebird 1.5 only exists in 32bit which results in even more …

read more

How to get Skype 2.1 working with your webcam on Ubuntu Karmic 9.10 32/64bit

Thu, 21 Jan 2010 by Frank Lazzarini

So I recently tried to install skype on my new Ubuntu Installation as I found out that skype wasn't available anymore in the medibuntu repositories for Karmic. So I installed the official deb package for Ubuntu 8.04 from the official skype website. All just seemed to be working fine …

read more