×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    Schwanzersatzfaktor: Difference between revisions

    Content added Content deleted
    imported>mutante
    mNo edit summary
    imported>mutante
    mNo edit summary
    Line 1: Line 1:
    === Schwanzersatzfaktor-Berechnung ===
    === Schwanzersatzfaktor-Berechnung ===


    Das folgende Shell-Script (by unbekannt) errechnet den Schwanzersatz-Faktor eines [[Linux]]-Rechners:
    Das folgende [[Shell]]-Script (by unbekannt) errechnet den Schwanzersatz-Faktor eines [[Linux]]-Rechners:


    <pre>
    <pre>
    Line 13: Line 13:
    </pre>
    </pre>


    from [[Geekpeitsche]] / [http://www.geekpeitsche.de/shell.html]
    found on [[Geekpeitsche]] / [http://www.geekpeitsche.de/shell.html]


    [[Category:Programming]]
    [[Category:Programming]]

    Revision as of 15:01, 13 September 2005

    Schwanzersatzfaktor-Berechnung

    Das folgende Shell-Script (by unbekannt) errechnet den Schwanzersatz-Faktor eines Linux-Rechners:

    #!/bin/sh
    LC_ALL=C
    echo `uptime|grep days|sed 's/.*up \([0-9]*\) day.*/\1\/10+/'; \
    cat /proc/cpuinfo|grep MHz|awk '{print $4"/30 +";}'; free|grep '^Mem' \
    |awk '{print $3"/1024/3+"}'; df -P -k -x nfs | grep -v 1k \
    | awk '{if ($1 ~ "/dev/(scsi|sd)"){ s+= $2} s+= $2;} END \
    {print s/1024/50"/15+70";}'`|bc|sed 's/\(.$\)/.\1cm/'
    

    found on Geekpeitsche / [1]

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.