Slashdot Mirror


User: wahwah

wahwah's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:Works in Gentoo on Google Releases Picasa for Linux · · Score: 1

    You couldn't compile it from source since there isn't any. Picasa uses some free software (wine for instance), but isn't free software itself. However, there's an ebuild already: http://bugs.gentoo.org/show_bug.cgi?id=134376

  2. Re:didn't prove power line myth on MythBusters - The Lost Experiments · · Score: 1

    What about the direction of the coil -- they positioned it parallel to the power line. Maybe it should be perpendicular?

  3. Closed source still considered good for security? on Ask Microsoft's Security VP · · Score: 1

    Source code unavailability was claimed to be good for security. Crackers can't read our code, so they won't find holes. It's harder to find holes by trial and error than by reading and analyzing the code. On the other hand, a lot of Windows source code has leaked into p2p networks some time ago. So crackers have a lot of reading. How does Microsoft security team feel about this?

  4. Re:I would agree on Benchmarking Linux Filesystems Part II · · Score: 1
    Why not calculate a simple regression? I know that it doesn't follow the way you normally calculate statistics. But let's say one task for one system is one observation. Then you would get something like this:
    Call:
    lm(formula = secs ~ fs, data = F)
     
    Residuals:
        Min 1Q Median 3Q Max
    -21.554 -14.636 -7.982 14.958 97.796
     
    Coefficients:
                Estimate Std. Error t value Pr(>|t|)
    (Intercept) 17.13381 4.30162 3.983 0.000117 ***
    fsEXT3 -0.02476 6.08341 -0.004 0.996759
    fsJFS -3.39286 6.08341 -0.558 0.578072
    fsREISERv3 1.04524 6.08341 0.172 0.863870
    fsREISERv4 4.49048 6.08341 0.738 0.461863
    fsXFS -0.07143 6.08341 -0.012 0.990651
    ---
    Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
     
    Residual standard error: 19.71 on 120 degrees of freedom
    Multiple R-Squared: 0.01424, Adjusted R-squared: -0.02683
    F-statistic: 0.3467 on 5 and 120 DF, p-value: 0.8835
    So the "estimate" column shows the relation between the filesystem and overall mean. Ext3 with -0.02 is just average. JFS with -3.39 is the fastest. XFS with -0.07 is just a little bit faster than EXT3.

    This "analysis" assumes that each task is equally important, which is not true. So I think the best test would be to log all the disk activity and log it, so it would look like:
    task | size |time
    -----+------+-------
    read | 100 |0.001
    write| 200 |0.02
    ... ... ...
    The normal disk activity would get logged. Then one would just spend one day with each filesystem. Then one would make a regression that would show a real (or at least close to real) estimation of each filesystem performance.