Featured Post
Friday, December 22, 2017
Tuesday, October 31, 2017
Thanks for nothing Adobe
Chromebook users, have you ever received an email with a link to this nonsense:
/https://get.adobe.com/reader/otherversions/
If you have, you are well aware that there is no option in the pull downs there for our computers. I could not let this pass without a comment. Typically, there is an attached PDF file which your chromebook will open just fine as is right out of the box. Worst case is the PDF could be password protected. The standard chromebook pdf handler even includes a password entry dialog handler which works just fine thank you very much. I hate getting spam from folks telling me to do things I don't really need to do.
/https://get.adobe.com/reader/otherversions/
If you have, you are well aware that there is no option in the pull downs there for our computers. I could not let this pass without a comment. Typically, there is an attached PDF file which your chromebook will open just fine as is right out of the box. Worst case is the PDF could be password protected. The standard chromebook pdf handler even includes a password entry dialog handler which works just fine thank you very much. I hate getting spam from folks telling me to do things I don't really need to do.
Wednesday, August 9, 2017
The green skid mark of living death
Yes microsoft has come a long ways since their salad days of windows 95 and the delightful blue screen of death....
I especially am delighted when it does the above almost interminably and then fails with a cryptic error message. At those times one has no recourse but to google for the silly error messages only to find there is no recourse but to wait for some faceless guru to deign to respond to your pitiful situation. No I don't have the fancy latest generation win 10 stuff in my house and I will not. When they stop supporting windows 7 it will truly be end of life for microsoft products at my house.
I especially am delighted when it does the above almost interminably and then fails with a cryptic error message. At those times one has no recourse but to google for the silly error messages only to find there is no recourse but to wait for some faceless guru to deign to respond to your pitiful situation. No I don't have the fancy latest generation win 10 stuff in my house and I will not. When they stop supporting windows 7 it will truly be end of life for microsoft products at my house.
Monday, March 6, 2017
Configure Auto-updating NoIp.com Linux Host
- Fully setup a noip.com free account. You must perform all the steps for your hostname to be fully visible.
- Grab the script from here: noipupdater.sh
- The sample config file there is also a must have. Note the double quotes around the values (these are a must)!
- Ignore the readme.... change the four values in the sample config file only. Especially note that the loginname used for the updating is the email address used to setup the account not the actual account name you used.
- Follow instructions at above URL for creating one of the example crontab entries to keep your noip account in good standing.
- Updating once a day is adequate for my ISP and my limited needs.
Follow up: I never could get the above script to work as advertised (on auto-pilot & no manual intervention ever needed). So I abandoned this stuff and when I get the email every 30 days I manually update the free account. This means checking "whatismyip" against what the free noip account has and updating manually if needed. Since I learned stuff here I still consider this a success.
Saturday, February 25, 2017
Ubuntu 16.04 how to nano override, setup root bash, and root bash history
Have you ever been annoyed by the crappy nano editor that ubuntu presents for crontab and similar interfaces ? What about the "no command line history" thing in the default root shell ? Yes, I know that is a security issue so don't start with that. This post will guide you out of the wilderness of nano and into the promised land of the real admin's editor vi.
1. Fix your personal login...
Add these lines to the end your ~/.bashrc file...
set -o vi
export EDITOR=vim
1. Fix your personal login...
Add these lines to the end your ~/.bashrc file...
set -o vi
export EDITOR=vim
notes: Line 1 puts the history commands into sensible vi mode rather than the heinous emacs mode. Line 2 fixes crontab and its' like to use vi rather than the wretched nano editor.
2. Fix the root login...
Add these lines to the end of the /root/.bashrc file...
set -o vi
export EDITOR=vim
export HISTFILE=/home/${USER}/.root/.bash_history
notes: Line 3 above moves the history file to a full read/write footing.
Finally, don't forget to "mkdir /home/${USER}/.root".
I know there are global ways to accomplish these goals. I am not interested in that, I want to alter just the behavior of my login and the root login. All other logins may remain in the dark, lonely nano wilderness for all I care. If, in future, I choose to expose my personal system to the internet... I will of course take appropriate steps to plug the root command line history issue. Probably by creating a script to "erase the tracks" at root logout.
Subscribe to:
Posts (Atom)
MORE About Me...
My dad called me Timbocephus from time to time when I was growing up. He was a
Hank Williams fan at some point I believe.
Of course everyone recognizes the "Timbo" nickname. But going deeper into mid 20th century popular culture we find that Hank famously stuck the "Bocephus" moniker on his young son Hank Jr. There are several suggested sources for the "Bocephus" and you can find those on line very readily if you google it. Having said that, I like this one Best: The mysterious appelation that became part of American folklore in middle of the last century: Biblical/Latin Etymology: Some trace it back to a neoclassical blend of Beau (French for beautiful) and Cephas (the Aramaic name given to the Apostle Peter, meaning "stone"). [1] (https://gardenandgun.com/ask-gg-garden-thievery-and-the-birth-of-bocephus)
Of course everyone recognizes the "Timbo" nickname. But going deeper into mid 20th century popular culture we find that Hank famously stuck the "Bocephus" moniker on his young son Hank Jr. There are several suggested sources for the "Bocephus" and you can find those on line very readily if you google it. Having said that, I like this one Best: The mysterious appelation that became part of American folklore in middle of the last century: Biblical/Latin Etymology: Some trace it back to a neoclassical blend of Beau (French for beautiful) and Cephas (the Aramaic name given to the Apostle Peter, meaning "stone"). [1] (https://gardenandgun.com/ask-gg-garden-thievery-and-the-birth-of-bocephus)

