I wanted to upgrade OpenOffice on my Ubuntu 8.10 installation. Surfing the web I found numerous PPA that could be used, but the easiest method seemed to be below.
- Download the debs from the OpenOffice.org site
- Tar -xvzf them
- cd to the directory containing the debs
- sudo dpkg -i o*.deb
- sudo dpkg -i desktop_integration/o*.deb
A big thanks to this article at The Open Sourcerer blog
Having recently acquired a DroboShare I have been experimenting with the various applications that are currently available and install. What I felt was missing from the collection was Gerd Knorr’s webfsd. This is a simple and very lightweight http server for serving static content. This would provide me with web access to the contents of my Drobo from any web browser, including Safari on my iPhone.
The question I had was how on earth do I go about doing this? Although Drobo provide an SDK with the information on how to do this, what I needed was a step by step guide to give me a push in the right direction. Fortunately I came across this blog post which takes you through the steps of compiling MediaTomb. This was exactly what I needed. I am familiar with compiling applications for my Ubuntu system, what I wasn’t familiar with was cross compiling – I didn’t know where to start!
I was a little nervous about doing all of this on my main system, so I created a virtual machine of Ubuntu Intrepid 8.10 using VirtualBox. I followed the instructions to the letter up until the compilation of the libraries, I then substituted the webfsd compilation, and the result is now available for download at the DroboSpace Developer Community
Categories: General, Hardware, Operating Systems, Software Tags: drobo, droboapp, droboshare, intrepid, Ubuntu, virtualbox, webfs, webfsd
For the last year I have been using Synergy at work to enable me to use my Ubuntu laptop using the keyboard and mouse connected to my Windows desktop. All worked well until I tried to type the ‘@’ symbol on my laptop, instead I would get a ‘Ω’. Considering the ‘@’ symbol is important in our modern life, this was a real pain.
Searching the web I could find other people with the same problem, but sadly no solution. Until today!
I stumbled across this blog entry on Synergy Problems and Workarounds and I now have the ‘@’ symbol back on my laptop when using Synergy!
The solution is very simple, in a terminal window type the following:-
echo keycode 24 = q Q at at at at | xmodmap -
Brilliant, thanks to Delta Nova!
Well I am not sure if this bug is general accross the Ubuntu 8.04 family, but I have a Xen based VPS running Virtualmin and recently stumbled accross an issue with the quota calculations. You can follow the thread posted in the Virtualmin bug tracker but the basic problem was that I got the following errors:-
root@ycits01:/# quotacheck -u -g -f -m /
quotacheck: Cannot create new quotafile //aquota.user.new: File exists
quotacheck: Cannot initialise IO on new quotafile: File exists
quotacheck: Cannot create new quotafile //aquota.group.new: File exists
quotacheck: Cannot initialise IO on new quotafile: File exists
The solution was to run the following:-
mv /aquota.user.new /aquota.user.broken
mv /aquota.group.new /aquota.group.broken
quotacheck -u -g -f -m /
So I hope this is of use to somebody, now all I need to do is find out where I should report the bug!