Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Problem with N/W card in solaris Post 8876 by edwin_francis on Friday 19th of October 2001 01:08:15 AM
Old 10-19-2001
hi optimus


its shutting down properly without any issues its not crashing too


Regds
Francis
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

ethernet card for Solaris

Hi, How can i check the speed of the Ethernet card that my Sun server has and also how can i change it to full Duplex if it is set to half duplex? What is the file that takes care of this? (3 Replies)
Discussion started by: i2admin
3 Replies

2. IP Networking

Solaris 9 Ethernet Card Problems

I keeping plumbing my ethernet card and assigning it an IP address and netmask, but after I reboot it keeps losing this information. Can anyone help me solve this problem? I am using the command: ifconfig hme0 plumb <IP Address> netmask <Subnet Mask> broadcast + up I am running Solaris 9 OS. (2 Replies)
Discussion started by: saucierm
2 Replies

3. UNIX for Advanced & Expert Users

SCSI Card in Solaris 8

HI, I am trying to install Symbios SCSI PCI adapter in Ultra10 but unable to configure it. Getting following errors genunix: NOTICE: glm0: fault detected in device; service still unavailable genunix: NOTICE: glm0: Symbios PCI device (1000,3) not supported. Anyone has an idea, how to resolve... (1 Reply)
Discussion started by: s_aamir
1 Replies

4. SCO

LAN card problem

Dear all Im facing one problem in SCO 5.0.5 , its that in the server there are three LAN cards INTEL PRO 100 series but when we configure all the three cards then LAN stops working . self ping is possible but no one can ping the server. If we remove driver of any one card LAN starts working. Is... (1 Reply)
Discussion started by: ccvyas
1 Replies

5. Solaris

emulex card on solaris 9

Hello, I am new on solaris. We will connect our sun solaris system to the SAN and add 2 Emulex card on the system (solaris 9). Who have already done this and can give me the procedure to follow ? driver to install multipath etc... Thanks in advance Emmanuel (1 Reply)
Discussion started by: emma32
1 Replies

6. Solaris

Network card drivers for solaris?

Hi all, i have configured my solaris 5 .10 for internet connection by editing the files /etc/hosts/,/etc/resolve.config,/etc/defalutrouter and nsswitchconfig . during installation i was not requested for ip adddress even i plugged network cable. am i need to install any network card... (2 Replies)
Discussion started by: srikanthg
2 Replies

7. Solaris

Solaris 10 SCSI card question

I have 2 solaris boxes and trying to connect to D1000 to do clustering. I put the U cable to see the disks from both side, but I can't see any of the disks when I use format command. How can I verify that differential card is installed and configured correctly? Thanks in advance. (12 Replies)
Discussion started by: mokkan
12 Replies

8. Solaris

Old RSC card problem

All, I have a unique situation concerning RSC cards and would like to see if anyone has a solution. Here is the situation: We are migrating older versions of Solaris using ufsdump images to like older hardware. We basically installed a temporary Solaris O/S then copied the dumps over and... (5 Replies)
Discussion started by: sljack
5 Replies

9. Solaris

Problem with my Ethernet Card

Hi Gurus of Solaris. I have a problem yesterday when I was installing solaris in a x86 equipement I attached some log that I capture when I try to resolve the problem Any guru that can help please. Any command or procedure that I can run, please advice me Regards Andres (10 Replies)
Discussion started by: andresguillen
10 Replies

10. Solaris

Very new to Solaris and Sun, need help please (video card)

Hello all, I am trying to learn about Solaris and Sun systems so I purchased a SunFire 280r running Solaris 9 with a disk array from eBay. The system had no video card so I purchased a PGX32 card for the PCI slot and installed it. The problem is I have no video what so ever. I am familiar... (3 Replies)
Discussion started by: FTBTX
3 Replies
GnuPG::Tie(3pm) 					User Contributed Perl Documentation					   GnuPG::Tie(3pm)

NAME
GnuPG::Tie::Encrypt - Tied filehandle interface to encryption with the GNU Privacy Guard. GnuPG::Tie::Decrypt - Tied filehandle interface to decryption with the GNU Privacy Guard. SYNOPSIS
use GnuPG::Tie::Encrypt; use GnuPG::Tie::Decrypt; tie *CIPHER, 'GnuPG::Tie::Encrypt', armor => 1, recipient => 'User'; print CIPHER <<EOF; This is a secret EOF local $/ = undef; my $ciphertext = <CIPHER>; close CIPHER; untie *CIPHER; tie *PLAINTEXT, 'GnuPG::Tie::Decrypt', passphrase => 'secret'; print PLAINTEXT $ciphertext; my $plaintext = <PLAINTEXT>; # $plaintext should now contains 'This is a secret' close PLAINTEXT; untie *PLAINTEXT; DESCRIPTION
GnuPG::Tie::Encrypt and GnuPG::Tie::Decrypt provides a tied file handle interface to encryption/decryption facilities of the GNU Privacy guard. With GnuPG::Tie::Encrypt everyting you write to the file handle will be encrypted. You can read the ciphertext from the same file handle. With GnuPG::Tie::Decrypt you may read the plaintext equivalent of a ciphertext. This is one can have been written to file handle. All options given to the tie constructor will be passed on to the underlying GnuPG object. You can use a mix of options to output directly to a file or to read directly from a file, only remember than once you start reading from the file handle you can't write to it anymore. AUTHOR
Francis J. Lacoste <francis.lacoste@Contre.COM> COPYRIGHT
Copyright (c) 1999, 2000 iNsu Innovations Inc. Copyright (c) 2001 Francis J. Lacoste This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. SEE ALSO
gpg(1) GnuPG(3) perl v5.14.2 2011-11-22 GnuPG::Tie(3pm)
All times are GMT -4. The time now is 05:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy