Sponsored Content
Full Discussion: mac unix
Operating Systems OS X (Apple) mac unix Post 99316 by puddwudd on Thursday 16th of February 2006 07:00:50 AM
Old 02-16-2006
Re: build box for 3 platforms

Jingle Jangle,

You won't get Tiger to run on anything other than Apple Hardware (G5 tower for example) - it is specifially designed and built for Apple's own hardware only. Even with the latest versions of Tiger, designed for Intel based Macs, the same applies. It'll only run on a Mac with an Intel processor in it.

As to the XP & Unix bit, I'm guessing you should be able to run both platforms on the same hardware, though the Unix will most likely have to be a Linux flavour.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix on Mac

Simple Q here. What GOOD telnet programs are out there for MAC. I use this one that can't utilize the VI editor. I don't know why. Thankx for your help in advance. /D (8 Replies)
Discussion started by: DIEZEL
8 Replies

2. UNIX Desktop Questions & Answers

Mac OS X & Unix.

Are the Terminal commands used in Mac OS 10.1.3 the same as those found on a real Unix system? if they are, what book would you recommend as a terminal refferance guide? I already have 'The Missing Manual' by O'Reilly, but there ain't much in terms of managing the system via the terminal :( ... (9 Replies)
Discussion started by: LAdesign
9 Replies

3. OS X (Apple)

unix flavour on mac

I'm quite interested in resusing an old bondi iMac i have as a unix box, and i was wondering what distro people would recomend. I had thought of using BSD/FreeBSD cos thats what osx is based on. I'm doing this as a teaching excercise (for myself) so i'm looking for something achievable rather than... (9 Replies)
Discussion started by: ora
9 Replies

4. UNIX for Dummies Questions & Answers

mac unix

hi, i'm running mac 10.5, and i have a file eg. program after i compiled on the terminal using this command; cc -o program program.c however, i'm unable to see the process hierachy for that program. i tried using "ps -C program -l --forest" and unable to see the tree structure. need... (1 Reply)
Discussion started by: grotesque
1 Replies

5. OS X (Apple)

Mac OS X & UNIX

I just joined the Forum a few days ago! :) I have a mac book and decided to look under the hood. Low and behold, UNIX! To be honest, I know nothing about unix, but I want to learn. I have no real goals as of yet, other than to learn what I can. I do own a few domains hosted by a good company. ... (4 Replies)
Discussion started by: fellojello
4 Replies

6. OS X (Apple)

Unix on a Mac OS X

Hi. I'm using a Mac computer to perform all my Unix operations. At the moment, I'm employing osascript to interact between windows and don't know whether the same is possible to do it on a BASH shell without calling osascript. If so, I would like to see an example of how to do it. Many thanks in... (0 Replies)
Discussion started by: hresquivelo
0 Replies

7. UNIX for Dummies Questions & Answers

unix on mac

Hello, I formated my hard disk and i recovered some videos, but the thing is the videos were in .MOV format and now there are just UNIX executable files, i tried to write at the end of the name the extension but quicktime didn't recognize me the videos, somebody can help me with this problem... (1 Reply)
Discussion started by: arielorc
1 Replies
OPENSSL_ia32cap(3)						      OpenSSL							OPENSSL_ia32cap(3)

NAME
OPENSSL_ia32cap - finding the IA-32 processor capabilities SYNOPSIS
unsigned long *OPENSSL_ia32cap_loc(void); #define OPENSSL_ia32cap (*(OPENSSL_ia32cap_loc())) DESCRIPTION
Value returned by OPENSSL_ia32cap_loc() is address of a variable containing IA-32 processor capabilities bit vector as it appears in EDX register after executing CPUID instruction with EAX=1 input value (see Intel Application Note #241618). Naturally it's meaningful on IA-32[E] platforms only. The variable is normally set up automatically upon toolkit initialization, but can be manipulated afterwards to modify crypto library behaviour. For the moment of this writing six bits are significant, namely: 1. bit #28 denoting Hyperthreading, which is used to distiguish cores with shared cache; 2. bit #26 denoting SSE2 support; 3. bit #25 denoting SSE support; 4. bit #23 denoting MMX support; 5. bit #20, reserved by Intel, is used to choose between RC4 code pathes; 6. bit #4 denoting presence of Time-Stamp Counter. For example, clearing bit #26 at run-time disables high-performance SSE2 code present in the crypto library. You might have to do this if target OpenSSL application is executed on SSE2 capable CPU, but under control of OS which does not support SSE2 extentions. Even though you can manipulate the value programmatically, you most likely will find it more appropriate to set up an environment variable with the same name prior starting target application, e.g. on Intel P4 processor 'env OPENSSL_ia32cap=0x12900010 apps/openssl', to achieve same effect without modifying the application source code. Alternatively you can reconfigure the toolkit with no-sse2 option and recompile. 50 2013-03-05 OPENSSL_ia32cap(3)
All times are GMT -4. The time now is 10:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy