Unix Technical Forum

Re: patch cluster feature request

This is a discussion on Re: patch cluster feature request within the Sun Solaris Administration forums, part of the Solaris Operating System category; --> Tony Curtis wrote: > To Sun: how about adding a progress counter for > install_cluster? > > At the ...


Go Back   Unix Technical Forum > Unix Operating Systems > Solaris Operating System > Sun Solaris Administration

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-12-2008, 06:13 AM
John Salvo
 
Posts: n/a
Default Re: patch cluster feature request

Tony Curtis wrote:
> To Sun: how about adding a progress counter for
> install_cluster?
>
> At the moment you just see
>
> Installing 110723-06...
> Installing 110460-30...
>
> or similar. What about?
>
> Installing 110723-06 (104 of 128)...
> Installing 110460-30 (105 of 128)...
>
>
> Could install_cluster also provide a better exit code
> report than just the exit code? The various codes
> (e.g. 2, 8, ...) have meanings, so why not print out the
> explanatory text too?
>
> t


What's wrong with /var/sadm/install_data/<cluster_name>_log ?


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-12-2008, 06:13 AM
Tony Curtis
 
Posts: n/a
Default Re: patch cluster feature request

>> On Tue, 29 Jul 2003 03:40:00 GMT,
>> John Salvo <jmsalvo@yahoo.com.au> said:


> Tony Curtis wrote:
>> To Sun: how about adding a progress counter for
>> install_cluster? At the moment you just see Installing
>> 110723-06... Installing 110460-30... or similar.
>> What about? Installing 110723-06 (104 of 128)...
>> Installing 110460-30 (105 of 128)... Could
>> install_cluster also provide a better exit code report
>> than just the exit code? The various codes (e.g. 2, 8,
>> ...) have meanings, so why not print out the
>> explanatory text too? t


> What's wrong with
> /var/sadm/install_data/<cluster_name>_log ?


Nothing per se, it's just that sometimes I am patching the
system in single-user mode remotely through a serial
connection and it would be nice to see a progress
indicator in that window.

t
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-12-2008, 06:14 AM
kgyula@mailcity.com
 
Posts: n/a
Default Re: patch cluster feature request

Tony Curtis <tony_curtis32@yahoo.com> wrote in message news:<87r84af15u.fsf@limey.hpcc.uh.edu>...
> >> On Tue, 29 Jul 2003 03:40:00 GMT,
> >> John Salvo <jmsalvo@yahoo.com.au> said:

>
> Tony Curtis wrote:
> >> To Sun: how about adding a progress counter for
> >> install_cluster? At the moment you just see Installing
> >> 110723-06... Installing 110460-30... or similar.
> >> What about? Installing 110723-06 (104 of 128)...
> >> Installing 110460-30 (105 of 128)... Could
> >> install_cluster also provide a better exit code report
> >> than just the exit code? The various codes (e.g. 2, 8,
> >> ...) have meanings, so why not print out the
> >> explanatory text too? t

>
> > What's wrong with
> > /var/sadm/install_data/<cluster_name>_log ?

>
> Nothing per se, it's just that sometimes I am patching the
> system in single-user mode remotely through a serial
> connection and it would be nice to see a progress
> indicator in that window.
>
> t
>

tail -f /var/sadm/install_data/<cluster_name>_log

and you can see the progress...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-12-2008, 06:14 AM
John Salvo
 
Posts: n/a
Default Re: patch cluster feature request

Tony Curtis wrote:
>>>On Tue, 29 Jul 2003 03:40:00 GMT,
>>>John Salvo <jmsalvo@yahoo.com.au> said:

>
>
>>Tony Curtis wrote:
>>
>>>To Sun: how about adding a progress counter for
>>>install_cluster? At the moment you just see Installing
>>>110723-06... Installing 110460-30... or similar.
>>>What about? Installing 110723-06 (104 of 128)...
>>>Installing 110460-30 (105 of 128)... Could
>>>install_cluster also provide a better exit code report
>>>than just the exit code? The various codes (e.g. 2, 8,
>>>...) have meanings, so why not print out the
>>>explanatory text too? t

>
>
>>What's wrong with
>>/var/sadm/install_data/<cluster_name>_log ?

>
>
> Nothing per se, it's just that sometimes I am patching the
> system in single-user mode remotely through a serial
> connection and it would be nice to see a progress
> indicator in that window.
>
> t


../install_<cluster_name> &
tail -f /var/sadm/install_data/<cluster_name>log

?



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 01-12-2008, 06:14 AM
Tony Curtis
 
Posts: n/a
Default Re: patch cluster feature request

>> On Wed, 30 Jul 2003 02:19:30 +1000,
>> John Salvo <jmsalvo@yahoo.com.au> said:


> Tony Curtis wrote:
>>>> On Tue, 29 Jul 2003 03:40:00 GMT, John Salvo
>>>> <jmsalvo@yahoo.com.au> said:

>>
>>> Tony Curtis wrote:
>>>> To Sun: how about adding a progress counter for
>>>> install_cluster? At the moment you just see
>>>> Installing 110723-06... Installing 110460-30... or
>>>> similar. What about? Installing 110723-06 (104 of
>>>> 128)... Installing 110460-30 (105 of 128)... Could
>>>> install_cluster also provide a better exit code
>>>> report than just the exit code? The various codes
>>>> (e.g. 2, 8, ...) have meanings, so why not print out
>>>> the explanatory text too? t

>>
>>> What's wrong with
>>> /var/sadm/install_data/<cluster_name>_log ?

>> Nothing per se, it's just that sometimes I am patching
>> the system in single-user mode remotely through a
>> serial connection and it would be nice to see a
>> progress indicator in that window. t


> ./install_<cluster_name> & tail -f
> /var/sadm/install_data/<cluster_name>log


Yes, but neither output shows how *far* into the patch
sequence you are. Currently I compare the output with the
patch_order file, but adding a count-o-meter to
install_cluster is trivial and would make it obvious how
many patches remain.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-12-2008, 06:14 AM
John
 
Posts: n/a
Default Re: patch cluster feature request

> Yes, but neither output shows how *far* into the patch
> sequence you are. Currently I compare the output with the
> patch_order file, but adding a count-o-meter to
> install_cluster is trivial and would make it obvious how
> many patches remain.


I must say that I like the idea, it gives you a good overview how far
the patching is.
When you need to install patches on mutiple sun's this would be very
handy!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 06:32 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com