search for: imran

Displaying 20 results from an estimated 52 matches for "imran".

2005 Jan 11
8
What is the best and easiest flavor to be used with Asterisk.
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 2848 bytes Desc: image001.jpg Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20050111/b2d08439/attachment.jpeg -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type:
2012 Jul 31
2
Remove a complete row as per the Range in a Matrix
Hi, Here i have a Matrix MyMatrix <- Name Age --------- ------- ANTONY 27 IMRAN 30 RAJ 22 NAHAS 32 GEO 42 and here i have an array with Minimum and Maximum values. MinMaxArray <- data.frame(MIN = 25,MAX=35) MIN MAX ------ -------- 25 35 ------------------------------------------------------ Now what i...
2004 Dec 21
3
Problems installing Zaptel
...nux-2.6.7` make: *** [linux26] Error 2 I found some help on that which instructs to make a symbolic link I did the following. ln -s /usr/src/linux-2.6.7 -> /lib/modules/build/linux-2.6.7 It still gives me the same error. Does anyone have any suggestions? Thanks in advance. Imran -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20041221/070b2a5e/attachment.htm
2015 Sep 17
1
[PATCH v2 1/1] extlinux: fix memory leak
On Fri, Sep 11, 2015 at 10:12 AM, Paulo Alcantara via Syslinux <syslinux at zytor.com> wrote: > On Thu, 10 Sep 2015 10:55:04 +0300 > Imran Zaman via Syslinux <syslinux at zytor.com> wrote: > >> devname is put on heap for all cases to avoid memory >> leak, and ease of use in future as well >> >> Signed-off-by: Imran Zaman <imran.zaman at intel.com> > > Reviewed-by: Paulo Alcantara <pcacjr...
2011 Sep 17
1
How to install 64bit softwares in Wine
...run a shell script? Secondly, it asks me to configure wine for 64-bit compilation and I'm pretty sure you can't do that in terminal :P... So, I'm kind of lost now.. Here is an example of what happens when I try to install a 64-bit windows application (iTunes in particular) > > imran at imran-desktop:~$ cd ~/Desktop/ > imran at imran-desktop:~/Desktop$ wine "iTunes64Setup.exe" > err:process:create_process starting 64-bit process L"Z:\\home\\imran\\Desktop\\iTunes64Setup.exe" not supported in 32-bit wineprefix > wine: Bad EXE format for Z:\home\imran...
2010 Jun 29
3
FTP: which FTP is best for Ubuntu to upload rails project
I am trying to upload the constants to my shared server but built in FTP in Ubuntu is not working -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2004 Sep 02
3
digitnetworks card issues?
...ten => _1NXXNXXXXXX,1,Dial(Zap/2/{$EXTEN}) (is that only supposed to put you on channel 2 or actually dial the # for you?) but I first hear noise, then a dial tone, but as soon as I start dialing numbers I get feedback and noise, and the call doesn't go through. Any suggestions? Thanks, Imran
2015 Sep 10
2
[PATCH v2 1/1] extlinux: fix memory leak
devname is put on heap for all cases to avoid memory leak, and ease of use in future as well Signed-off-by: Imran Zaman <imran.zaman at intel.com> --- extlinux/main.c | 44 ++++++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 14 deletions(-) diff --git a/extlinux/main.c b/extlinux/main.c index 55a1495..b7cdf92 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -1044,12 +104...
2004 Aug 29
2
zaptel configuration
...39;t work. in a previous thread they mentioned this is because some chan_zap.so file isn't loaded because of the zaptel installation. I was told I had to REINSTALL asterisk after the zaptel stuff, which again didn't do anything. How can this be so hard to even get installed? Thanks, Imran
2015 Sep 09
1
[PATCH v1 1/1] extlinux: fix file descriptors leak
file descriptors are closed when not in use Signed-off-by: Imran Zaman <imran.zaman at intel.com> --- extlinux/main.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/extlinux/main.c b/extlinux/main.c index 09740bd..55a1495 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -580,6 +580,7 @@ int ext2_fat_install_file(co...
2004 Aug 20
1
x100p won't answer
...exten => s,5,BackGround(demo-instruct) [line2] exten => s,1,Answer exten => s,2,DigitTimeout,5 exten => s,3,ResponseTimeout,10 exten => s,4,BackGround(demo-congrats) exten => s,5,BackGround(demo-instruct) I have no idea why it's not working would appreciate any help Thanks, Imran
2004 Aug 22
3
zap show channels - no such command
Hi, in response to a previous posting regarding getting the x100p to work, I was told to run "zap show channels," but when i do i get "no such command 'zap'" There was a previous posting on this, but the guy never posted the solution. thanks, Imran
2004 Sep 02
1
no dial tone when dialing out on vonage
...;t work - when i dial in the extension, i can see on a phone connected to the same line that it's gone active - but there's no dialtone. also tried adding a wait period before accessing the line and exten => _XXXXXXXXXX,1,Dial(Zap/2/${EXTEN}) to no avail. what's goin on? Thanks, Imran
2003 Dec 11
1
users migration from Linux to W2K
...ed successfully user from Novel Netware to Windows 2000 but facing problem in Linux Users. Do you know any utility which can help us out? So, we can move users IDs and password to Windows 2000 active Directory instead of manually creating more 900 users in W2K AD. Thanks in advance Best Regards, Imran
2015 Jul 02
2
[LLVMdev] input and output values from a loop
...erstanding, i and fact are declared inside the loop, hence they are neither input nor output. Secondly, sum is being used outside the loop, hence should appear in outputs. Is this the right way of doing it or am i doing some thing wrong? Complete working code can be found at: https://github.com/imranashraf/llvm-pass-exercise1 Thanks in advance for help. Kind regards,
2015 Sep 09
1
[PATCH v1 1/1] extlinux: fix memory leak
devname is put on heap for all cases to avoid memory leak, and ease of use in future as well Signed-off-by: Imran Zaman <imran.zaman at intel.com> --- extlinux/main.c | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) diff --git a/extlinux/main.c b/extlinux/main.c index 55a1495..7bb7443 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -1044,12...
2004 Nov 11
2
most stable sata raid cards for centos
Hi, What are the most stable sata raid cards for centos. Looking at sata raid1 setup. Kind Regards, Imran ************************************* This electronic transmission is strictly confidential and intended solely for the addressee. If you are not the intended addressee, you must not disclose, copy or take any action in reliance of this transmission. ************************************* -----...
2013 Oct 27
1
dunnett test questions
...o the control group)? 2) Do I have to tell the test what my sample sizes are, or will it calculate the sums itself? Here's my matrix: Control A B C Yes 23 19 27 53 No 623 523 823 469 thanks, imran [[alternative HTML version deleted]]
2015 Sep 11
0
[PATCH v2 1/1] extlinux: fix memory leak
On Thu, 10 Sep 2015 10:55:04 +0300 Imran Zaman via Syslinux <syslinux at zytor.com> wrote: > devname is put on heap for all cases to avoid memory > leak, and ease of use in future as well > > Signed-off-by: Imran Zaman <imran.zaman at intel.com> Reviewed-by: Paulo Alcantara <pcacjr at zytor.com> Thanks,...
2004 Aug 21
3
zaptel config
...s,5,BackGround(demo-instruct) [line2] exten => s,1,Answer exten => s,2,DigitTimeout,5 exten => s,3,ResponseTimeout,10 exten => s,4,BackGround(demo-congrats) exten => s,5,BackGround(demo-instruct) I have no idea why it's not working would appreciate any help Thanks, Imran