
A great night at the Gentlemen of the Road tour stopover in Monterey, California.
A great night at the Gentlemen of the Road tour stopover in Monterey, California.
The same logo appears on their online store pages along with the new four color logo.
Microsoft is trying to push a new image ahead of their Windows 8 upgrade later in the year. These new colorful squares are sure to build excitement in new Microsoft products.
Swarming the beaches along the East China Sea are masked people hiding from the harmful rays of the sun. Will these strange looking masks become a hit on the style conscious beaches of California? I sure hope not. B-)
While all of the technology and digital widgets can be fun, sometimes you just have to get outside and do something physical, not virtual.
Here’s a list of a few local running events around Silicon Valley and the Bay Area:
In the heart of Silicon Valley in San Jose is the Rock ‘n’ Roll San Jose Half Marathon on October 7th 2012
Further out in the mountain playground of Lake Tahoe is the Tough Mudder Nor-Cal.
To prepare yourself for the 25 military style obstacles, you can train like this guy:
And one that’s not quite in the neighborhood:
The Walt Disney World Marathon Weekend includes a 5k, Half Marathon and a Full Marathon in Orlando, Florida in January 2013. You can also choose to run the “Goofy”, Goofy’s Race and a Half Challenge. A 39.3-mile run that combines the half and full marathons on Saturday and Sunday (12-13 January 2013)
Note the quote from Walt Disney on the front: “All our dreams can come true, if we have the courage to pursue them” Apt words for the dreamers here in the Valley
The Walt Disney World Marathon Weekend is again offering free runner tracking through this site: http://live.xacte.com/wdw/alerts/ Track your runner via SMS text message, email, Twitter or other social media with their Xact Event Alerts.
And coming up next year is the 2nd annual 408k 8K road race in San Jose. This race starts from downtown San Jose and runs to Santana Row. The “Race to the Row” is on March 10th 2013. #run408 Bring your running shoes…and your credit card!
A fire at around 1 am on the morning of August 11, 2012 caused Comcast Internet and Cable TV to go out in parts of the Santa Clara area. As of 1 pm, repairs to the damaged cables appear to be complete and Comcast Internet and Television service seem to be back up. The outage also seemed reduce area cell network coverage on the Verizon network, dropping out local 4G coverage. Several users also reported weak standard cell phone signal strength and dropped, choppy phone calls during the outage.
If you still have problems reset your modem and call Comcast at 1-877-Comcast if you need more support.
Aside from outages like this caused by destructive events, the Silicon Valley area seems to experience multiple outages for no apparent reason. Why does the most high tech area in the world have some of the worst internet service? How reliable is you internet service?
Is it more reliable than a 3rd world Internet Cafe?
Unlike summer in Silicon Valley, the British Isles get plenty of rain to water their buildings and keep them green.
This Olympic Google Doodle lets you run and jump the hurdles without hitting the track or breaking a sweat. Just use your arrow keys to run and the space bar to jump the hurdles. Just like a real hurdler, you have to get your steps and timing right or you will be slowed down by the hurdles.
http://www.google.com/doodles/hurdles-2012
The previous Google doodle celebrated the classic Olympic event of the javelin.
So you have a Solaris 10 operating environment and you’re getting “permission denied” errors when trying to change a user’s password while logged in as root.
So you check /var/adm/messages for some clues and you see a message like this:
sunbox# tail /var/adm/messages
Aug 1 13:31:08 sunbox yppasswdd[1221]: [ID 467562 auth.error] yppasswdd: user test_user: does not exist
You know that the user exists, and can still see the user in your NIS passwd files using a command like this:
ypcat passwd | grep test_user
So how do you fix it?
You can restart your NIS processes using this command:
svcadm restart nis/server
Sometimes that will resync the NIS files and processes and get things back in working order. Sometimes you still get the same error.
What finally fixed my “passwd change permission denied” error was actually quite simple once I figured out what the problem was.
At times your NIS map files can become out of sync and need to be rebuilt. This “Passwd Permission Denied” problem can be caused by a recommended Solaris security patch that may have replaced your custom NIS Makefile with a standard issue Solaris one that has PWDIR = /etc and not PWDIR = /var/yp. Using /var/yp instead of /etc is done to separate local system accounts such as root from the standard NIS user accounts of a workgroup.
If you find your NIS Makefile changed from PWDIR = /var/yp to PWDIR = /etc then your users may not be able to login at all and they’ve probably already come running for their system admin. You may need to recover your original NIS Makefile from the backup you ran before patching. You did make a backup right? Or the patch script may have taken you original Makefile and named it Makefile.old or something. You can run a “diff” on those two files to see what changed. If the Solaris patch made changes unhealthy to your career, replace the new Makefile with the Makefile.old file.
A restart of the NIS/YP services is necessary to bring all of the map files back into sync. If a restart of the services doesn’t work, check your NIS directory (usually /var/yp or /etc) for a lockfile.
sunbox# ls -al
-rw------- 1 root root 0 Aug 1 09:42 .pwd.lock
I removed the lockfile and restarted the NIS/YP processes:
sunbox# rm .pwd.lock
sunbox# /usr/lib/netsvc/yp/ypstop
sunbox# /usr/lib/netsvc/yp/ypstart
You should see a message like this when restarting the NIS processes:
starting NIS (YP server) services: ypserv ypbind ypxfrd rpc.yppasswdd rpc.ypupdated done.
After restarting, you should be able to see the processes running with “ps” command:
sunbox# ps -ef | grep yp
Now you should be able to reset your users NIS passwords without the “permission denied” error by running the “passwd” command:
sunbox# passwd -r nis <username>
Notes on NIS and YP:
NIS, or Network Information Service, was originally called Yellow Pages or YP, which is why the NIS commands begin with “yp”. Since the term “Yellow Pages” is a registered trademark of British Telecom PLC for it’s non-digital, old school paper commercial telephone directory, Sun changed the name of its system to NIS.
NIS+ commands no longer use “yp” commands.
Since NIS was developed before the public internet, robust security was never a feature. NIS will work fine on a closed research network but is not recommended for any network that touches the internet. There are more modern options to choose from such as NIS+ and LDAP. But if you’re stuck administering a legacy research network that has no funding to upgrade, then you still have to know how to deal with the quirks of NIS.
Existing NIS maps can be (and should be) migrated to other systems such as NIS+ or LDAP. Some shops even use Windows Active Directory for authentication of Linux and Solaris machines.
Sir Tim Berners-Lee, creator of the first web page in 1990, gets a prime spot in part of the London Olympics Opening Ceremony. Danny Boyle’s London Olympics 2012 opening ceremony highlights some of the history of technology from the industrial revolution to the modern globally interconnected information age of today. Sir Tim Berners-Lee was given recognition in the ceremony for his role in making our world more connected and dynamic.
Happy Friday and happy Sysadmin Day!