Sponsored Content
Full Discussion: AMD 1.2 Gentoo 1.4.3.8p1
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) Linux Benchmarks AMD 1.2 Gentoo 1.4.3.8p1 Post 41375 by tnorth on Saturday 4th of October 2003 08:47:22 AM
Old 10-04-2003
getting gentoo to run

By Default, gentoo uses the builtin bash 'time' which causes BYTE benchmarks to fail. fix this by:

emerge sys-apps/time
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX on AMD

Can Sun Soloaris be installed on AMD processor? Thanks in Advance (1 Reply)
Discussion started by: irehman
1 Replies

2. UNIX Benchmarks

AMD-K5 Benchmark

AMD-K5 Processor at 133Mhz 32MB RAM 5 GB Hard Drive 10MB NIC 1MB ARC Graphics Card PS/1 Keyboard CD-ROM Floppy Drive Kickin' Fast BABY! hehe BYTE UNIX Benchmarks (Version 3.11) System -- FreeBSD evil-linux.net 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 GMT 2003... (0 Replies)
Discussion started by: Phobos
0 Replies

3. Linux Benchmarks

Benchmark AMD 2200+MP system

Linux Bench SLES9.1 Amd 2200M+MP CPU/Speed: AMD 2000+MP (2 CPU's) Ram: 1Gb Motherboard: MSI K7D Bus: PCI Cache: 128 L2 Controller: IDE ATA133 Disk: 2 40Gb 7200Rpm ATA133 disk Load: 1 user, Oracle 10g, Mysql 5 Kernel: Linux 2.6 Kernel ELF?: pgms: N/A Results... (0 Replies)
Discussion started by: xstreur
0 Replies

4. SuSE

Linux suse for AMD

Hi everybody I have a SLES 8 on my own desktop and now I want to install oracle on it so I should install service pack3 on it, but when I setup it my linux Os can't start up and it say "Kernel panic". My desktop's components is 1-CPU:AMD Athlon 3200+ 64bit 2-Mainboard :Asus A8N SLES... (2 Replies)
Discussion started by: hkoolivand
2 Replies

5. UNIX for Advanced & Expert Users

Oracle on Debian AMD-64

I see following error during pkg update: shell>apt-get update Failed to fetch http://oss.oracle.com/debian/dists/unstable/Release Unable to find expected entry main/binary-amd64/Packages in Meta-index file (malformed Release file?) Reading package lists... Done W: Couldn't stat source... (0 Replies)
Discussion started by: mirusnet
0 Replies

6. Solaris

Solaris on AMD 770 chipset

hi is there anyone out there who has experience with installing Solaris on this chipset? there is one entry in the HCL doc about it (BigAdmin - HCL: Gigabyte GA-MA770-DS3 rev1.0 ) but that person apparently doesnt reply when another asks him some questions. im looking to install on... (3 Replies)
Discussion started by: Landser
3 Replies

7. Ubuntu

Not able to access wi-fi from ubuntu 9.04 -AMD 64-bit.

Hi, I am not able to access wi-fi network from my laptop HP-DV6-1111au. Please suggest how can i load a driver for the device and set the network right!! (3 Replies)
Discussion started by: guru_gyan
3 Replies

8. UNIX for Beginners Questions & Answers

How to update AMD drivers on mint 19?

i am searching and no lucky with it. Does anyone really know how to update AMD drivers on mint 19? It is HD540. I tried to download and Ubuntu and Linux 64 bit from Link ...... but only errors. i just extracted it and execute with bash amd..... and got this error error: Detected X Server... (0 Replies)
Discussion started by: tomislav91
0 Replies
Benchmark::Apps(3pm)					User Contributed Perl Documentation				      Benchmark::Apps(3pm)

NAME
Benchmark::Apps - Simple interface to benchmark applications. SYNOPSIS
This module provides a simple interface to benchmark applications (not necessarily Perl applications). use Benchmark::Apps; my $commands = { cmd1 => 'run_command_1 with arguments', cmd2 => 'run_command_2 with other arguments', }; my $conf = { pretty_print=>1, iters=>5 }; Benchmark:Apps::run( $commands, $conf ); DESCRIPTION
This module can be used to perform simple benchmarks on programs. Basically, it can be used to benchmark any program that can be called with a system call. FUNCTIONS
run This method is used to run benchmarks. It runs the commands described in the hash passed as argument. It returns an hash of the results each command. A second hash reference can be passed to this method: a configuration hash reference. The values passed in this hash override the default behaviour of the run method. The configuration options available at this moment are: "pretty_print" When enabled it will print to stdout, in a formatted way the results of the benchmarks as they finish running. This option should de used when you want to run benchmarks and want to see the results progress as the tests run. You can disable it, so you can perform automated benchmarks. Options: true(1) or false(0) Default: false(0) "iters" This is the number of iterations that each test will run. Options: integer greater than 1 Default: 5 "args" This is a reference to an anonymous function that will calculate the command argument based on the iteraction number. Options: any function reference that returns a string Default: empty function: always returns an empty string, which means no arguments will be given to the command run This method runs the commands described in the hash passed as argument. It returns an hash of the results and return codes for each command. pretty_print This method is used to print the final result to STDOUT before returning from the "run" method. time_this This method is not meant to be used directly, although it can be useful. It receives a command line and executes it via system, taking care of registering the elapsed time. EXAMPLES
Check files in "examples/". AUTHOR
Aberto Simoes (aka ambs), "<ambs at cpan.org>" Nuno Carvalho (aka smash), "<smash @ cpan.org>" BUGS
Please report any bugs or feature requests to "bug-benchmark-apps at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Benchmark-Apps <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Benchmark-Apps>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Benchmark::Apps You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Benchmark-Apps <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Benchmark-Apps> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Benchmark-Apps <http://annocpan.org/dist/Benchmark-Apps> o CPAN Ratings http://cpanratings.perl.org/d/Benchmark-Apps <http://cpanratings.perl.org/d/Benchmark-Apps> o Search CPAN http://search.cpan.org/dist/Benchmark-Apps <http://search.cpan.org/dist/Benchmark-Apps> COPYRIGHT &; LICENSE Copyright 2008 Aberto Simoes, Nuno Carvalho, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-15 Benchmark::Apps(3pm)
All times are GMT -4. The time now is 01:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy