This is a discussion on Short Shell-Script to watch the LED-Codes within the AIX Operating System forums, part of the Unix Operating Systems category; --> I found in some manual a short and nice shell script to watch the LED-Codes from a booting machine, ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| For what kind of system? If it is an older SP system you can use: spled, or spmon For my newer p5 570's using csm, try: csmstat -l example: /opt/csm/bin/csmstat -n 'unxt1' '-l' Miles alex wrote: > I found in some manual a short and nice shell script to > watch the LED-Codes from a booting machine, > but can't remember where - > can anybody help me? |
| |||
| alex wrote: > I found in some manual a short and nice shell script to > watch the LED-Codes from a booting machine, > but can't remember where - > can anybody help me? You canwatch this display without a script by standing in front of the display and looking at it How can you be running a shell script on a machine that is booting? How can you read an output only device? Are you really looking for /usr/lib/methods/showled, which lets you manipulate the led display. |
| |||
| alex wrote: > I found in some manual a short and nice shell script to > watch the LED-Codes from a booting machine, > but can't remember where - > can anybody help me? If you talking about the SP nodes then use something like this: while true do spmon -L <frame#>/<node#> sleep 2 done regards, Asim |
| ||||
| Asim schrieb: > alex wrote: >> I found in some manual a short and nice shell script to >> watch the LED-Codes from a booting machine, >> but can't remember where - >> can anybody help me? > > If you talking about the SP nodes then use something like this: > > while true > do > spmon -L <frame#>/<node#> > sleep 2 > done > > > regards, > Asim > That's it! Thank you. |