[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: iwl 3854 could not read microcode -12



Jochen van Geldern schrieb am 31. Dec um 16:31 Uhr:
> Am Wed, 31 Dec 2014 15:28:50 +0100
> schrieb Dirk Salva <dsalva@nutrimatic.ping.de>:

> > Was macht das?
> Was schon. die größen alle Pakete von Debian wheezy/main zusammen Zählen
> natürlich. Aber da fehlt doch nicht etwas oder?
> Was ist den mit contrib und non-free. ;-)

~$ ./grepsize 
Size of nonfree-binary-i386: 3390 MB
Size of contrib-binary-i386: 212 MB
Size of main-binary-i386: 40607 MB

ausgepackt werden dass so 100 GB sein. So weit ich weiss, kann man fast
alles gleichzeitig installieren. Und warum auch nicht? Wenn man etwas
ausprobieren will, muss man das ja.

Quellcode gibt es auch noch ...

Gruß
Christian


-->-->--
#!/bin/bash

declare -A pkgs

pkgs[main-binary-i386]='http://ftp.nl.debian.org/debian/dists/wheezy/main/binary-i386/Packages.bz2'
pkgs[contrib-binary-i386]='http://ftp.nl.debian.org/debian/dists/wheezy/contrib/binary-i386/Packages.bz2'
pkgs[nonfree-binary-i386]='http://ftp.nl.debian.org/debian/dists/wheezy/non-free/binary-i386/Packages.bz2'
# pkgs[main-source]='http://ftp.nl.debian.org/debian/dists/wheezy/main/source/Sources.bz2'
# pkgs[contrib-source]='http://ftp.nl.debian.org/debian/dists/wheezy/contrib/source/Sources.bz2'
# pkgs[nonfree-source]='http://ftp.nl.debian.org/debian/dists/wheezy/non-free/source/Sources.bz2'

# parameter 1 == Packages-File-URL
function curlgrepaddsize {
        curl -s -S $1 | bunzip2 -c | egrep '^Size: ' | cut -c 7- |
        ( echo -n '(' ;  while read size ; do echo -n "${size} + " ; done ;
echo '0 ) / 1024 / 1024 ' )|
        bc ; }


for PN in ${!pkgs[*]} ; do
        echo Size of $PN: `curlgrepaddsize ${pkgs[$PN]}` MB ;
done
--<--<--


-- 
Christian Knoke            * * *            http://cknoke.de
* * * * * * * * *  Ceterum censeo Microsoft esse dividendum.


Reply to: