HP thinly provisions EVA - Techworld.com

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News HP thinly provisions EVA - Techworld.com
# 1  
Old 06-18-2007
HP thinly provisions EVA - Techworld.com

HP thinly provisions EVA
Techworld.com, UK - 1 hour ago
He said: "Other operating systems support will follow in due course," referring to Unix (HP-UX), Linux and OpenVMS. HP-UX and Linux will be next with ...


More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Some question about SAN on HP 4400 EVA

Good morning. For testing purpose i have buy a SAN DISK SHELF i need now a controller(hsv300) and a switch SAN Is my first SAN so i'm a little confused about cables. For testing we use an old rx2600 hp server the adapter is HP A6795AX A6795-62001 Some fast questions: i need an fc/fc cable... (7 Replies)
Discussion started by: Linusolaradm1
7 Replies

2. AIX

Attach HP EVA to IBM AIX powerpc singlepath

Dear all. We have a very big issue on Attach HP EVA to IBM AIX powerpc singlepath. the configurations on lscfg -vl fcs2 fcs2 U789C.001.DQD8D74-P1-C2-T1 4Gb FC PCI Express Adapter (df1000fe) Part Number.................10N7249 Serial... (3 Replies)
Discussion started by: Juri_al
3 Replies

3. Solaris

EVA storage HUNG / Solaris issue

Hi, I have a query , is it possible that few LUNs presented to the Solaris OS which are in the unlabeled state can hung EVA frame and cause it to get unresponsive ? please help. thanks. (1 Reply)
Discussion started by: mushtaq
1 Replies

4. UNIX for Advanced & Expert Users

Can AIX 5.3 - 6 Boot From HP EVA 6000 SAN

Hi There, Has anyone had any luck with or know how to get AIX 5+ to boot from a HP EVA 6000 SAN? The servers used here will be P Class Blades My initial searches on this so far did not bring results so I am guessing this may not be possible on HP SAN's but please let me know if I am... (0 Replies)
Discussion started by: fazzasx
0 Replies

5. HP-UX

Any EVA admin's out there?

I was conveniently excluded from some EVA8000 training, and now find myself with an EVA zoned, but no physical devices :( My ioscan appears as follows: ba 1 0/1 lba CLAIMED BUS_NEXUS Local PCI Bus Adapter (782) fc 0 0/1/0/0 ... (3 Replies)
Discussion started by: mr_manny
3 Replies
Login or Register to Ask a Question
ISATTY(3)                                                    Linux Programmer's Manual                                                   ISATTY(3)

NAME
isatty - test whether a file descriptor refers to a terminal SYNOPSIS
#include <unistd.h> int isatty(int fd); DESCRIPTION
The isatty() function tests whether fd is an open file descriptor referring to a terminal. RETURN VALUE
isatty() returns 1 if fd is an open file descriptor referring to a terminal; otherwise 0 is returned, and errno is set to indicate the error. ERRORS
EBADF fd is not a valid file descriptor. EINVAL fd refers to a file other than a terminal. POSIX.1 specifies the error ENOTTY for this case. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +----------+---------------+---------+ |Interface | Attribute | Value | +----------+---------------+---------+ |isatty() | Thread safety | MT-Safe | +----------+---------------+---------+ CONFORMING TO
POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD. SEE ALSO
fstat(2), ttyname(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2015-08-08 ISATTY(3)