• Favorite Desktop Environment 
    • KDE
    • Gnome
    • Fluxbox
    • XFCE
    • Enlightenment
    • I live life in the console
    • Other


  created: Jun 29, 2010
chromium logo

Use update instead of install chromium-browser if you already have it installed. This will update the previously installed version.

  1. $ sudo add-apt-repository ppa:chromium-daily/ppa
  2. $ sudo apt-get update
  3. $ sudo apt-get -y install chromium-browser


  created: Jun 26, 2010

I stumbled across pv the other day and found it interesting. It is not so much a utility as eye-candy, but useful non-the-less.

from the man page: pv allows a user to see the progress of data through a pipeline, by giving information such as time elapsed, percentage completed (with progress bar), current throughput rate, total data transferred, and ETA.

First, install pv with what ever package manager you use.

  • # cd /usr/ports/sysutils/pv && make install clean
  • # apt-get install pv
  • # yum install pv

Using pv is analogous to using cat, only with a progress bar and some extra goodies!

  1. # pv file.iso | dd of=/dev/cd0 bs=64k
  1. (server)
  2. # pv file.iso > nc -l 4444
  3. (client)
  4. # nc host 444 > file.iso


  created: Jun 26, 2010

Simply press s immediately after boot time (while RAM is counting up).

  1. Boot: 1 PC Engines ALIX.2 v0.99
  2. 640 KB Base Memory
  3. 261120 KB Extended Memory
  4.  
  5. 01F0 Master 848A SanDisk SDCFB-1024
  6. Phys C/H/S 1986/16/63 Log C/H/S 993/32/63
  7.  
  8. BIOS setup:
  9.  
  10. *9* 9600 baud (2) 19200 baud (3) 38400 baud (5) 57600 baud (1) 115200 baud
  11. *C* CHS mode (L) LBA mode (W) HDD wait (V) HDD slave (U) UDMA enable
  12. (M) MFGPT workaround
  13. (P) late PCI init
  14. *R* Serial console enable
  15. (E) PXE boot enable
  16. (X) Xmodem upload
  17. (Q) Quit


  created: Jun 25, 2010
  1. # mkdir /mnt/nanobsd
  2. # mount /dev/da0s1a /mnt/nanobsd
  3. # mkdir /mnt/nanobsd/usr/ports
  4. # mount -t nullfs /usr/ports /mnt/nanobsd/usr/ports
  5. # mount /dev/da0s3 /mnt/nanobsd/cfg
  6. # chroot /mnt/nanobsd
  1. # cd /usr/ports/foo/bar
  2. # make install clean
  3. # mkdir /cfg/local
  4. # cp -R /usr/local/etc/* /cfg/local
  1. # exit
  2. # umount /mnt/nanobsd/usr/ports
  3. # umount /mnt/nanobsd/cfg
  4. # umount /mnt/nanobsd


  created: Jun 22, 2010

For when you have a brain lapse...

  • 2400
  • 4800
  • 9600
  • 19200
  • 38400
  • 57600
  • 115200