Tag Archives: tips

Burn ISO from command line in Linux

Quick and simple way of burning an ISO image from the command line in Linux.  First, find your devices with wodim, the use the cdrecord command to burn the ISO image. $ wodim --devices wodim: Overview of accessible drives (1 found) : ------------------------------------------------------------------------- 0 dev='/dev/scd0' rwrw-- : 'LITE-ON' 'DVDRW LH-20A1P' ------------------------------------------------------------------------- $ cdrecord -v dev='/dev/scd0' Download/archlinux-2009.08-netinstall-i686.iso Then, you’re done.
Posted in quickfire | Tagged | Leave a comment

Installing Dropbox on Ubuntu (and others)

I’ve been using dropbox to sync and share files between my various computers for quite some time, and overall have been very pleased.  However, one area things are not so great… documentation for installation on Linux.  After having to reinstall on my notebook, I decided to somewhat document the hidden part of the process. After downloading [...]
Posted in quickfire, tips | Also tagged | 1 Comment

Using source control for config management

A project involving asterisk has forced me to find a way to help manage my configurations. I’m going to give using subversion a go at helping me to keep some level of change control and really simple backups, and I’m going to share my thoughts on that here. This post doesn’t have any [...]
Posted in projects | Also tagged , , | Leave a comment

Super simple, limited and basic look at tar

Create a tar archive tar -c -f archive.tar * Create a compressed archive with gzip tar -c -z -f archive.tar.gz * You can also condense down the commands like so.. tar -czf archive.tar.gz *
Posted in tips | Also tagged | 1 Comment