Sponsored Content
Full Discussion: VAX/VMS anyone??
Top Forums UNIX for Dummies Questions & Answers VAX/VMS anyone?? Post 46721 by Perderabo on Thursday 22nd of January 2004 01:17:10 PM
Old 01-22-2004
He did say VAX, not VMS.

VAX is the name of a hardware architecture, like sparc or pa-risc. BSD unix was born on a VAX. I worked on Vaxen using both BSD and Ultrix.

Many design decisions in the BSD kernel were made based on the VAX architecture.

But I still would not call VAX a "little brother" of Unix.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

VMS ---- What sites can I visit to learn it????

please help, any VMS sites you know of to learn this operating system?? (3 Replies)
Discussion started by: TRUEST
3 Replies

2. UNIX for Advanced & Expert Users

How to remotely execute a script (.COM ) on a VMS system ?

How to remotely execute a script (.COM ) on a VMS system ? rsh ? Thanks in advance (1 Reply)
Discussion started by: ivancleber
1 Replies

3. Linux

Cannot ftp from VMS to Linux

Hi I'm using a Linux machine (CENTOS 5) to ftp a file from a VMS Alpha box (i hardly know anything about these machines). All seems to be working upto the point where it states the transfer has started but it just hangs... ftp> get SPOOL.28 local: SPOOL.28 remote: SPOOL.28 200 Port 228.87... (2 Replies)
Discussion started by: rizla65
2 Replies

4. UNIX for Dummies Questions & Answers

SFTP VMS to UNIX

All I am a VMS guy just learning UNIX. My first task is to SFTP files from VMS to UNIX in BATCHMODE without having to enter a password. Note that using SFTP interactively works just fine. I have followed some specific instructions provided by a vendor with no success. I have also read... (0 Replies)
Discussion started by: randyhouse
0 Replies

5. Virtualization and Cloud Computing

Linux-VServer vms to ESX migration

Hi, I have an existing linux server hosting some vservers. In addition, a VMware ESX is in place. My goal is to get rid of the linux-vserver system and migrate each vserver on the ESX properly. Is that possible ? Thanks for your help. Fiss (0 Replies)
Discussion started by: fiss
0 Replies

6. Emergency UNIX and Linux Support

RHEL and Centos VMs with IO failure on root

Hello, I am running into this issues, few VMWare VM's that are running with RHEL 5.6 and Centos 5.7, are having read write errors on the root file system. This is noticed on all vm's. After looking to log files this what I noticed. #touch test.txt touch: cannot touch `test.txt': Read-only... (12 Replies)
Discussion started by: bobby320
12 Replies

7. Solaris

Solaris 10 VMs hang after about a week

Hi all, We're been having issues with quite a few Solaris 10 VMs hanging after about a week of uptime. These VMs are running on VMware ESXi 4.1 U1 hosts and the issue does not occur on any specific host. We also running CentOS VMs and are not experiencing any issues with those VMs. The VMs that... (5 Replies)
Discussion started by: derekivey
5 Replies

8. HP-UX

Basic questions about Integrity VMs

Hello, I am looking into HP-UX 11.31 VMs and I had a few questions. We own two systems with 11.31 installed on them: HP 9000 rp3440 (RISC) - 2gb memory - 2 processors HP Integrity rx2660 (Itanium) - 8gb memory - 4 processors Looking at the memory requirements in the Integrity VM... (4 Replies)
Discussion started by: bstring
4 Replies

9. Solaris

Oracle VMs and VLANs

I've been given an IP address to assign to an ldom that is in a different subnet than the host, and I am looking for assistance in getting it online. I believe I need "VLAN tagging" as found in this link, but I do not understand all of the terminology. My host machine is on subnet 10.25.112.x,... (1 Reply)
Discussion started by: bstring
1 Replies
HYPOT(3)						   BSD Library Functions Manual 						  HYPOT(3)

NAME
hypot, hypotf -- Euclidean distance and complex absolute value functions LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <math.h> double hypot(double x, double y); float hypotf(float x, float y); DESCRIPTION
The hypot() functions compute the sqrt(x*x+y*y) in such a way that underflow will not happen, and overflow occurs only if the final result deserves it. hypot(infinity, v) = hypot(v, infinity) = +infinity for all v, including NaN. ERRORS
Below 0.97 ulps. Consequently hypot(5.0, 12.0) = 13.0 exactly; in general, hypot returns an integer whenever an integer might be expected. The same cannot be said for the shorter and faster version of hypot that is provided in the comments in cabs.c; its error can exceed 1.2 ulps. NOTES
As might be expected, hypot(v, NaN) and hypot(NaN, v) are NaN for all finite v; with "reserved operand" in place of "NaN", the same is true on a VAX. But programmers on machines other than a VAX (it has no infinity) might be surprised at first to discover that hypot(+-infinity, NaN) = +infinity. This is intentional; it happens because hypot(infinity, v) = +infinity for all v, finite or infinite. Hence hypot(infinity, v) is independent of v. Unlike the reserved operand fault on a VAX, the IEEE NaN is designed to disappear when it turns out to be irrelevant, as it does in hypot(infinity, NaN). SEE ALSO
math(3), sqrt(3) HISTORY
Both a hypot() function and a cabs() function appeared in Version 7 AT&T UNIX. cabs() was removed from public namespace in NetBSD 5.0 to avoid conflicts with the complex function in C99. BSD
February 12, 2007 BSD
All times are GMT -4. The time now is 04:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy