Sponsored Content
Full Discussion: Intel vs. RISC
Top Forums UNIX for Dummies Questions & Answers Intel vs. RISC Post 2072 by 98_1LE on Wednesday 18th of April 2001 12:42:18 AM
Old 04-18-2001
Tonight I raced a Sun Ultra 10 workstation (300 Mhz Ultrasparc II) running Solaris 8 64 bit against a PIII 550 x86 box running RedHat 7. The Sun has 128 Mb RAM and a 4500 rpm IDE disk. The PC has 256 Mb EDO RAM and an ATA66 disk turning 7200 rpm. The test was uncompressing and extracting a 127 Mb .tar.gz file. The exact command ran on the PC was:
Code:
date > /tmp/pc_time ; zcat docs.tar.gz | gtar xvf - ; date >> /tmp/pc_time

and the timestamp file read:
Tue Apr 17 23:05:58 CDT 2001
Tue Apr 17 23:07:30 CDT 2001
PC - 1 minute 32 seconds!

The exact command ran on the Ultrasparc was:
Code:
date > /tmp/ultra_time ; gzcat docs.tar.gz | gtar xvf - ; date >> /tmp/ultra_time

Tue Apr 17 23:11:43 CDT 2001
Tue Apr 17 23:18:33 CDT 2001
Sun - 6 minutes, 50 seconds!
 

8 More Discussions You Might Find Interesting

1. AIX

Ibm Risc/6000 Os

:o Unix Sirs, :eek:RE: IBM RISC/6000 1990 Used on Application: Image buffer: 3D "Catia" (3D "Autocad" sim.) engineering C.A.D. Written by Deso. Cash prior to main frame dump:cool: * :oCan I purchase the oem operating system from you unix people? :cool: ... (1 Reply)
Discussion started by: penguins
1 Replies

2. HP-UX

please help need HP-UX 11 for PA RISC

Im not asking for an illegal copy (but from what i understand if i have the system its not illegal to give it to me) just how to get a copy of hp-ux period i have some old hp visualize systems based on the PA8500 400mhz cpu spent days on the phone with hp they no nothing and there website is a... (6 Replies)
Discussion started by: maliqua
6 Replies

3. HP-UX

Debian HPPA for HP PA-RISC

Hi, I just downloaded the debian HPPA distribution. Once I try to install it on my C3000 box, the machine boots, reads a part of the CD but then stalls with an error message about the image on the CD. The CD drive is IDE, maybe debian expects to have a SCSI one. Somebody already tried to... (1 Reply)
Discussion started by: ddegrendele
1 Replies

4. UNIX for Advanced & Expert Users

PA-RISC 2.0 (LP64) and PA-RISC2.0 exec or libraries

I have a problem with executing an application using the ELF 64 libraries. Previous versions and on other machines where all is well use PA-RISC2.0 (32) . My guess is that the application or executables need to be recompiled and linked with the new ELF 64 libraries. Are these run time compatible ?... (2 Replies)
Discussion started by: gd2352
2 Replies

5. HP-UX

HP-UX 11i v2 for PA-RISC

Hello, i trying to get HP-UX 11i v2 for PA-RISC. I`im to poor to buy this system, so I`am asking that someone can help me. best regards email removed (1 Reply)
Discussion started by: mruczas
1 Replies

6. Programming

IBM Risc migration

Hi all, I have been dealing with the following problem one week now without any progress. I've a source code written in C which is using X libraries in order to create a graphical interface to visualise results produced by another code written in Fortran. The README file of the C code says... (2 Replies)
Discussion started by: Pavlos
2 Replies

7. HP-UX

Access AS400 from HP (RISC) Unix OS

Hi everyone, I am in the need of some software which will allow me to access IBM AS400 from HP unix operating system. I could download the software from IBM site for windows OS and it is working succesfully. I need to do the same on UNIX OS. Could you please guide me to some site... (1 Reply)
Discussion started by: vkoppula
1 Replies

8. HP-UX

Does HP-UX On Itanium always come with PA-RISC compatibility

Does anybody know if HP-UX on Itanium always comes with backwards compatibility for PA-RISC applications? I've heard that there is an emulator called Aries which should do the trick, I just need to know if it always comes as standard with HP-UX Itanium systems. Any help would be greatly... (3 Replies)
Discussion started by: nialler
3 Replies
GIT-TAR-TREE(1) 						    Git Manual							   GIT-TAR-TREE(1)

NAME
git-tar-tree - Create a tar archive of the files in the named tree object SYNOPSIS
git tar-tree [--remote=<repo>] <tree-ish> [ <base> ] DESCRIPTION
THIS COMMAND IS DEPRECATED. Use git archive with --format=tar option instead (and move the <base> argument to --prefix=base/). Creates a tar archive containing the tree structure for the named tree. When <base> is specified it is added as a leading path to the files in the generated tar archive. git tar-tree behaves differently when given a tree ID versus when given a commit ID or tag ID. In the first case the current time is used as modification time of each file in the archive. In the latter case the commit time as recorded in the referenced commit object is used instead. Additionally the commit ID is stored in a global extended pax header. It can be extracted using git get-tar-commit-id. OPTIONS
<tree-ish> The tree or commit to produce tar archive for. If it is the object name of a commit object. <base> Leading path to the files in the resulting tar archive. --remote=<repo> Instead of making a tar archive from local repository, retrieve a tar archive from a remote repository. CONFIGURATION
tar.umask This variable can be used to restrict the permission bits of tar archive entries. The default is 0002, which turns off the world write bit. The special value "user" indicates that the archiving user's umask will be used instead. See umask(2) for details. EXAMPLES
git tar-tree HEAD junk | (cd /var/tmp/ && tar xf -) Create a tar archive that contains the contents of the latest commit on the current branch, and extracts it in /var/tmp/junk directory. git tar-tree v1.4.0 git-1.4.0 | gzip >git-1.4.0.tar.gz Create a tarball for v1.4.0 release. git tar-tree v1.4.0^{tree} git-1.4.0 | gzip >git-1.4.0.tar.gz Create a tarball for v1.4.0 release, but without a global extended pax header. git tar-tree --remote=example.com:git.git v1.4.0 >git-1.4.0.tar Get a tarball v1.4.0 from example.com. git tar-tree HEAD:Documentation/ git-docs > git-1.4.0-docs.tar Put everything in the current head's Documentation/ directory into git-1.4.0-docs.tar, with the prefix git-docs/. GIT
Part of the git(1) suite Git 1.8.3.1 06/10/2014 GIT-TAR-TREE(1)
All times are GMT -4. The time now is 06:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy