Sponsored Content
Top Forums UNIX for Advanced & Expert Users Ha mailserver, is possible active/active with "constant" connection? Post 303045799 by Linusolaradm1 on Monday 13th of April 2020 05:03:22 PM
Old 04-13-2020
Thanks, works fine now.
 

6 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Windows Active Network Connection Override

Hi All, I use two Network Connections at work: Wireless and LAN. Wireless network has no limitations, but LAN internet has a web filter. I start a download using my Wireless conn. (At this point, LAN is disabled) But when I activate my LAN connection my download stops immediately. LAN... (4 Replies)
Discussion started by: kalavkalav
4 Replies

2. AIX

Question about HACMP for active-active mode

Hi all, I am new to HACMP. So sorry for the newie question. But I did search the forum and it seems that no one asks this before. So if a 2-node cluster runs in active-active mode (and the same application), what is the benefit of using HACMP ? If it runs in active-stanby, it is easy to... (9 Replies)
Discussion started by: qiulang
9 Replies

3. Solaris

Link based Active Active IPMP

Hi, I need to configure 4 ip address (same subnet and mask) in one ipmp group (two interfaces) in an active active formation (link based). Can some one provide the steps or a tutorial link. Thanks (2 Replies)
Discussion started by: Mack1982
2 Replies

4. Shell Programming and Scripting

Extract text between two specified "constant" texts using awk

Hi All, From the title you may know that this question has been asked several times and I have done lot of Googling on this. I have a Wikipedia dump file in XML format. All the contents are in one XML file i.e. all different topics have been put in one XML file. Now I need to separate them and... (1 Reply)
Discussion started by: shoaibjameel123
1 Replies

5. Linux

active mode ftp connection from linux

Hi, We have one java client which connects to a windows server through ftp in active mode and gets files. When we run this client on hp-ux, it is able to transfer 100k files. But when we run the same client on Linux server it is able to transfer only 200 files at max and it is hanging there... (1 Reply)
Discussion started by: urspradeep330
1 Replies

6. Shell Programming and Scripting

How do I calculate total number of active and non active hosts?

#!/bin/bash for digit in $(seq 1 10) do if ping -c1 -w2 192.168.1.$digit &> /dev/null then echo "192.168.1.$digit is UP" else echo "192.168.1.$digit is DOWN" fi done (3 Replies)
Discussion started by: fusetrips
3 Replies
UI::Dialog::Gauged(3pm) 				User Contributed Perl Documentation				   UI::Dialog::Gauged(3pm)

NAME
UI::Dialog::Gauged SYNOPSIS
use UI::Dialog::Gauged; my $d = new UI::Dialog::Gauged ( title => 'Default title', height => 20, width => 65 , listheight => 5, order => [ 'zenity', 'xdialog' ] ); # Either a Zenity or Xdialog msgbox widget should popup, # with a preference for Zenity. $d->msgbox( title => 'Welcome!', text => 'Welcome one and all!' ); ABSTRACT
UI::Dialog::Gauged is simply another meta-class for UI::Dialog. This class simply has a different order of priority than UI::Dialog and only uses backends that support a standard set of gauge related functions. DESCRIPTION
This class is simply a nice way to try and ensure a GNOME based widget set. EXPORT
None INHERITS
UI::Dialog CONSTRUCTOR
new( @options ) EXAMPLE my $d = new( title => 'Default Title', backtitle => 'Backtitle', width => 65, height => 20, listheight => 5, order => [ 'zenity', 'xdialog' ] ); DESCRIPTION This is the Class Constructor method. It accepts a list of key => value pairs and uses them as the defaults when interacting with the various widgets. RETURNS A blessed object reference of the UI::Dialog::Gauged class. OPTIONS The (...)'s after each option indicate the default for the option. debug = 0,1,2(0) order = [ zenity, xdialog, cdialog, whiptail ] (as indicated) PATH = [ /bin, /usr/bin, /usr/local/bin, /opt/bin ] (as indicated) backtitle = "backtitle" ('') title = "title" ('') beepbefore = 0,1(0) beepafter = 0,1(0) height = d+(20) width = d+(65) listheight = d+(5) WIDGET METHODS
gauge_start( ) EXAMPLE $d->gauge_start( text => 'gauge...', percentage => 1 ); DESCRIPTION Display a meter bar to the user. This get's the widget realized but requires the use of the other gauge_*() methods for function- ality. RETURNS TRUE(1) if the widget loaded fine and FALSE(0) for anything else. gauge_inc( ) EXAMPLE $d->gauge_inc( 1 ); DESCRIPTION Increment the meter by the given amount. RETURNS TRUE(1) if the widget incremented fine and FALSE(0) for anything else. gauge_set( ) EXAMPLE $d->gauge_set( 99 ); DESCRIPTION Set the meter bar to the given amount. RETURNS TRUE(1) if the widget set fine and FALSE(0) for anything else. gauge_text( ) EXAMPLE $d->gauge_text( 'string' ); DESCRIPTION Set the meter bar message to the given string. RETURNS TRUE(1) if the widget set fine and FALSE(0) for anything else. gauge_stop( ) EXAMPLE $d->gauge_stop(); DESCRIPTION End the meter bar widget process. One of the flaws with gdialog is that the gauge widget does not close properly and requies the end user to close the gauge window when 100% has been reached. This is the second reason why I'm glad gdialog is going the way of the dodo. RETURNS TRUE(1) if the widget closed fine and FALSE(0) for anything else. SEE ALSO
PERLDOC UI::Dialog UI::Dialog::Backend UI::Dialog::Backend::CDialog UI::Dialog::Backend::Nautilus UI::Dialog::Backend::Whiptail UI::Dialog::Backend::XDialog UI::Dialog::Backend::XOSD UI::Dialog::Backend::Zenity MAN FILES zenity(1), Xdialog(1), dialog(1), whiptail(1), osd_cat(1) and nautilus(1) BUGS
Please email the author with any bug reports. Include the name of the module in the subject line. AUTHOR
Kevin C. Krinke, <kckrinke@opendoorsoftware.com> COPYRIGHT AND LICENSE
Copyright (C) 2003 Kevin C. Krinke <kckrinke@opendoorsoftware.com> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA perl v5.8.8 2004-08-01 UI::Dialog::Gauged(3pm)
All times are GMT -4. The time now is 06:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy