Tuesday, September 18, 2012

Errata - Configuring Debian GNU/Linux 6.0.5 "squeeze"

Some post-install configurations.

2012-09-18

Experimenting with text editors. Only too late do I realize Notepad++ does not have a GNU/Linux port. : o (

Geany
  • sudo apt-get install geany
  • sudo apt-get install geany-plugins
  • On squeeze, this translates to 0.19.1 : o )
  • Latest version as of this writing: 1.22
SciTE (SCIntilla based Text Editor)
  • sudo apt-get install scite
  • On squeeze, this translates to 2.03 : o )
  • Latest version as of this writing: 3.2.2
Both based on the Scintilla engine.

2012-10-01

Installing wireless.
  • sudo apt-get install firmware-ipw2x00 (via)
  • sudo /sbin/modprobe -r ipw2100 ; sudo /sbin/modprobe ipw2100
  • sudo iwconfig
  • sudo eth1 up
Success : o )

2012-10-09

Headphone jack sensing 
  • System > Preferences > Sound
  • Preferences
  • Select option "Headphone jack Sense"; this enables new Volume Control window tab, "Switches"
  • Select tab "Switches"
  • Check option "Headphone jack Sense"
The headphone jack now disables the speakers when I plug in headphones and re-enables them when I remove it.

2012-10-18

GCC

sudo apt-get install gcc

Install Citrix Receiver (via)
Filezilla

sudo apt-get install filezilla (via)

2012-11-06

Google Chrome fonts

apt-get install ttf-arphic-uming ttf-wqy-zenhei ttf-sazanami-mincho ttf-sazanami-gothic ttf-unfonts-core xfonts-kaname (via)

Had to force-quit Google Chrome before these took effect: killall chrome

2012-12-09

Keyboard key mappings for Apple A1314 Bluetooth keyboard

I want to remap the following six keycodes:
  1. Right-Command  = Compose
  2. Right-Option = AltGr
  3. Left-Command + Right-Arrow = End
  4. Left-Command + Left-Arrow = Home
  5. Left-Command + Up-Arrow = Page-Up
  6. Left-Command + Down-Arrow = Page-Down
Via:

Used command xev and obtained keycodes:
  • Super_R (Right-Command) = 134
  • Alt_R (Right-Option) = 108
  • Super_L (Left-Command) = 133
  • Left = 113
  • Right = 114
  • Up = 111
  • Down = 116
Then:
  • sudo xmodmap -e "keycode 108 = Delete"
  • sudo xmodmap -e "keycode 134 = Delete"
  • sudo xmodmap -e "keycode 113 = Left NoSymbol Home Home"
  • sudo xmodmap -e "keycode 114 = Right NoSymbol End End"
  • sudo xmodmap -e "keycode 111 = Up NoSymbol Page_Up Page_Up"
  • sudo xmodmap -e "keycode 116 = Down NoSymbol Page_Down Page_Down"
  • xmodmap -pke > ~/.Xmodmap
  • echo "xmodmap .Xmodmap" > ~/.xinitrc
Via

Make Super_L a Mode_switch key:
  • sudo xmodmap -e "add mod1 = Alt_L Meta_L Alt_R"
  • sudo xmodmap -e "add mod4 = Super_R Hyper_L"
  • sudo xmodmap -e "keysym Super_L = Mode_switch"
Make the changes permanent:
  • echo "add mod1 = Alt_L Meta_L Alt_R" >> ~/.Xmodmap
  • echo "add mod3 = Mode_switch" >> ~/.Xmodmap
  • echo "add mod4 = Super_R Hyper_L" >> ~/.Xmodmap
  • echo "keysym Super_L = Mode_switch" >> ~/.Xmodmap
To reset back to defaults:

setxkbmap -layout dvorak

Note: apparently, setxkbmap represents the new thing...no time to continue this evening but planting a seed for next time to see if I can get the above settings the same in a simpler format.
UPDATE:

Found some time on Feb 17-18, 2013, to return to this issue:
  • By default, I discovered some mappings:
    • Fn+Left = Home
    • Fn+Right = End
    • Fn+Up = Page-Up
    • Fn+Down = Page-Down
    • Fn+Delete = Delete (by default, Delete seems to really mean Backspace)
  • /usr/share/X11/xkb/ and subdirectories rules and symbols seem relevant, as background info
  • Debian stores keyboard layouts in /usr/share/X11/xkb/symbols/
  • I inadvertently chose model "macbook78"...however, via, doing so tells X to look in /usr/share/X11/xkb/symbols/macintosh_vndr for keyboard layouts and variants...none of which seem to support AltGR. Switching back to default model pc
Finally got things working:

setxkbmap \
  -model pc105 \
  -layout 'us(dvorak-intl),us(alt-intl)' \
  -option \
  -option grp:alt_shift_toggle \
  -option compose:rwin

This sets up two variants which I can toggle between using Ctrl+Shift. It uses dvorak-intl by default, which gets me the AltGr (i.e., Alternate Graphic) key and all the cool characters that go with it, like "¬" and "é". It also sets up the Compose key, which allows me to easily write ½ and ¢ and ©. : o ) I also added in variant alt-intl so other people can use QWERTY on an as-needed basis.

As I did with the VLC setup, below, I decided to copy/paste a current version of variant dvorak-intl from X.Org configuration file ¨symbols/us¨...it seems the one which shipped with Debian Squeeze represents a version quite a few years out-of-date.

I still have a few things to clean up, but I think I have figured out the core issues surrounding keyboards models, layouts, and variants, and how X.Org implements them.

Hmm, via:

cp /etc/xdg/xfce4/xinitrc ~/.config/xfce4/xinitrc

Running a script when initializing X.

I am not sure setxkbmap will help:
  • /usr/share/X11/xkb/symbols/us maps symbols to keys...not so good for multi-key presses
  • /usr/share/X11/xkb/rules/base.lst specifies models, layouts, variants, and options
    • Options seem the most plausibly helpful
    • Unfortunately, limited to switching between layouts, selecting level3 mode, control key positions, keypad settings, caps lock behavior, altwin behavior, 
Reverted dvorak-intl's handling of key D01:
//key <AD01> { [dead_acute, dead_diaeresis, apostrophe, quotedbl ] };
key <AD01> { [  apostrophe, quotedbl, dead_acute, dead_diaeresis ] };
Got it working with a custom type, inserted into file /usr/share/X11/xkb/types/extra :

    // Custom type to allow shift select to/from end of line
    type "THREE_LEVEL_SHIFT_SELECT" {
        modifiers = Shift+Control+LevelThree;
        map[None] = Level1;
        map[Shift] = Level2;
        preserve[Shift] = Shift;
        map[LevelThree] = Level3;
        map[Shift+LevelThree] = Level3;
        map[Shift+Control+LevelThree] = Level3;
        level_name[Level1] = "Base";
        level_name[Level2] = "Alt Base";
        level_name[Level3] = "Level3";
    };

I modified /usr/share/X11/xkb/symbols/us, appending the following lines to dvorak-intl:
key <LEFT> { type[Group1] = "THREE_LEVEL_SHIFT_SELECT", symbols[Group1] = [ Left, Left, Home] };
key <RGHT> { type[Group1] = "THREE_LEVEL_SHIFT_SELECT", symbols[Group1] = [ Right, Right, End] };
Thanks to Andreas for pointing me in the right direction.


2013-02-01

Google Chrome updates for flash

Using System >Administration > Synaptic Package Manager, uninstalled google-chrome-stable and installed google-chrome-unstable.

I have had some periodic issues with Adobe Flash, so upgrading in an attempt to resolve that specific issue.

After updating, Google Chrome reports, "Google Chrome is no longer updating because your operating system is obsolete." : o ) Brilliant. At least Adobe Flash works again.
Also: sudo apt-get install flashplugin-nonfree

2013-02-02

VLC installation and configuration

Did this so I can watch YouTube videos at increased speed.

Will space you all the gory details, but eventually got VLC installed and working to play YouTube videos. By default, the Debian Squeeze repository includes VLC 1.1.3...I eventually got the VLC 2.0.3 backports version working, but even this required a configuration file update from the nightly build. A pain in the butt, for sure, but it works, now....

The VLC web site helpfully shows how to get a more recent version.

sudo vim /etc/apt/sources.list
sudo apt-get update
sudo apt-get -t squeeze-backports install vlc

Unfortunately, VLC 2.0.3 needs an updated youtube.luac file....

Via this thread, found the VLC nightly builds: http://nightlies.videolan.org/

Downloaded the source via wget:

cd tmp && wget http://nightlies.videolan.org/build/source/vlc-2.1.0-20130203-0012.tar.xz

sudo apt-get install xz
sudo apt-get install lua5.1

cd tmp && xz -d /tmp/vlc-2.1.0-20130203-0012.tar.xz
tar xvf vlc-2.1.0-20130203-0012.tar
sudo cp vlc-2.1.0-git/share/lua/playlist/youtube.lua /usr/lib/vlc/lua/playlist/
cd /usr/lib/vlc/lua/playlist/
sudo luac -o youtube.luac youtube.lua
sudo rm /usr/lib/vlc/lua/playlist/youtube.lua

Tools > Preferences > Video > Output , then set it to "X11 video output (XCB)"

Tested on video 

All good : o )

2013-02-16

Amarok 2.4.1


sudo apt-get -t squeeze-backports install amarok

Adobe Reader 9.5.3

cd ~/Downloads && wget ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.3/enu/AdbeRdr9.5.3-1_i386linux_enu.deb

sudo dpkg -i AdbeRdr9.5.3-1_i386linux_enu.deb

2013-02-24

Volume control sound theme

Volume Control, then select tab Sound Theme, select Default alert sound and checkbox "Enable window and button sounds"

Ghostview

Installed GhostView, via

sudo apt-get install gv

2013-02-28

clisp

sudo apt-get install clisp

2013-03-03

DVD CSS

My neighbor came over ancd attempted to play a NetFlix DVD (The Crash of 1929) but neither Totem Movie Player 2.30.2 nor VLC media player 2.0.3 could play it.

Via:

sudo apt-get install libavcodec-extra-53
wget http://www.deb-multimedia.org/pool/non-free/w/w32codecs/w32codecs_20110131-0.1_i386.deb
sudo dpkg -i w32codecs_20110131-0.1_i386.deb

wget http://www.deb-multimedia.org/pool/main/libd/libdvdcss/libdvdcss2_1.2.10-0.3_i386.deb

sudo dpkg -i libdvdcss2_1.2.10-0.3_i386.deb

After this, the DVD played just fine.

2013-03-17

curl

Via:

sudo apt-get install curl

2013-03-25

icedtea plugin


sudo apt-get install icedtea6-plugin

Installing so I can run the VeriSign SSL certificate checker

2013-04-20

java


sudo apt-get install sun-java6-jre


Monday, September 17, 2012

Sacramento Ghostbusters

Via the Sacramento Car Cruise event:

www.SacGhostbusters.wix.com/HQ


Divine Comedy

Nel mezzo del cammin di nostra vita
mi ritrovai per una selva oscura,
ché la diritta via era smarrita.

Midway upon the journey of our life
I found myself within a forest dark,
For the straightforward pathway had been lost.


Via

What would you be like if you hadn't heard the word “no” for 30 years?

Via Stephen Fry.

Saturday, September 15, 2012

Surewest Fiber to the Home (FTTH): Allied Telesis AT-iMG646BD-ON Active Ethernet fiber intelligent Multiservice Gateway (iMG)

In August 2007, we switched to Surewest Fiber (18 Mbps down/up) for phone and internet connectivity.

Surewest techs wall-mounted an Allied Telesis AT-iMG646BD-ON Active Ethernet fiber intelligent Multiservice Gateway (iMG) on the side of our duplex:
"With full routing and multicast capabilities, the AT-iMG646BD simultaneously delivers high quality IP Video, up to four lines of VoIP, and differentiated data services over 10/100T x 6 ports.Security for the service provider and subscriber are ensured through stateful inspection firewall and NAT. The AT-iMG646BD-ON accelerates network convergence through proven interoperability with major softswitch vendors using MGCP, SIP, and H.323 VoIP protocols. Designed for one- or two phase-installation, the AT-iMG646BD-ON has integrated fiber drop cable termination and fiber splice protection. A single fiber uplink ensures efficient use of network infrastructure."
We received:

  • Model AT-iMG646BD-ON
  • S/N: A03870G072300460 C
  • Manufacture date: June 2007
LED's:

  • Pwr: Lit ("The gateway is receiving power and the voltage is within an acceptable range.")
  • Syst: Unlit ("The unit is working normally.")
  • WAN: Lit ("A WAN link has been established.")
  • VOIP: Flashing ("The VoIP network is operating.")

The tech markered "Paul 8-6-07" inside the box.

The tech secured the outer enclosure with a standard slotted screw and the inner enclosure with a hex security screw.

Our setup had four RJ-11 (phone) pigtail plugs and six RJ-45 (ethernet) pigtail plugs. RJ-11 plug #1 was unplugged, with one twisted-pair from our office's CAT cable plugged into it, and two other twisted pairs plugged into the #1 RJ-45 port.

Large natural number

Via:

"You can write any valid computer program as a string of finite length from a finite alphabet. This means the set of programs is countable. (This should not be surprising--everything is ones and zeroes, after all, so you always end up mapping your program to a really large natural number to use it.)"

Friday, September 14, 2012

Effort monitoring

Had no idea:

"My advice is to get yourself tested, supplement, and continue testing. http://wellnessfx.com is a great service for minimum effort monitoring. Alternatively you can use cash-based services like this to order easily and without a doctor: http://www.mdlabtests.com/Vitamin-Tests/081950-Vitamin-D-25-Hydroxy.html "

Thursday, September 13, 2012

Day five - Configuring Debian GNU/Linux 6.0.5 "squeeze"

Re-installed Debian GNU/Linux 6.0.5 "squeeze" this evening and went through all four days of documented changes in about one hour. What a difference good documentation makes.

The install process went through it's normal hiccup with detecting network hardware...I modified check-missing-hardware as before, then it seemed to get stuck again during detection of the hard drive. I switched to Ctrl + Alt + F4 to watch the system messages, and noticed the kernel time out several times in a row. Then the install started moving forward again.

Investigating why my hard drive seems to continuously click when parking the head.

Wednesday, September 12, 2012

Labelers

Slowly going through GTD...reviewing labelers:
  • Brother Desktop Office Labeler with Carry Case (PT2030VP) (link)
    • $55
    • Wastes tape
    • Includes A/C adapter
  • Epson LabelWorks LW-400 Label Maker (C51CB70010) (link)
    • ~$40
    • Efficient use of tape
    • A/C adapter not included - $25 for a 6.5V, 1.5A adapter (link)
  • Epson LabelWorks LW-300 Label Maker (C51CB69010) (link)
    • ~$30
    • Efficient use of tape
    • A/C adapter not included - $25 for a 6.5V, 1.5A adapter (link)
    • Basically the same as the LW-400 without a backlit display and a few other bits.
I feel such frustration trying to find a label maker which meets my needs:
  • AC adapter/rechargable
  • Efficient use of tape (scratch Brother)
  • Low cost for replacement tape (anyone?)
  • Low cost for the initial unit
David Allen uses the Brother PT-18R, which does not meet my needs for initial cost (as of this writing, ~$100) or efficient tape use, but it does use desk space efficiently and comes with an AC adapter.

At this point, I will probably go with the Epson LabelWorks family...not sure the LW-400 really warrants the extra money, for my needs. The $25 LabelWorks AC adapter seems really over-priced...Epson publishes the specification for the unit in the user manual: 6.5V, 1.5A (~10W). They do not specify the DC plug, though.

A quick read on coaxial power connectors seems to indicate maybe an EIAJ connector.

Tuesday, September 11, 2012

Day Three - Configuring Debian GNU/Linux 6.0.5 "squeeze"

More pedestrian things, tonight.

Configure vim colors

Via my 2008 post:
  • sudo cp /usr/share/vim/vim72/colors/koehler.vim /usr/share/vim/vim72/colors/koehler.vim.bak
  • I did not actually finish this one...I think I changed it when I edited software....
Configure vim  .vimrc
  • From my 2009 post, copied and pasted into ~/.vimrc .
  • Historical note: the "rc" in ".vimrc" derives from "runcom", from the MIT CTSS system, ca. 1965. More.
Configure GNOME Terminal 2.30.2 colors

Via my 2008 post:
  • Font: Terminal, 6-point or Monospace Regular 10 pt.
  • Default Foreground Color="0,255,0"
  • Default Bold Foreground="255,255,255"
  • Default Background="0,55,0"
  • Default Bold Background="85,85,85"
  • Lines of scrollback: 9999
  • Rows: 100
  • Columns: 100
Not sure how to resize automatically to 80x43?
  • Using gconf-editor does not seem to work
  • Changed command of Terminal to "gnome-terminal --geometry=80x43"
Install Eclipse Extensible Tool Platform and Java IDE 
via Software Center
  • Search for Eclipse Extensible Tool Platform and Java IDE
  • Select, then select button Install
  • Done; close Software Center

Paw prints in the concrete

Saw some paw prints in the concrete near Southside Park today. : o )

I also noticed a small sticker from Sacramento graffiti artist cuppakafka:


and another from the web site http://www.crimethinc.com/tools/stickers.html


but not as great as my all-time favorite piece of graffiti, from West Sacramento...the Nor Door : o )


Monday, September 10, 2012

Day two - Configuring Debian GNU/Linux 6.0.5 "squeeze"

Add image of Carl Sagan to Cosmos screensaver

  • cd /usr/share/backgrounds/cosmos && sudo wget http://apod.nasa.gov/apod/image/9612/sagan_uc_big.jpg
  • Because...Carl Sagan...Cosmos
Investigate clicking when hard drive parks head
  • Via this post, I hear a clicking when the hard drive parks it's head.
  • Quiet, but noticeable
  • sudo hdparm -B 254 /dev/sda
  • Still hearing the hard drive parking it's head
  • ATA FUJITSU MHT2040A 006C PQ : 0 ANSI: 5
  • Install smartmontools package via Software Center
  • Ran sudo smartctl -A /dev/sda ... not sure how to parse the results
  • Edited /etc/hdparm.conf 
    • sudo vim /etc/hdparm.conf 
    • apm = 255
    • apm_battery = 255
    • sudo update-rc.d hdparm defaults
  • ?

Configure printing
  • System > Administration > Printing
  • Add > Printer
  • Expand "Network Printer"
  • Select "HP LaserJet CP1525nw"...popup "Searching for drivers" appears
  • Select "Select printer from database", then "HP", then button "Forward"
  • Select model "Color LaserJet cp1518ni" and Drivers "HP Color LaserJet cp1518ni hpijs pcl3, 3.10.6 [en] (recommended), then select button "Forward"
  • Set Printer Name = HP-Color-LaserJet-cp1525nw, Description = HP Color LaserJet cp1525nw, then select button "Apply"
  • Authenticate to complete the test, if necessary
  • Print test page...prints successfully in color

Heater core

Replaced the stock heater core in late July 2007, after 11 years. Today, roughly five years later, my mechanic told me today the replacement has failed.

Reading through the Ford Escort forums how-to's...wow, about as bad as I remember it from reading about it years ago.

Smart ideas

  • Wear gloves...e.g., http://www.mechanix.com/automotive/the-original-glove
  • Use something like a small bbq-fork to pry off plastic parts
  • Tape screws for each panel to the panel itself
  • Put painted marks on the cable to help with re-installing the heater cables
  • Pull up on parking brake
  • Put some grease on the speedometer head where the cable clips in because Ford did a poor job of doing this at the factory. the result is that the needle would jump all over the place on these cars.
  • Burp the coolant system
  • Lay a thick towel or blanket across the e-brake and seat belt components when you remove and lay your dash upside down across them.
  • Do not get a replacement core from AutoZone as it is inferior core. I say this as i am about to do this job again on this car. 
  • Get some angled wrenches and screw drivers if your going to do it because some of the bolts/screws at the base of the windsheild are a _________. (Insert Favorite Words Here)
  • its important not to rush when doing larger projects and remember to plan ahead.
  • re-secure (zip-tie) the speedometer cable back to the battery tray as it were originally
  • Replace heater blower motor
  • Check the state of the evaporator core
  • Tighten up all the fasteners you can find on the removed dash assembly
  • Power wash the seats and carpet, lube up pedal pivots and cables, wash all the plastic bits that come off and clean the inside of the windshield. 
  • Pulling the dash really is a breeze. If you don't follow the manual. If you disconnet the heater/ac controls, radio antenna, speedo cable. You can then remove a combo of 13 to 14 bolts and nuts. When the dash is pulled forward you can disconnect 2 multi connector plugs and the speedo from the cluster and pull the dash as a whole. It takes doing it the hard way once to curse ford, chiltons, and haynes for instructing you the wrong way of doing it.
Videos

http://www.youtube.com/watch?v=W0qJhyNRHx0
http://www.youtube.com/watch?v=Dh8uFGud70c

Preventative maintenance

Backflushing: "I think doing regular radiator service helped keep it alive. Doing back flushing by unplugging the heater core from the engine, then attaching a hose to it to get all the gunk out. Did that every 3 years to the car."

Alternatives

Via Youtube comment [sic]: "bout a cheap heater core from napa, Cut a hole in the firewall just about 3/4'' all around the edges of where it will sets, and replaced it using rubber gasket material and 16 ga. steel to cover the hole with 4 small self tapping screws for when it happens again, be damned if i'm gunna go thru all that work atleast twice in the life of this car. Turns a 4-5 hr. job into about 20 min. and there is no problems at all." ...cordless spiral saw? Heh. Someone did this with die grinder and cutoff wheels....

Sunday, September 09, 2012

Configuring Debian GNU/Linux 6.0.5 "squeeze"

OK, I'm in....

17:42

Install Chromium via Software Center
  • Select Internet > Web Browsers
  • Select Chromium > Install
  • Done; close Software Center
Configuring Chromium
  • Add icon to my Desktop: 
    • Applications > Internet
    • Right-select on Chromium and select "Add this launcher to Desktop"
  • Incognito mode by default:
    • sudo vim /etc/chromium-browser/default
    • add "--incognito"
    • Close
  • Run Chromium
  • Sync Chromium
    • Wrench > Options > Personal Stuff > Sync > Set Up Sync...
    • Log-in to Google Account
    • On screen Configure sync, select "Keep everything synced", then select "OK"
    • Error appears: "The sync server is busy, please try again later." x_x
    • Chromium Version 6.0.472.63 (59945) Built on Debian 6.0, running on Debian 6.0.5
    • about:sync
      • Authenticated null
      • Last Synced null
      • null null
    • Via this post from Feb 2012: "The problem is that the chromium version is too old." Ah.
    • From Wikipedia: "Chrome 6 was released in both a stable and beta version on 2 September 2010 as version 6.0.472.53" and "Chromium 23.0 was released on 9 August 2012, with the initial release version 23.0.1231.0." Ouch. So I have a two-year old browser.
    • Since Debian will not update Chromium except for security/severe bugs, I am stuck with version 6.
Install Google Chrome via downloaded deb package
  • Download Debian package from  https://www.google.com/intl/en/chrome/browser/
  • System > Administration > Synaptic Package Manager
    • Error: "Failed to run /usr/sbin/synaptic as user root. Wrong password."
    • Ah, via this post, it attempts to run "su-to-root -X -c /usr/sbin/synaptic", which fails because I locked the root account
    • Hmm..."su-to-root -p "k" -X -c /usr/sbin/synaptic" returns error "Starting without administrative privileges. You will not be able to apply any changes. But you can still export the marked changes or create a download script for them."
    • It took some digging, but I discovered the answer: I changed the Debian menu item command from su-to-root -X -p "user" -c /usr/sbin/synaptic to gksu -S /usr/sbin/synaptic (see the link for details)
  • Cannot figure out how to install downloaded package through Synaptic Package Manager
  • Install via command line instead
    • Via this post
      • sudo dpkg -i /home/k/repo/google-chrome-stable_current_i386.deb
      • sudo apt-get -f install , which installed libcurl3 (7.21.0-2.1+squeeze2) and libssh2-1 (1.2.6-1)
    • Applications > Internet > Google Chrome
  • It works! Version 21.0.1180.89
Configuring Google Chrome
  • Add icon to my Desktop: 
    • Applications > Internet
    • Right-select on Google Chrome and select "Add this launcher to Desktop"
  • Incognito mode by default:
    • Right-select on Desktop Google Chrome launcher, then select Properties
    • Add "--incognito" to the end of the text in text box "Command"
    • Close
  • Sync Google Chrome
    • Wrench > Settings > Sign In > Sign in to Chrome
    • Log-in to Google Account
    • Select button "OK, sync everything"
  • Install LastPass extension
    • Download extension https://download.lastpass.com/lpchrome_linux.crx
    • Hmm...Google Chrome reports message, "Extensions, apps, and user scripts can only be added from the Chrome Web Store." 
    • Wrench > Tools > Extensions
    • Search the Chrome Web Store for LastPass
    • Install the LastPass extension
    • Wrench > Tools > Extensions
    • Select "Allow in Incognito"
Enabling NTP Support
  • System > Administration > Time and Date
  • Select the shield icon to authenticate
  • Select pull-down list "Configuration" and choose "Keep synchronized with Internet servers"
  • Error appears: "NTP support is not installed. Please install and activate NTP support in the system to enable synchronization of your local time server with internet time servers."
  • Via this post: apt-get install ntp
  • Select pull-down list "Configuration" and choose "Keep synchronized with Internet servers"
  • Select time server tick.cs.unlv.edu (Las Vegas, USA) and ntp-0.cso.uiuc.edu (Illinois, USA)
Correcting root user setup
  • Well, shoot. It appears during installation I configured Debian with a separate root user and my user account without root privileges
  • Command sudo reports error "k is not in the sudoers file.  This incident will be reported." Heh.
  • Sudo means “substitute user do”. hmm.
  • Via this post
    • su root
    • visudo
    • add line "yourusername    ALL=(ALL) ALL"
    • save and exit
    • exit root account
    • sudo passwd -l root (lock the root account)
Set default editor to vim
  • vim ~/.bashrc
  • Append line: export EDITOR="vim"
Install vim
  • Oy
  • apt-get install vim

Debian GNU/Linux 6.0.5 "squeeze" install

After Debian GNU/Linux 5.0.10 "lenny" net install failed to detect my network hardware, I attempted to install the latest daily image of Debian GNU/Linux 6.0.5 "squeeze".

Via comment #35 of bug 681656, some users reported success using a daily image to work around an install bug in the latest stable release.

Downloaded the mini ISO from 2012-09-09 and burned to USB using program unetbootin.
  • Formatted USB 8GB pen drive as FAT32 using Red Hat Disk Utility 3.0.2
    • Format drive > Master Boot Record > Format
    • Create partition > FAT > Create (then wait for USB light to stop)
    • Mount volume
  • Unetbootin with ISO file mini.iso to /dev/sdb1 > OK
  • Reboot
  • Fails to detect network hardware
  • I edit /bin/check-missing-firmware, adding "exit 0" after #!/bin/sh
  • This successfully gets me past this stage
  • Installation continues
  • The installer hangs again ... I forget where
Two other options:
  1. Use alpha release
  2. Edit /bin/mountmedia 
I opt for #1, first, downloading the mini ISO from 2012-05-20 and burning to USB as above, then rebooting.
  • Edited /bin/check-missing-firmware, as before
  • Ran into missing kernel modules error after selecting squeeze or wheezy (no option for lenny) x_x ... going forward, it does not seem to detect the hard disk
  • Noted Ctrl+Alt+F4 reports "Failed to load tigon /tg3_ts05.bin"
  • Aborted
Researched and discovered this represents the Broadcom Tigon3 ethernet driver.
  • Per the firmware pagipw2100e, I downloaded the squeeze current non-free tarball to the root of the reformatted squeeze 2012-09-09 Mini ISO.
Then I noticed http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current/i386/iso-cd/ ... trying this ISO first...re-formatted, re-imaged....
Honestly, at this point I do not remember what specifically happened; it froze again, I took down the following notes:
  • Error, "Firmware ipw2100-1.3.fw not available or load failed"
  • Edited /bin/check-missing-firmware, as before
  • Process /sbin/reopen-console /sbin/debian-installer exited...
  • Check hardware completes
  • Menu item disk-detect selected
  • "Detecting disks and all other hardware"
  • I Ctrl-C a few times, go back and forth between Ctrl+F4 (system messages), Ctrl-F3 (started a shell), and Ctrl-F1 (install screen)...
  • Next thing I know, the installer has started up the partitioner
  • And then I hit the screen which asked where to install...I took a deep breath, selected my primary drive, and went with it. It installed OK. Whole process took ~40 minutes.
Soo....

I'm in!





Debian GNU/Linux 5.0.10 "lenny" install

Installing Debian GNU/Linux 5.0.10 "lenny" on a HP compaq nc6000, p/n DE646AV.

Even though Debian GNU/Linux 6.0.5 "squeeze" was available, I opted for the previous release, in an attempt to avoid install error #681656.

Downloaded the netinst CD image (generally 135-175 MB) and burned to USB using program unetbootin.
  • Installed Unetbootin support package 7-zip
  • Formatted USB 8GB pen drive as FAT32 using Red Hat Disk Utility 3.0.2
    • Format drive > Master Boot Record > Format
    • Create partition > FAT > Create
    • Mount volume
  • Unetbootin with ISO file debian-5010-i386-netinst.iso to /dev/sdb1 > OK
  • Reboot
  • Fails to detect network hardware
I give up and try a workaround for Debian GNU/Linux 6.0.5 "squeeze": using the nightly builds.

Monday, September 03, 2012

Surewest speed test results

Switching to the Fusion Internet/Phone service via Cal.net ISP, so thought I would run Surewest one last time:

Download: 17.43 Mbit/s
Upload: 19.61 Mbit/s
Ping: 25ms

I have had outstanding service from Surewest for about five years. However, for our use cases, Surewest fiber seems to represent overkill...and we need to cut costs. This will decrease our annual internet bill by about half, or ~$500.

Sunday, September 02, 2012

Pear brandy

We visited Total Wine this evening and purchased the German-import "Fidelitas Williams Pear" pear brandy (~$27).

It burns and does not really taste much like pear...wondering if this represents a good/bad brandy.

Clear Creek Distillery in Portland, Oregon, makes a "eau de vie de poire": both with and without a pear in the bottle : o )
http://www.clearcreekdistillery.com/products/eaux-de-vie/pear-brandy/

They also have a $5 mini bottle sampler, which might give me an idea of how the good/bad nature of the German import.

Putting pears in the bottle
http://www.youtube.com/watch?v=Kb5bcq5Y8jo

Eau De Vie Pear Brandy: A Personal Quest
http://www.youtube.com/watch?v=stAR58RIMS4 

Surewest Sacramento alternatives

Looking for alternatives to our current Surewest fiber internet service (~$64/month; 18Mbps up/down) and phone (~$24/month; basic plus interstate).

Coastal Web Online : no
CalWeb Internet Services, Inc.: No
Sonic.net: Reports "Fusion appears to be available where you are located, but is offered through a relationship with local providers serving your area."
  • Spiral Fusion: Yes - $40/month 
  • Cal.net: Yes - $40/month 
  • Omsoft: Yes - $40/month 

Other

Clear Wireless Internet: no coverage

Blog Archive