Displaying 20 results from an estimated 4000 matches similar to: ""Dropping call because extensions '200', 's' and 'i' doesn't exists""
2008 Jan 24
2
Shearing file systems on the network
I have 4 systems and each one of them has a partition I'd like to be remotely
accessible on the other 3 systems.
In other words System1 has Partition1. Systems 2,3,4 should be able to
remotely mount Partition1 from System1. Also System2 has Partition2. Then
systems 1,3,4 should be able to remotely mount Partition2 from System2 and so
on.
I tried NFS and it works but only in the ideal
2012 Nov 02
3
lctl ping of Pacemaker IP
Greetings!
I am working with Lustre-2.1.2 on RHEL 6.2. First I configured it
using the standard defaults over TCP/IP. Everything worked very
nicely usnig a real, static --mgsnode=a.b.c.x value which was the
actual IP of the MGS/MDS system1 node.
I am now trying to integrate it with Pacemaker-1.1.7. I believe I
have most of the set-up completed with a particular exception. The
"lctl
2013 Jul 19
1
--fake-super locally?
I'm rsyncing files on system1 to its external HD. system2 is remote
and pulls those files from the external HD. system2 does not have
root privileges on system1 so I chown the files to pull. Can I
somehow use --fake-super or something similar to save the original
ownership info to ACLs?
- Grant
2002 Mar 26
0
openssh3.1p1 -- 'ssh' connection gets terminated
Hi,
Compiled openssh3.1p1 by adding '-DINET6' flag to compile line to enable
it to be installed on our ipv6 systems. No other code change was done
to openssh. Installed it on two ipv6 systems and two ipv4 systems.
Whenerer the server is an ipv4 system, ssh client seems to establish
connection but it terminates immediately after printing motd message.
Here is the typical failure
2007 Feb 08
0
Client browsing problem
hi all
I have a samba pdc with ldap backed, samba version being 3.0.21c, and
openldap 2.3.19.
All clients get ip through dhcp and dynamically updates dns also
The problem i am facing is from a windows 2000 client if i go to run and
browse another system
it connects to some other system
for example from START-> RUN->\\system1 , it will open some other system say
system2
when i ping to
2004 Sep 05
0
iconnect and Asterisk
Hello All,
I have gone thru all the resources I could find on google on asterisk + iconnect and managed to get outgoing calls working. However,
I cannot get incoming calls to work at all. With the sip debug on, I can see that something is happening everytime a call is received
from iconnecthere, but I get an invalid tone on the caller side. The call never rings anywhere on the asterisk. Would
2000 Jul 13
1
Disk Size Issue
I am sure this is not a problem, but more of a "can we do this" question. We
are using Samba Version 2.0.6 and my problem is this:
We have one Samba server for a site, we NFS mount filesystems from various other
machines to the Samba server, we then create a directory on the Samba server and
then create links under that directory to each of the mounted filesystems we
want to share.
2005 Dec 04
3
[Bug 3299] New: rsync: now replaces non-ASCII character with numerical values
https://bugzilla.samba.org/show_bug.cgi?id=3299
Summary: rsync: now replaces non-ASCII character with numerical
values
Product: rsync
Version: 2.6.6
Platform: Other
URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=307242
OS/Version: Linux
Status: NEW
Severity: major
Priority:
2003 Apr 24
8
call queues
is it possible to do with asterisk something like this
how ? maybe some copy of extensions and some other file ..pls.
call to asterisk server -> user 100 is busy -> recorded msg say "all
lines are busy , pls wait" ,"you are second caller in 'queue', pls wait"
-> caller is on hold till user 100 busy then ring user 100 (ext100)
another call to asterisk
2018 Aug 31
0
Detecting whether a process exists or not by its PID?
On 08/31/2018 03:13 PM, G?bor Cs?rdi wrote:
> On Fri, Aug 31, 2018 at 2:51 PM Tomas Kalibera <tomas.kalibera at gmail.com> wrote:
> [...]
>> kill(sig=0) is specified by POSIX but indeed as you say there is a race
>> condition due to PID-reuse. In principle, detecting that a worker
>> process is still alive cannot be done correctly outside base R.
> I am not sure
2018 Aug 31
1
Detecting whether a process exists or not by its PID?
On Fri, Aug 31, 2018 at 3:35 PM Tomas Kalibera <tomas.kalibera at gmail.com> wrote:
>
> On 08/31/2018 03:13 PM, G?bor Cs?rdi wrote:
> > On Fri, Aug 31, 2018 at 2:51 PM Tomas Kalibera <tomas.kalibera at gmail.com> wrote:
> > [...]
> >> kill(sig=0) is specified by POSIX but indeed as you say there is a race
> >> condition due to PID-reuse. In
2002 Mar 15
0
Permission denied
Hi,
I installed openssh3.1p1 on two IRIX test systems which have both
ipv6/v4 stack. When tried to execute ssh, it says permission denied and
it fails.
I did add --with-pam when i did configure, installed pam libraries also
on the test systems.
user1 at system1~
59 % /usr/freeware/bin/ssh user1 at system1 /usr/bin/true
user1 at system1's password:
Permission denied, please try again.
user1
2018 Sep 14
0
Bug when calling system/system2 (and request for Bugzilla account)
FWIW I can reproduce on macOS with R 3.5.1. A smaller example:
system2("ls", timeout = 5); x <- sample(1:1E8)
If I try to interrupt R while that sample call is running, R itself is closed.
Best,
Kevin
On Fri, Sep 14, 2018 at 10:53 AM Emil Bode <emil.bode at dans.knaw.nl> wrote:
>
> I hope it's not too specific in my setup...
> I've tried with system2
2010 Nov 11
1
Problem with system2(), directing STDERR to a file
According to ?system2, I should be able to direct the output of STDERR to a
file by giving the filename as a character vector to the "stderr" argument.
But here is what happens.
Given a ruby script test.rb (with its executable bit set):
#!/usr/bin/env ruby
STDOUT.puts "stdout"
STDERR.puts "stderr"
And the following R code:
> t <- tempfile()
> res <-
2019 Dec 15
1
system2 doesn't quote stdin on unix, unlike stdout, stderr & input and on Windows
Hi again!
While investigating the bug report [*] I found out that on unix, system2
does not quote its `stdin` argument while preparing the command line to launch.
It does shQuote the `stdout` and `stderr` arguments, and also the `f <-
tmpfile()` variable (which is used if `input` argument is provided),
which seems to set a precedent. On Windows, stdin, stdout, and stderr are handled
2018 Sep 14
0
Bug when calling system/system2 (and request for Bugzilla account)
I can't reproduce this. Can you be more precise: exactly where are you
putting the system2 call and exactly where are you sending the
interrupt signal with ^C?
Best,
luke
On Fri, 14 Sep 2018, Emil Bode wrote:
> Hi all,
>
> I found some strange behaviour, which I think is a bug. Could someone make an account for me on Bugzilla or pass on my report?
>
> The problem:
> When
2010 May 11
1
asterisk-users Digest, Vol 70, Issue 24
Yes this scenario works on my 2 systems which are at LAN. I made one system
as server (192.168.0.20) and registered from other system... it is fine but
now there is a different scene.
actually there is a registered user named abc at system1 (192.168.0.20)
having context [payasyougo] which is used to do outbound calls. we want to
use this user's context and account so that when we register
2015 Jun 24
0
system2() shortens R.home() to 8.3 form on windows
Hi,
So in an interactive R session, R.home() returns the following:
> R.home()
[1] "D:/biocbld/bbs-3.2-bioc/R"
However, if I call it from system2(), I get different results:
> system2("R", "-q -e R.home()")
> R.home()
[1] "D:/biocbld/BBS-3~1.2-B/R"
Similarly:
> system2("R", "-q -e Sys.getenv('R_HOME')")
>
2016 Dec 06
0
system2 fails with quiet=TRUE, but runs through with quiet=FALSE
Hi,
I have recently tried to check the test coverage using library("covr") and, interestingly, the command
> covr::package_coverage()
fails, while
> covr::package_coverage(quiet = FALSE)
runs through without problem. I traced the problem to a call to utils::install.packages(), where the option quiet is passed on. In utils::install.packages(), the problem seems to lie in the
2019 Mar 19
0
Possibly broken system2 env-option
You are using it wrong. It wants strings of the form "name=value", not a character vector with names as labels. So this is closer to the mark:
> system2("echo", env = c("VAR='Hello World'"), args = c("$VAR"))
>
However, as you see it doesn't work as intended. The problem is that the $-substitution refers to the environment of the shell