2009 October 08

Erase Varible stty erase ^H

By WladyX on 8 October, 2009 | HP-UX | A comment?

Sync with Unison


### ROOT SYNC PATHS ###

# first root is my home directory on this laptop
root = /home/micah/

# second directory is my desktop's home folder over SSH
root = ssh://micah@192.168.1.2//home/micah/

### PATHS TO SYNCHRONIZE ###

# sync all of my email data (will ignore parts later)
path = .mozilla-thunderbird/micah.default/

# only sync up bookmarks for firefox
path = .mozilla/firefox/micah.default/bookmarks.html

# sync all gFTP for the bookmarks and cache
path = .gftp/

# gaim/pidgin IM client logs and settings
path = .purple/

# MySQL Query Browser information and history
path = .mysqlgui/

# Personal folders
path = finances/
path = websites/
path = projects/
path = robotics/
path = email_signature

### IGNORE RULES ###

# ignore archived backups
ignore = Path websites/archive/*

# ignore the extensions folder in thunderbird as they are architecture-specific
ignore = Path .mozilla-thunderbird/micah.default/extensions/*

# I don't think these will break anything, but let's ignore anyway
ignore = Path .mozilla-thunderbird/micah.default/compatibility.ini
ignore = Path .mozilla-thunderbird/micah.default/install.log

Synchronizing 2 Ubuntu Systems with Unison

By WladyX on | General, Scripts | A comment?

Ubuntu GPG error: http://ppa.launchpad.net

W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available:
NO_PUBKEY 7D2C7A23BF810CD5
W: You may want to run apt-get update to correct these problems

gpg --keyserver subkeys.pgp.net --recv 7D2C7A23BF810CD5

gpg --export --armor 7D2C7A23BF810CD5 | sudo apt-key add -

Gentoo Blog » Ubuntu GPG error: http://ppa.launchpad.net

By WladyX on | Ubuntu | A comment?

HP 6930p sound in Jaunty

tail -n 1 /etc/modprobe.d/alsa-base.conf
#options snd-hda-intel model=laptop enable=1 index=0

Sound Solutions for Ubuntu 9.04 (Jaunty) Users | Ubuntu Geek

By WladyX on | Ubuntu | A comment?

Remove older ubuntu kernels

solution 1:

aptitude search linux- | grep ^i
sudo apt-get purge '.*-2.6.24-16-*'

solution 2:

test: dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get --dry-run remove
run: dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge

DoIT – Denny on IT: remove old ubuntu kernel solution2

By WladyX on | Kernel, Ubuntu | A comment?