Displaying 20 results from an estimated 1000 matches similar to: "Problem to enter in domain"
2007 Nov 16
2
Domain server unavailable
Hi all.
I'm having a serious problem with my samba/ldap server.
It was working well till the last week and today stops definitly.
Nothing has changed. Now my network is down and nobody can log in.
When I restart samba:
invoke-rc.d samba restart
* Stopping Samba daemons...
start-stop-daemon: warning: failed to kill 4436: No such process
2007 May 02
2
Asterisk-1.4 with agent snmp
Hi,
I`m trying to use the agent snmp buit in the asterisk-1.4, but I can`t
do this...
I used this link to do it: http://www.voipphreak.ca/archives/382 but I
can't...
Does somebody know how to do this or knows a how-to to do this??
Thank's
_______________________________________________________
Yahoo! Mail - Sempre a melhor op??o para voc?!
Experimente j? e veja as
2007 May 08
1
Problem when PABX call to Asterisk by Unicall
Hi all,
I have an Asterisk server connected in a PABX (TELEDATA) by channel
Unicall..
I`m having problem when somebody call from PABX to Asterisk..
Eg: When somebody dial 1234, I received 1111112222333333444444 in the
Asterisk CLI...
If somebody can help me... or already saw this...
Everton Goularth
Uberlandia - MG - Brazil
_______________________________________________________
2007 Jun 06
1
Record CDR in a Oracle database
Hello All,
How can I do to record my asterisk's CDR in a Oracle database?
I have to use unixODBC?
Can anybody send me a step to step to do this configuration?
Thank's All
Everton Goularth
_______________________________________________________
Yahoo! Mail - Sempre a melhor op??o para voc?!
Experimente j? e veja as novidades.
http://br.yahoo.com/mailbeta/tudonovo/
2007 Dec 04
1
Fax on asterisk
Hi people,
I'm tring to configure fax on my asterisk server. I'm using the
instructions of: http://www.asteriskguru.com/tutorials/spandsp.html and
the files app_rxfax.c, app_txfax.c and apps_Makefile_patch from:
http://www.soft-switch.org/downloads/snapshots/spandsp/test-apps-asterisk-1.2/
I have already configure this on other server that the operation system
is CentOS 4 and all
2007 Jun 20
1
Res: Record CDR in a Oracle database
Hi All,
Thank's for your hint Tim Panton
I could connect my asterisk machine to my oracle machine.
I used unixODBC-2.2.11.tar.gz,
oracle-instantclient-basic-10.2.0.3-1.i386.rpm,
oracle-instantclient-sqlplus-10.2.0.3-1.i386.rpm and the drive from
www.oracle.com (odbc-oracle-3.1.0-linux-x86-glibc.tar) to configure my
asterisk machine.
I can connect to my oracle machine with isql and in
2007 Jul 13
1
Keeping old profiles
Hi all.
The user did not log in samba.
Now, log in samba, how I make to keep the old profile?
I don't want that a new profile is created.
The username is the same.
Thanks in advance.
Sincerely
Walmiro Muzzi
_______________________________________________________
Yahoo! Mail - Sempre a melhor op??o para voc?!
Experimente j? e veja as novidades.
2008 Jan 26
5
double-click in RData file versus load( file )
hello all,
when I start up the R and I execute o follow code:
> ls()
character(0)
> x=123
> assign("test_x", x, envir = .GlobalEnv )
> ls()
[1] "test_x" "x"
> setwd('C:\\R\\etc')
> save.image('TEST.RData')
> q('no')
I have two different behaviours:
(a) - when I start up R again by "double click" in
2007 Aug 01
1
smbd panic
Hi all.
Please.
Can somebody explain to me what's goin on with samba???
Thanks in advance!
Aug 1 10:37:03 cronos smbd[28462]: [2007/08/01 10:37:03, 0]
lib/substitute.c:alloc_sub_basic(521)
Aug 1 10:37:03 cronos smbd[28462]: alloc_sub_basic: NULL source
string! This should not happen
Aug 1 10:37:03 cronos smbd[28462]: [2007/08/01 10:37:03, 0]
lib/fault.c:fault_report(36)
Aug 1
2007 Apr 09
3
tc (CBQ) and UDP packets
2007 May 28
0
Limit outgoing call for sip peer
Hi All,
I need to limit outgoing calls in my sip peers...
I tried to use "call-limit=1" in these peers in the sip.conf, but it
didn't work...
Here is my peer configuration in the sip.conf:
[sip.broadvoice.com]
accountcode=broadvoice
type=peer
dynamic=yes
username=MYUSERNAME
fromuser=MYUSERNAME
authname=MYUSERNAME
user=MYUSERNAME
secret=xxxxxxxx
host=sip.broadvoice.com
2007 Sep 25
2
show queue (queue name)
Hi all,
does anybody know any way that when it run "reload app_queue" in the
asterisk cli it don't lose the informations from "show queue (queue
name)" ?
I'm passing for this trouble, because I need this informations
(http://www.voip-info.org/wiki/index.php?page=asterisk+cli+command+show+queue)
that asterisk cli command "show queue (queue name)" show me
2007 May 07
2
Asterisk to record CDR in DB Oracle
Hi People,
I had success to do my asterisk to record CDR in a databese MYSQL...
Now, I need to do it to record CDR in Oracle...
Does Anybody knows how to do this??
Every hints are welcome....
Thank`s all
Everton Goularth
Uberlandia - MG - Brazil
_______________________________________________________
Yahoo! Mail - Sempre a melhor op??o para voc?!
Experimente j? e veja as
2010 Jun 10
1
Problems logging windows machines
Hi all.
Need your help...
I can join the domain normally.
After restarting indicates that duplicate name exists on the network.
When I try to log in, indicates that the domain is unavailable.
I made two machines and get the message in both.
I'm using Ubuntu 9.04 and configured using this tutorial:
2007 Oct 05
4
Replacing NA values when building matrix using tapply
Hi,
I'm building a matrix m from a data frame d which includes the matrix row,
column and value.
This works well enough:
m <- tapply(d[,"value"],d[,c("row","column")],c)
However, I'd like to replace any missing values with 0, not NA. The
obvious doesn't work, however:
m <-
2008 May 30
1
Get all X iterations in optim output when controls(trace=6)
Hi,
I would like to get all X iterations in optim output in matrix form.
I know about the follow approach:
sink("reportOptim")
optim( ......., control=list( trace=6,..........) )
sink()
all_iterOptim <- readLines("reportOptim")
unlink("reportOptim")
all_iterOptim <- all_iterOptim[ grep( '^X', all_iterOptim ) ]
### TODO: the rest !!! :-)
But it is very
2008 Jun 18
1
Error in bugs.run -- R2WinBUGS
Hi,
I tried to use MethComp library and this library make use of the WinBUGS
by R2WinBuGUS,
but I get the follow error in bugs.run:
*Error in bugs.run(n.burnin, bugs.directory, WINE = WINE, useWINE =
useWINE, : *
Look at the log file and
try again with 'debug=TRUE' to figure out what went wrong within Bugs.
Anyone can help-me, please?
Thanks
Cleber
library( MethComp )
library(
2011 Sep 27
1
Log: param/loadparm.c:widelinks_warning(4722)
Good afternoon.
Today, after a printer is, all machines on the network accused "spooler is
not running."
With the printer removed, all other work once again.
Now, some users are complaining that some files are not opening.
I have checked the log of samba, and is continuing with this message:
"9/27/2011 14:43:12, 0] param / loadparm.c: widelinks_warning (4722)
Share 'IPC
2008 May 29
2
lm() function
hi,
my linear model is y=c+a*x1+b*x2 i tried to found a, c, b by the use of:
mymodel<-lm(y~1+x1+x2) where y, x1, x2 are 3 vectors with the same length
the result is a=NA.so i want to know where is the problem.
--
View this message in context: http://www.nabble.com/lm%28%29-function-tp17546079p17546079.html
Sent from the R help mailing list archive at Nabble.com.
2007 Jun 18
4
triangle contour plots
Suppose I have three numbers p1, p2, p3 with
0 <= p1,p2,p3 <= 1 and p1+p2+p3=1,
and a function f=f(p1,p2,p3) = f(p1,p2,1-p1-p2).
How to draw a contour plot of f() on the p1+p2+p3=1 plane,
that is, an equilateral triangle?
Functions triplot(), triangle.plot(), and ternaryplot() give
only scatterplots, AFAICS
--
Robin Hankin
Uncertainty Analyst
National Oceanography Centre,