Displaying 20 results from an estimated 30000 matches similar to: "Function - simple question"
2017 Aug 18
3
Inconsistency in map index
Hello,
The following errors are constantly popping up for 2 accounts. I can't get
it fixed,
I did doveadm backup to another account, the same happens in the new
account.
I did doveadm force-resync, the problem persists.
I'm using dovecot 2.2.
2017-08-18T11:46:12.472821881Z Aug 18 11:46:12 lmtp(ramon.lacerda at alliar.com):
Warning: mdbox
2007 Jun 20
3
Management tool
Hi guys,
I need to manage a university which has 900 computers distributed along some
departments and I wanna use a tool to do this.
I'm testing GOsa (www.gosa-project.org) and I wanna know which tools you are
using.
That's all folks.
--
Allysson Steve Mota Lacerda
Administrador de Redes
http://www.stevelacerda.net
2009 Jan 30
3
Xen on a HPC Cluster
Hi folks.
I have some old servers running Windows and Linux and I want to create a HPC
cluster. However I wanna know if Xen can distribute a single virtual machine
along multiple nodes to increase it''s performance.
--
Allysson Steve Mota Lacerda
Laboratório de Inteligência Computacional - LABICOMP
Programa de Pós-Graduação em Engenharia Elétrica – PPGEE
Universidade Federal de Minas
2007 Mar 20
5
Problem with 02 domains on a single PDC
Hi all.
I have 01 Samba-LDAP Server running 02 domains on separated networks.
----------------
| SERVER |
----------------
| |
| |
ADMIN LABI
When I try to join the ADMIN domain, the machine joins the LABI domain. When
I stop the LABI domain, the machine can join the ADMIN domain normally.
Does anyone know how to fix this?
Thanks.
My configuration files are
2007 Nov 11
1
Clustering
[Sorry for possible duplicated thread.]
Hi.
I''m new to Xen and I would know if it works well in a cluster environment
(Beowulf, OpenMosix, CoLinux etc).
I need an HPC running some virtual machines. Is this possible with Xen?
Regards.
--
Allysson Steve Mota Lacerda
Administrador de Redes
http://www.stevelacerda.net
_______________________________________________
Xen-users mailing
2007 Mar 26
1
Samba-LDAP interdomain trust
I'm trying to create a trust between two Samba-LDAP domains (on a single
server).
I'm following Samba Howto Collection
(http://us3.samba.org/samba/docs/man/Samba-HOWTO-Collection/NetCommand.html#id335566)
but I'm getting the error below.
root@facomp01:~# /usr/local/samba.labi/bin/net rpc testjoin -S
rpc_client/cli_pipe.c:get_schannel_session_key(2443)
get_schannel_session_key:
2008 Oct 06
4
UPS (Megatec) with strange voltage values
Hello Nut List!
I have 2 "Lacerda 10KVA" UPS that returns strange values for Q1 and F
commands:
Q1
(215.0 215.0 219.0 004 60.0 2.27 39.0 00000001
F
#220.0 045 240.0 60.0
At least what I know about Megatec, It seems to say that it has a 240.0 V
battery with currently 2.27V. Quite strange.
I contacted Lacerda to help me interpret this values and they said that 2.27
is just 1 element
2014 Jun 18
1
Nobreak LACERDA NEW ORION 800VA
Hi,
It's just to confirme that I've tested and NUTUPS is working fine with
hardware below:
Manufacturer: LACERDA
Hardware: NEW ORION 800VA
Driver: blazer_usb
Thanks for that.
Regards,
Alex.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/nut-upsdev/attachments/20140618/3a98edf3/attachment.html>
2016 Apr 28
4
Interdependencies of variable types, logical expressions and NA
Hi All,
my script tries to do the following on factors:
> ## Check for case 3: Umsatz = 0 & Kunde = 1
> for (year in 2011:2015) {
+ Umsatz <- paste0("Umsatz_", year)
+ Kunde <- paste0("Kunde01_", year)
+ Check <- paste0("Check_U_0__Kd_1_", year)
+
+ cat('Creating', Check, 'from', Umsatz, "and", Kunde,
2016 Apr 28
0
Antwort: RE: Interdependencies of variable types, logical expressions and NA
Hi
your initial ds
> str(ds)
'data.frame': 2 obs. of 3 variables:
$ var1: num 1 1
$ var2: logi TRUE FALSE
$ var3: logi NA NA
first result
> str(ds)
'data.frame': 2 obs. of 6 variables:
$ var1 : num 1 1
$ var2 : logi TRUE FALSE
$ var3 : logi NA NA
$ value_and_logical: logi TRUE TRUE
$ logical_and_na : logi TRUE NA
2012 Jun 10
3
SNMP agent for NUT
Hello guys,
I was some years ago when I sent something to this list.
NUT is a great tool but lacks SNMP management. It can access a device using SNMP
but I found no way to read NUT values using SNMP. It would be very
useful in order to integrate with
network management software based on SNMP. As I did not find a
solution, I wrote it myself.
I wrote a MIB file and a SNMP agent for net-snmp
2012 Jun 10
3
SNMP agent for NUT
Hello guys,
I was some years ago when I sent something to this list.
NUT is a great tool but lacks SNMP management. It can access a device using SNMP
but I found no way to read NUT values using SNMP. It would be very
useful in order to integrate with
network management software based on SNMP. As I did not find a
solution, I wrote it myself.
I wrote a MIB file and a SNMP agent for net-snmp
2017 Apr 20
2
Dovecot not listening when testing connection
Hi Webert -- Thanks for the quick reply and observation.
When I try "telnet localhost 143" I get the same result. It does connect
but then the connection is dropped.
# telnet localhost 143
Trying ::1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.
I never get the "* OK [CAPA....]"
Thanks,
On 04/20/2017 10:41 AM, Webert de
2016 Apr 28
0
Interdependencies of variable types, logical expressions and NA
Hi
Your script is not reproducible.
Creating Check_U_0__Kd_1_2011 from Umsatz_2011 and Kunde01_2011
Error in ifelse(Kunden01[[Umsatz]] == 0 & Kunden01[[Kunde]] == 1, 1, 0) :
object 'Kunden01' not found
>
This is interesting
x <- c(NA, FALSE, TRUE)
names(x) <- as.character(x)
outer(x, x, "&") ## AND table
<NA> FALSE TRUE
<NA> NA FALSE
2017 Apr 20
2
Dovecot not listening when testing connection
Hi, here's my result for
# doveconf -n|grep ssl
ssl = yes
ssl = required
ssl_cert = /etc/exim/ssl/wildcard_cantella_com.crt.chained
ssl_cipher_list = ALL:!LOW:!SSLv2:SSLv3:!EXP:!aNULL
ssl_key = /etc/exim/ssl/wildcard_cantella_com.key
verbose_ssl = yes
On 04/20/2017 11:27 AM, B. Reino wrote:
> On Thu, 20 Apr 2017, Alvaro Lacerda wrote:
>
>> These are my dovecot logs. It
2010 Jan 16
2
Drought severity index: Excel to R
Dear all,
I'm trying to make an R code for the drought severity index (DSI)
developed by Philips and McGregor (1998). You can refer to the
description of the algorithm on page 19 from
http://dissertations.port.ac.uk/229/01/MaloneS.pdf
The code is given in Excel as the following and can be found on page 60
from the same link.
C7 =
IF(C6<0,IF(@SUM(A6:A1)<0,C6+A6,"0"),
2017 Apr 20
2
Dovecot not listening when testing connection
Hi B. Reino,
These are my dovecot logs. It looks like this error pops up every time I
run "telnet localhost 143"
Apr 20 11:11:39 imap-login: Fatal: Couldn't parse private ssl_key:
error:0906D06C:PEM routines:PEM_read_bio:no start line: Expecting: ANY
PRIVATE KEY
Apr 20 11:11:39 master: Error: service(imap-login): command startup
failed, throttling for 60 secs
On 04/20/2017
2007 Mar 16
1
Information about SSID structure
I'm experiencing some problems with Samba-LDAP and I wanna know a little
more about the structure of SSID.
Does anyone know where I can find information about this?
--
Allysson Steve Mota Lacerda
stevelacerda@stevelacerda.net
http://www.stevelacerda.net
2009 Nov 20
1
rounding the time: significant 0 does not appear (PR#14074)
Full_Name: Gustavo Lacerda
Version: 2.9.1
OS: Windows
Submission from: (NULL) (137.82.157.97)
I obtained 'time' by subtracting the results of two calls to sys.Time().
> round(time,0)
Time difference of 1 mins
> round(time,1)
Time difference of 1 mins
> round(time,2)
Time difference of 1.03 mins
> round(time,3)
Time difference of 1.032 mins
Note that the second command
2007 Jan 11
1
SAMBA-LDAP - Group permissions
Hi folks.
I have a functional Samba-LDAP server running as a PDC with Windows 2003
clients.
I'm changing the structure of my LDAP tree and I want to give
administrator's permissions to a branch (i.e. ou=teachers,dc=domain,dc=com).
Is there a way to do this automatically (i.e. by using an argument in
smb.conf)?
Ah... I tried to use admin users in smb.conf to give permissions to a single