Categories
Tags
aastra apache asterisk centos cheatsheet chrome cisco comic dd dropbox email esxi fedora file sharing find gmail gnome google grep im feeling lucky linux migration networking olf openfiler openoffice replace rpl scm search security sed sp3 spyware ssh storage subversion tips tomcat twitter ubuntu vmware voip windowsArchives
Tag Archives: tips
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 [...]
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 [...]
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 *
Burn ISO from command line in Linux