Displaying 20 results from an estimated 900 matches similar to: "Hanging while booting"
2008 Mar 13
3
Newbie One-touch Recording: Does not work (more info)
I thought it was quite easy to implement but I cannot get one-touch
recording to work. Here are the changes what I did:
I restarted Asterisk after the change (because reload does not work for
changes in features.conf).
I press *1 on the Polycom IP600 phone to record a conversation but no
new wav file appear in /var/spool/asterisk/monitor or elsewhere.
Test A: Outside line calling in
2008 Mar 13
5
Newbie One-touch Recording: Does not work
I thought it was quite easy to implement but I cannot get one-touch
recording to work. Here are the changes what I did:
I restarted Asterisk after the change (because reload does not work for
changes in features.conf).
I press *1 on the Polycom IP600 phone to record a conversation but no
new wav file appear in /var/spool/asterisk/monitor or elsewhere.
Any suggestions?
Here is the console log:
2011 Apr 25
1
Blocking an IP address both as source and destination
Hello,
how do you block incoming AND outgoing traffic to a site?
I have 2 drop lines for a site in my /etc/sysconfig/iptables:
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT ACCEPT [294:35064]
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -s xx.xx.xx.0/24 -j DROP
-A INPUT -d xx.xx.xx.0/24 -j DROP
-A INPUT -p icmp -m icmp --icmp-type any -j
2011 Apr 15
3
[PATCHv3] libxl: Exposed Flask XSM functionality
Adds support for assigning a label to domains, obtaining and setting the
current enforcing mode, and loading a policy with xl command and libxl
header when the Flask XSM is in use. Adheres to the changes made by the
patch to remove exposure of libxenctrl/libxenstore headers via libxl.h.
tools/libxl/libxl_flask.c | 71 ++++++++++++++++++
tools/libxl/Makefile | 2
2011 Apr 04
2
[PATCHv2] libxl: Exposed Flask XSM functionality
Adds support for assigning a label to domains, obtaining and setting the
current enforcing mode, and loading a policy with xl command when the
Flask XSM is in use.
libxl.c | 1
libxl.idl | 3 -
xl.h | 3 +
xl_cmdimpl.c | 171
+++++++++++++++++++++++++++++++++++++++++++++++++++++++---
xl_cmdtable.c | 18 +++++-
5 files changed, 187 insertions(+), 9
2018 Dec 18
2
Interprocedural AA
Hi,
I'm looking for interprocedural AAs and have, of course, found
https://llvm.org/docs/AliasAnalysis.html. However, the AAs that come
bundled with LLVM do not work interprocedurally in a way that I need it
(on/with stack variables). The two interesting looking AAs come with the
optional `poolalloc' module that hasn't been updated in years (I guess
2007 Dec 29
2
DO NOT REPLY [Bug 5166] New: -o -g options don't work right or I've misread the man pages
https://bugzilla.samba.org/show_bug.cgi?id=5166
Summary: -o -g options don't work right or I've misread the man
pages
Product: rsync
Version: 2.6.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
2017 Nov 03
2
sysvol replcation rsync error
On Fri, 3 Nov 2017 10:18:14 +0100
"L.P.H. van Belle via samba" <samba at lists.samba.org> wrote:
> Best guess..
>
> Can you check this :
>
> ( from the wiki )
> Good:
> rsync --dry-run -XAavz --delete-after
> --password-file=/usr/local/samba/etc/rsync-sysvol.secret
> rsync://sysvol-replication@{IP-of-you-PDC}/SysVol/ /path/to/your/sysvol/folder/
2008 Mar 05
1
Newbie dialplan: dial 0 for outside line
I just managed to put in a TE410 card in an Asterisk box to work with
OnRamp 20(E1 downunder). I am able to dial in but was not able to dial
out.
Can anyone offer me some advice please?
In my extensions.conf, I just put in:
[default]
...
exten => 0,1,Dial(Zap/g1)
and I get this on the console when I dialled 0.
-- Executing [0 at default:1] Dial("SIP/5166-b76004f8",
2003 Sep 19
1
configure fixes for Tru64 UNIX V4.0x
1) Testing of uidswap.c on a Tru64 UNIX V4.0G PK4 (BL22) machine shows the
following defines to be required for correct uid changing semantics:
#define BROKEN_SETREGID 1
#define BROKEN_SETREUID 1
#define SETEUID_BREAKS_SETUID 1
Failure to fix these contributes to breaking privilege separation
(in a safe way: connections will fail while UsePrivilegeSeparation=yes,
thanks to
2012 Jun 19
1
how to manipulate dput output format
I am reading into Java dput output for a matrix, more specifically for a
file backed big-matrix. I basically need to lift dimnames for a matrix from
dput output. It's no big deal, but the code is very 'hackish' due to the
need to get rid of quotes, endlines, parenthesis, etc. I was wondering if i
could manipulate to an extent dput output with some options that define it,
for example,
2001 Dec 03
1
Printing & Samba 2.0.7
Greetings,
I have a site that has an old DOS (As in the OS!) program that prints
ASCII characters, since moving it onto a samba server (Used to be on an
old NT Server), it now prints the UNIX equivalent of the DOS ASCII
values output from the program. For example, when the program attempts
to do a - character, it prints a strange accent character (which is the
correct ASCII character for UNIX).
2017 Jul 15
2
PartialAlias: different start addresses
> On 07/14/2017 04:37 PM, Nuno Lopes wrote:
>> Thank you all for your replies.
>> So here seems to be an agreement that the documentation for PartialAlias
>> is incorrect.
>>
>> Daniel: now you got me wondering about MustAlias. This is what the docs
>> say:
>> "The MustAlias response may only be returned if the two memory objects
>> are
2010 Nov 24
3
[LLVMdev] Question regarding the alias analysis chaining behaviour
Hi,
I am using LLVM 2.4 on a Linux RHEL5 machine. I was trying to figure out
how the chaining of the alias analysis passes works in LLVM. Here are the
command I used to test the chaining part.
1. ./opt hello_world_1_nest_func.bc -o hello_world_1_nest_func_AA.bc
-no-aa -anders-aa -licm
Result: Anderson's AA and No Alias Analysis both are called.
2. ./opt hello_world_1_nest_func.bc -o
2005 Jul 25
1
removing (hopefully) unneeded access to $HOME
Hi,
Thanks for dovecot. It's the best IMAP server ever.
Okay, here's my problem:
I use mbox INBOXes from /var/spool/mail/%u, and the INDEX lies in
/var/spool/mail/dovecot/%d/%u. Users' other folders are found in /%h/mail.
Now, I notice that when a user is accessing her INBOX, the imap process cwd's to
the user's home, which I'd like to prevent as much as possible.
2017 Nov 03
5
sysvol replcation rsync error
Hello ,
( samba 4.6.9 - centos 6 DC1 centos DC2 )
I tried to sync sysvol as described in
https://wiki.samba.org/index.php/Rsync_based_SysVol_replication_workaround
between two DC
but rsync shows some errors like this
rsync: set_acl:
sys_acl_set_file(apam-ad.apam.it/Policies/{D725AAC4-27E8-46AC-918D-55B560988386}/Machine/Applications/{031B2C75-D832-429B-B4C4-226BAA665E3A}.aas,
2006 Dec 25
2
Problem to generate training data set and test data set
I have a full data set like this:
aa bas aas bms ams bcu acu omega y
1 ALA 0 127.71 0 69.99 0 -0.2498560 79.91470 outward
2 PRO 0 68.55 0 55.44 0 -0.0949008 76.60380 outward
3 ALA 0 52.72 0 47.82 0 -0.0396550 52.19970 outward
4 PHE 0 22.62 0 31.21 0 0.1270330 169.52500 inward
5 SER 0 71.32 0 52.84 0 -0.1312380 7.47528 outward
6
2008 Jul 20
1
Error in edit(name,file,title,editor)
Can anyone help me with the following attempt to use an external
editor from within R
> vi(file="p286.R")
Error in edit(name, file, title, editor) : unable to open file to read
> edit(file="p286.R")
Error in edit(name, file, title, editor) : unable to open file to read
I have only recently re-started trying to learn R. (I tried before
but failed.)
I am working
2012 May 03
2
GAM, how to set qr=TRUE
Hello,
I don't understand what went wrong or how to fix this. How do I set qr=TRUE
for gam?
When I produce a fit using gam like this:
fit = gam(y~s(x),data=as.data.frame(l_yx),family=family,control =
list(keepData=T))
...then try to use predict:
(see #1 below in the traceback() )
> traceback()
6: stop("lm object does not have a proper 'qr' component.\n Rank zero or
should
2006 Jun 05
2
DTMF and DISA
Hi Folks,
I'm trying to test out Asterisk overall.
I'm having some problems with DTMF. Currently I'm playing with DISA,
but I'm worried this will happen when I get to implementing AAs etc.
I have a free SIP trunk from IPKall that I'm trying to make work.
I'm able to receive calls, and I've now setup and extension with DISA
and a password.
I connect ok from the