Home

Make a USB Drive That Can Boot Some LiveCD ISO Files

I created a USB thumb drive that can boot some LiveCD ISO files. This is useful for me because I can copy the ISO files to the USB thumb drive instead of burning CDs or DVDs. (Optional) modified my /e

Ripping Audio CD in OpenSolaris

Install the SUNWcdrw package, create the filesystem(s)Open a Terminal and type: 12pfexec pkg install SUNWcdrwpfexec zfs create -o mountpoint=/music rpool/music Create a ripCD.sh script12345678910#!/bi

OpenSolaris 2009.06, dev setup

Snapshot the root zfs poolThis allows us to revert to the pristine files at a later date. 1pfexec zfs snapshot -r rpool@firstboot (Optional) Disable system beep from Terminal(Optional) Alias “ls” and

Batch resize photos to thumbnail size

On OpenSolaris, make sure SUNWimagick is installed1pfexec pkg install SUNWimagick ScriptThis script will resize all photos (ending in JPG) to a 200x150 size thumbnail.These will overwrite the files in

Installing PostgreSQL 8.4.3 in OpenSolaris

Download the sourceDownload the file postgresql-8.4.3.tar.gz from http://www.postgresql.org/ftp/source/ Save this in /src You may also want to verify the file signature or checksums and read the READM

Installing Tcl 8.5.8 in OpenSolaris

Download the sourceDownload the file tcl8.5.8-src.tar.gz from http://sourceforge.net/projects/tcl/files/ Save this in /src You may also want to verify the file signature or checksums and read the READ

Rename all files that end in 'JPEG' with 'jpg'

ScriptThis script will save the path and name of all files ending in JPEG in the FN variable.Then goes through each entry and renames the files (and displays the file it’s on) 123456#!/bin/bashFN=$( f

Installing FFmpeg 0.5.1 in OpenSolaris

Download the sourceDownload the file ffmpeg-0.5.1.tar.gz from http://ffmpeg.org/download.html Save this in /src You may also want to verify the file signature or checksums and read the README or INSTA