similar to: error logs ?

Displaying 20 results from an estimated 9000 matches similar to: "error logs ?"

2006 Oct 04
1
smbstatus
Hello all, I get the following and am not sure what is going on. Its on a solaris10 box. And my share is named 'hold' Thanks, Abhimanyu. # /opt/samba/bin/smbstatus Processing section "[hold]" Error loading module '/opt/samba/lib/charset/ISO8859-1.so': ld.so.1: smbstatus: fatal: /opt/samba/lib/charset/ISO8859-1.so: open failed: No such file
2008 Jun 22
3
Wine and opengl error!!!
Hi all, I'm having trouble running windows games from Fedora 9, 64 bit, using wine rc3. I've tried Command & Conquer 3, Age Of Mythology and Jazz Jackrabbit 2. All games fail. I mostly get an error saying that direct3d9 won't work without opengl. However, I have opengl. I've run glxgears and it runs fine. Following is the output: 8877 frames in 5.0 seconds = 1775.333 FPS 9327
2006 Apr 19
0
Re: new_callback_call and conf disconnect
We are using G711 for phones to talk to Asterisk and G729 licenses at asterisk to talk to ITSP Could you please suggest transcoder to use from G711 and G729 and which is comptible with Asterisk. We will like to avoid using TDM if possible Also i remember that initially we didn't have G729 and were using only 711 for with vicidial but then also we had same problems. at that time it was only 2
2000 Jun 07
0
Please Help - WINS server problems
Hello, We are successfully using Samba with a remote WINS server which is located on another site. We have a second site (Worcester) which has successfully been using the same WINS server and communicating with our Samba servers (Shipley5 and Shipley6). Recently the PCs in Worcester have been unable to connect to our Samba server in Shipley. The other site uses a different DHCP server to our
2011 Aug 25
1
Bivariate normal regression in R
Hello everyone, I need to fit a bivariate normal regression model to a dataset where the same covariate (say, X) influences two separate but correlated responses (say, Y1 and Y2). So, the bivariate model would look like : Y1 = a1 + b1*X + e1 Y2 = a2 + b2*X + e2 where e1 and e2 are error terms which can be correlated. Is there any package in R which can help me fit this model ? Any help will be
2017 Aug 20
0
Add brick to a disperse volume
Hi, Adding bricks to a disperse volume is very easy and same as replica volume. You just need to add bricks in the multiple of the number of bricks which you already have. So if you have disperse volume with n+k configuration, you need to add n+k more bricks. Example : If your disperse volume is 4+2, where 2 is the redundancy count, you need to provide 6 (or multiple of 6) bricks (4+2 = 6)
2017 Aug 19
2
Add brick to a disperse volume
Hello, I'm using Gluster since 2 years but only with distributed volumes. I'm trying now to set dispersed volumes to have some redundancy. I had any problem to create a functional test volume with 4 bricks and 1 redundancy ( Number of Bricks: 1 x (3 + 1) = 4 ). I had also any problem to replace a supposed faulty brick with another one. My problem is that I can not add a brick to
2015 Jun 15
0
Any alternative to Single User Mode
On 06/14/2015 10:27 PM, Animesh Pandey wrote: > On Sun, Jun 14, 2015 at 10:51 PM, jd1008 <jd1008 at gmail.com> wrote: > >> >> On 06/14/2015 08:02 PM, Animesh Pandey wrote: >> >>> On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com> wrote: >>> >>> >>>> On 06/14/2015 07:36 PM, Animesh Pandey wrote: >>>>
2015 Jun 15
0
Any alternative to Single User Mode
On 06/14/2015 08:02 PM, Animesh Pandey wrote: > On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com> wrote: > >> >> On 06/14/2015 07:36 PM, Animesh Pandey wrote: >> >>> On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com> wrote: >>> >>> >>>> On 06/14/2015 06:47 PM, Animesh Pandey wrote: >>>>
2015 Jun 15
1
Any alternative to Single User Mode
On Mon, Jun 15, 2015 at 12:33 AM, jd1008 <jd1008 at gmail.com> wrote: > > > On 06/14/2015 10:27 PM, Animesh Pandey wrote: > >> On Sun, Jun 14, 2015 at 10:51 PM, jd1008 <jd1008 at gmail.com> wrote: >> >> >>> On 06/14/2015 08:02 PM, Animesh Pandey wrote: >>> >>> On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com>
2012 Dec 02
0
[LLVMdev] operator overloading fails while debugging with gdb for i386
Hi, As you told that function ends up returning void, I just confirmed it in the IR, the function is defined as: define *void* @_Z3sum2A1S_(*%struct.A1* noalias sret %agg.result*, %struct.A1* byval align 4 %one, %struct.A1* byval align 4 %two). But when i checked the register values in g++, eax contains an address of stack, which points to the value (object) returned by sum. That is if we
2015 Jun 15
0
Any alternative to Single User Mode
On 06/14/2015 07:36 PM, Animesh Pandey wrote: > On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com> wrote: > >> >> On 06/14/2015 06:47 PM, Animesh Pandey wrote: >> >>> I actually opened the Virtual Disk Image (.vdi) on http://www.vmxray.com/ >>> . >>> I could see that despite my disk being of 100GB only ~65GB was being >>>
2013 Sep 25
0
[LLVMdev] initialization list with conversion operator dont work properly and report error
I'm not really an overload resolution expert, so I could be wrong. Anyway, please file a bug report (http://llvm.org/bugs/), and our overload resolution experts will take a look. :) -Eli On Wed, Sep 25, 2013 at 6:34 AM, Mayur Pandey <mayurthebond at gmail.com>wrote: > Actually it should have not thrown error at all. it works fine with gcc. > And the part of code which you
2012 Dec 01
2
[LLVMdev] operator overloading fails while debugging with gdb for i386
Hi, Structures are passed by pointer, so the return value is not actually in eax. That code gets transformed into something like: void sum(A1 *out, const A1 one, const A1 two) { out->x = one.x + two.x out->y = one.y + two.y } So actually the function ends up returning void and operating on a hidden parameter, so %eax is dead at the end of the function and should not be being relied
2005 Dec 20
0
R package for x-12-arima
Hi, Vikram and I are beginning work on a native R package to interface into X-12-arima. We have looked through gretl, and previous discussions on kludgy interfaces involving calls to the x12a binary. Our aim is to port as much of the functionality as possible with native R objects, and to do away with the archaic file-based interface of X-12-arima. Our estimate is that
2012 Sep 26
0
asterisk-users Digest, Vol 98, Issue 38
Hi?Danny, Thank you for your prompt response. The way you are suggesting is great .?Infect?asterisk have its own functionality that if user presses *1 during meetme conferencing asterisk automatically unmute that user and user comes in talking mode.But it is not?fulfill my need. There is and issue that if 3-4 user presses *1 at the same time than how can i decide that who is asking the question
2017 Mar 26
0
Draft Proposal
Hi, Please give your feedbacks in the Google doc -> https://docs.google.com/document/d/1wrbkD3OlhrmJZnrgcNyQrISwcQdTX2uJ9WDWiuO87g4/edit?usp=sharing . Regards, Ayush Pandey. On Sun, Mar 26, 2017 at 6:57 PM, Ayush Pandey < f2012714 at goa.bits-pilani.ac.in> wrote: > Hi, > I have submitted a draft proposal on the GSoC website but I also > wanted to share my draft
2015 Jun 15
0
Any alternative to Single User Mode
On 06/14/2015 06:47 PM, Animesh Pandey wrote: > I actually opened the Virtual Disk Image (.vdi) on http://www.vmxray.com/. > I could see that despite my disk being of 100GB only ~65GB was being shown. > All the stuff related ot the local user was not visible at all. > After I restarted my VM, the OS gets stuck here ( > http://i.stack.imgur.com/KVYxV.png). Even after trying the
2015 Jun 15
2
Any alternative to Single User Mode
On Sun, Jun 14, 2015 at 10:51 PM, jd1008 <jd1008 at gmail.com> wrote: > > > On 06/14/2015 08:02 PM, Animesh Pandey wrote: > >> On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com> wrote: >> >> >>> On 06/14/2015 07:36 PM, Animesh Pandey wrote: >>> >>> On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com>
2010 May 05
1
backend migration and Samba upgrade.
Short background : Due to Windows Seven deplaoyment we have to upgrade Samba 3.0 to Samba 3.4 (actually less version but I see no reason not to go directly to 3.4). And due to SQL backend support aborted we have to switch from SQL backend to LDAP backend. What I have in mind to do this migration is the following : -install samba 34/OpenLDAP (I also change the machine in the meantime)