Feed on
Posts
Comments

Tag Archive 'linux'

I recently needed to move a very simple ASP site to Apache for archival purposes. There was nothing of importance that the dynamic ASP was doing and as it was just for an archive, it made the most sense to turn it into simple HTML (as the whole site probably should have been in the [...]

Read Full Post »

Convert TIFF to JPEG on Linux

I wanted to convert some high resolution TIFFs that Lisa took of Bill’s paintings recently and came up with this quick and dirty conversion into JPEG:
for i in *.tif; do tifftopnm “$i” | pnmtojpeg > “${i%.tif}.jpeg”; done
That’ll convert all .tif files in a directory to JPEG (using default processing setting).
I didn’t have exiftool installed, and [...]

Read Full Post »

Evolution Hangs on Startup

I’ve had Evolution hang on start up a few times lately, I keep forgetting what I’ve done to fix it so I’m noting it here. All I’ve needed to do is to kill evolution-data-server and try to start Evolution again, so to fix this issue:
killall evolution-data-server-2.28

Read Full Post »

Apple Remote Desktop allows you to graphically administer remote OS X machines, including OS X Server. Apple uses some custom encryption over the top of the standard VNC protocol so if you are connecting from a Linux client using vncviewer you’ll get the following error message:
Server did not offer supported security type
To set the Apple [...]

Read Full Post »

As a proof of concept, yesterday I moved our Confluence installation to Solaris under VMWare from it’s current home on a Linux box. I won’t go into the background as to why I was doing this (most people would be shocked hearing I would move anything from Linux!) but the reason it was a proof [...]

Read Full Post »

For OpenAustralia DevLive, I wanted the browser to open straight into the local machine’s development instance of the web application. I also wanted to provide a bunch of project related links as bookmarks to make it easy for users to get help or submit bugs.
To change the browser start page you need to add an [...]

Read Full Post »

Introducing OpenAustralia DevLive

OpenAustralia DevLive is a prebuilt development appliance that allows you to download a ready-to-run OpenAustralia development server. No server setup, no dependencies, no worries – just download and start hacking.
It is built using SUSE Studio and openSUSE 11.1.
Downloads
The appliance is available in two formats, as a VMWare appliance (that can be run using the free [...]

Read Full Post »