"Brian J. Murrell" <[EMAIL PROTECTED]> writes:


[...]

> 
>    15.82 inches monitor (truly 14.65')
>    
> My monitor is actually a 17" monitor
>    

:(   either ddcxinfos is buggy trying to get information, either your graphic
card or monitor is!


[...]

> But I am missing where it says that my monitor can only go up to 64kHz.
> 

it should be just before the screen size. eg:

[...]
16777216 1280 1024

30-70
50-180
17.01 inches monitor (truly 15.75')
# 640x480, 60.0Hz; hfreq=31.469000, vfreq=59.939999
ModeLine "640x480"       25.17  640  648  744  784  480  482  484  509 -hsync -vsync
[...]

> >  What can it do? :)
> 
> If it really is being told that the monitor only goes to 64kHz, I agree,
> it can do nothing, but I don't see that info anywhere.
> 

ah, so it's you who chose the screen? it wasn't done automagically?

> > rpm --freshen *.rpm
> 
> Ooops, I meant a script that takes charge of inventorying the local system
> and actually go out to the 'net and retrieves the RPMS from an archive
> site and installs them.  The easy part of course is the installing part,

well, easy :)

--------------------------------------------------------------------------------
#!/usr/bin/perl

my $mirror = $ARGV[0] or die "usage: $0 <mirror>\n";

if (open F, "wget $mirror/Mandrake/RPMS/ -O - 2>/dev/null |") {
    foreach (<F>) {
        push @new, $1 if m|>([^<]*)\.[^.]+\.rpm</a|;
    }
}

my @old = map { chop; $_ } `rpm -qa`;

print "$_\n" foreach difference2(\@new, \@old);

sub difference2 { my %l; @l{@{$_[1]}} = (); grep { !exists $l{$_} } @{$_[0]} }
--------------------------------------------------------------------------------

maybe needs some tweaking though...

Reply via email to