Sponsored Content
Full Discussion: Veritas or Legato?
Top Forums UNIX for Advanced & Expert Users Veritas or Legato? Post 10474 by shimb0 on Wednesday 14th of November 2001 06:58:59 PM
Old 11-14-2001
Legato is a good product as well. They both work, if they are configured correctly, they both work well. I think it depends more on what people are more familiar with. (matter of opinion)

Shimb0
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Veritas or Legato??

Hi guys, What product would you suggest for a hot/on-line backup with an active oracle database ?? (6 Replies)
Discussion started by: guest100
6 Replies

2. UNIX for Advanced & Expert Users

Legato Networker

Has anyone ever used Networker to backups a SunSolaris 5.4 system. I have all the my other OS on the network being backup except for the 5.4 systems. It's has to do with a daemon. So help me out this doesn't make any since> (3 Replies)
Discussion started by: aojmoj
3 Replies

3. HP-UX

Legato networker on hp-ux

Hello, Firstable I am new on hp-ux (well long time ago) I am more aix admin.... Legato networker is the tool backup use on the hp-ux. I don't know this tool and would like to know where to find some docs or training. My first question will be : when a system (hp-ux B.11.0) is backuped on a... (8 Replies)
Discussion started by: touny
8 Replies

4. Filesystems, Disks and Memory

restore from Legato

Hi Fellas/Ladies I havent dont any restore unix systemsand recently issue has come up that I need to restore to fridays copy. I want to restore everything to last fridays for the directory /usr/local/projects. Anyone done legato restores? Would it keep acl/permissions, symlinks etc. ... (0 Replies)
Discussion started by: brabored
0 Replies

5. UNIX for Advanced & Expert Users

Legato Display

I am running legato 7.3.2. Here is my issue. I have taken over the backup duties from an employee who left the company. He was running Legato as the backup server/client of choice (I don't know much about Legato, but i am learning on the job). He has it setup to run the admin qui from the backup... (3 Replies)
Discussion started by: seacros
3 Replies

6. AIX

Did Sudo break my Legato

I have a system that has been runing Legato for a few years (i inherieted this system). I have now been tasked with maintaining this system. I installed sudo on it so i didnt have to give out my root password and not some of my SAP backup jobs are failing. Can anyone out there give me some help?... (2 Replies)
Discussion started by: seacros
2 Replies

7. Solaris

legato for Lotus (load_notes_api|0|0|0)

hai, Help me please OS SUN 5.10 Lotus 8 Legato for Lotus 3.0 when backing up gives this error The dlopen() call for library libnotes.so failed with error: ld.so.1: nsrnotesv: fatal: libnotes.so: open failed: No such file or directory (load_notes_api|0|0|0) ... ... (1 Reply)
Discussion started by: eshon
1 Replies

8. UNIX for Dummies Questions & Answers

Legato networker 7.6

Hi ALl I have recently installed networker 7.6 on my solaris 10 host(V240). My bosses requirement was that the GUI was still availible (nwadmin). However on 7.6 there is no GUI and nwadmin does not exist. I have copied nwadmin over from the previous version of legato i had installed (6.2), and... (5 Replies)
Discussion started by: brian112
5 Replies

9. Solaris

Legato Networker

Hi , I have a lot of Tape device with backups from solaris sparc servers. This tape are in Legato Networker Format and now I need access and search an old backup. I know that Legato needed a Server , but this server is wrong , this down long time ago. I have a Legato Networker Server/Client... (10 Replies)
Discussion started by: z0rtiz
10 Replies

10. UNIX for Beginners Questions & Answers

How to extend a disk in veritas volume manager in veritas cluster?

Hi Experts, I wanted to extend a veritas file system which is running on veritas cluster and mounted on node2 system. #hastatus -sum -- System State Frozen A node1 running 0 A node2 running 0 -- Group State -- Group System Probed ... (1 Reply)
Discussion started by: Skmanojkum
1 Replies
PCAP_GET_SELECTABLE_FD(3PCAP)											     PCAP_GET_SELECTABLE_FD(3PCAP)

NAME
pcap_get_selectable_fd - get a file descriptor on which a select() can be done for a live capture SYNOPSIS
#include <pcap/pcap.h> int pcap_get_selectable_fd(pcap_t *p); DESCRIPTION
pcap_get_selectable_fd() returns, on UNIX, a file descriptor number for a file descriptor on which one can do a select() or poll() to wait for it to be possible to read packets without blocking, if such a descriptor exists, or -1, if no such descriptor exists. Some network devices opened with pcap_create() and pcap_activate(), or with pcap_open_live(), do not support select() or poll() (for example, regular network devices on FreeBSD 4.3 and 4.4, and Endace DAG devices), so -1 is returned for those devices. Note that in: FreeBSD prior to FreeBSD 4.6; NetBSD prior to NetBSD 3.0; OpenBSD prior to OpenBSD 2.4; Mac OS X prior to Mac OS X 10.7; select() and poll() do not work correctly on BPF devices; pcap_get_selectable_fd() will return a file descriptor on most of those versions (the exceptions being FreeBSD 4.3 and 4.4), but a simple select() or poll() will not indicate that the descriptor is readable until a full buffer's worth of packets is received, even if the read timeout expires before then. To work around this, an application that uses select() or poll() to wait for packets to arrive must put the pcap_t in non-blocking mode, and must arrange that the select() or poll() have a timeout less than or equal to the read timeout, and must try to read packets after that timeout expires, regardless of whether select() or poll() indicated that the file descriptor for the pcap_t is ready to be read or not. (That workaround will not work in FreeBSD 4.3 and later; however, in FreeBSD 4.6 and later, select() and poll() work correctly on BPF devices, so the workaround isn't necessary, although it does no harm.) Note also that poll() doesn't work on character special files, including BPF devices, in Mac OS X 10.4 and 10.5, so, while select() can be used on the descriptor returned by pcap_get_selectable_fd(), poll() cannot be used on it those versions of Mac OS X. Kqueues also don't work on that descriptor. poll(), but not kqueues, work on that descriptor in Mac OS X releases prior to 10.4; poll() and kqueues work on that descriptor in Mac OS X 10.6 and later. pcap_get_selectable_fd() is not available on Windows. RETURN VALUE
A selectable file descriptor is returned if one exists; otherwise, -1 is returned. SEE ALSO
pcap(3PCAP), select(2), poll(2) 5 April 2008 PCAP_GET_SELECTABLE_FD(3PCAP)
All times are GMT -4. The time now is 04:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy