General :: How To Enable Debug Message

Dec 29, 2009

I am compiling gstreamer for my ARM board. When i compile that i am not getting "debug" messages. so i want "debug messages" while make my gstreamer. i added "./configure --enable-debug" but still i not getting debug message while i "make".

View 1 Replies


ADVERTISEMENT

Ubuntu :: Get The Message 'Could Not Enable Desktop Effects'?

Oct 3, 2010

I don't remember what I was doing exactly, I think I was changing the wallpaper and at the same time doing something else when all of a sudden the monitor flickered and I no longer had the advanced desktop effects with compiz. They had been working perfectly before and now all of a sudden I cannot use them. When I click on 'Extra' in the 'Visual Efects' I get the message 'Could not enable desktop effects'.I've tried 'compiz --replace' in the terminal and the windoww borders go away.

View 7 Replies View Related

Server :: LDAP / Message Do Not Enable Referrals Until After A Working Directory?

May 9, 2011

My slapd.conf file

# This file should NOT be world readable.
#
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/nis.schema
# Allow LDAPv2 client connections. This is NOT the default.
allow bind_v2
# Do not enable referrals until AFTER you have a working directory
code....

View 19 Replies View Related

General :: Reduce LVM Messages In /var/log/debug?

Feb 21, 2011

/var/log/debug gets lots of messages any time an LVM snapshot is setup (lvcreate --size ${size}k --snapshot --name "$LVM_snapshot_device" "$LVM_device"). Here is a recent sample.

Code:
Feb 19 22:40:10 CW8 lvm[2163]: Loading config file: /etc/lvm/lvm.conf
Feb 19 22:40:10 CW8 lvm[2163]: Opened /etc/lvm/lvm.conf RO

[code]....

View 5 Replies View Related

General :: Debug Symbols Of GNU Packages

Jul 21, 2011

Where can I find debug symbols of GNU packages, for example for coreutils etc.?

View 3 Replies View Related

General :: Debug Ssh Permissions And Keys?

Nov 15, 2010

I am trying to debug ssh permissions and keys. I am able to connect as root. However, I am unable to login as a new user (e.g., newuser). I have been trying to ssh as localhost to debug the issue. For example:

>ssh -vvvv newuser@localhost

will yield a lot of information. I think this is the relevant section, however, I am unable to resolve:

debug1: Host 'localhost' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:2
debug2: bits set: 533/1024

[Code].....

View 1 Replies View Related

General :: Debug Program And Need Something Like A Virtual Microphone?

Feb 13, 2011

I need debug my program and I need something like a virtual microphone. I would like device "microphone" where I can put sound file and this file will be input for microphone stream. And in application I get this stream from this "microphone"

File -> Microphone -> Application

is it possible?

something like bash command should by very very useful:

aplay --device=mic my_microphone.wav to run a microphone stream

View 2 Replies View Related

General :: How To Debug Fatal Relocation Error

May 31, 2011

Ive been messing around on a Solaris box, installing precompiled lib/programs from the repos by extracting them and placing them in my home dir. It seems everything ive tried sofar works, except for irssi. I get the following error:

$ ~/bin/irssi
ld.so.1: irssi: fatal: relocation error: file /export/home0/leem2/bin/irssi: symbol boot_DynaLoader: referenced symbol not found
Killed

I have run:
$ ldd /export/home0/leem2/bin/irssi
and it has no missing libs

View 1 Replies View Related

General :: Debug The DMESG Mesaage Or Any Link For The Same?

Jan 28, 2011

was trying to understand the messages the DMESG gives .Does any one knows how to debug the DMESG mesaage or any link for the same ?

View 6 Replies View Related

General :: Make Rules In A Makefile - Debug

Nov 17, 2009

Does anyone know if it is possible to make rules in a Makefile that would work like this:

> make debug module
or
> make module debug

where module can be any module that has a specific rule in the Makefile.

The thing I have is a Makefile with different rules that I compile like this:

> make module

What I would like is to add an option so I can compile whichever module with debug-information just by adding a debug to the make command. The debug-information I know how to do, the problem is how to make the Makefile work...

View 2 Replies View Related

General :: Debug A Script That Another Person Wrote.?

Jul 29, 2011

I am trying to debug a script that another person wrote. I am not very strong understanding awk.

cat ${origfile} | awk '{sub("�14","
\page
");print $0 "par"}' >>${rtftempfile}

I know awk is doing some kind of manipulation of the acsii file ${origfile}, just not sure what.

View 6 Replies View Related

General :: Debug A Newly Written System Cal?

Dec 17, 2010

i added a new system call..helloworld...

i rebuild the kernel and when i try to use it, it is returning -1.

can any one tell me how to debug and know where things went wrong..

how to see the kernel log when this syscall is called...i wrote a println in my syscall..but couldnt find that in /var/log/dmesg...

View 3 Replies View Related

Ubuntu :: Deluge WebUI Enable / Re-enable Subsequently Unable To Re-enable It (doesn't Appear In The Side Panel Again)?

Feb 10, 2010

I recently installed Deluge 1.2.0 from the following PPA:[URL]I using this on two different Linux computers. One is running Linux Mint 8 and the other is running Ubuntu Netbook Remix 9.10. The first time on either computer when I enable WebUI in the Deluge GUI it works fine. However if I ever disable it in plugins section I am subsequently unable to re-enable it (doesn't appear in the side panel again). Rebooting or reinstalling Deluge seems to have no effect.Is this a bug or am I doing something wrong?

View 3 Replies View Related

General :: Crosstool From X86 To Alpha Lacks Detailed Debug Information?

Apr 7, 2010

I have a working build of crosstool - it was built for gcc 3.4.3 using glibc 2.3.5 going from 32-bit x86 linux to 64-bit alpha linux. As far as I can tell -- it compiles correctly (output of alpha emulation matches expected) but it has a major flaw. When I use the cross compiler and attempt to add detailed debug information, it compiles, but does not have the debug information. For example, when I execute:

> /home/leporter/crosstool/gcc-3.4.3-glibc-2.3.5/alpha-unknown-linux-gnu/bin/alpha-unknown-linux-gnu-gcc-3.4.3 -g -o hello main.c

OR

> /home/leporter/crosstool/gcc-3.4.3-glibc-2.3.5/alpha-unknown-linux-gnu/bin/alpha-unknown-linux-gnu-gcc-3.4.3 -gstabs -o hello main.c

I get a working alpha binary for hello world. BUT - when I run objdump - this is what I get

> /home/leporter/crosstool/gcc-3.4.3-glibc-2.3.5/alpha-unknown-linux-gnu/bin/alpha-unknown-linux-gnu-objdump -g hello

hello: file format elf64-alpha

/home/leporter/crosstool/gcc-3.4.3-glibc-2.3.5/alpha-unknown-linux-gnu/bin/alpha-unknown-linux-gnu-objdump: hello: no recognized debugging information

Frustratingly - if I use my x86 gcc version 3.4.6 to do the compilation (same arguments, just using the x86 compiler, not the cross compiler) - it correctly embeds the debug information.

View 2 Replies View Related

General :: Use Eclipse To Compile And Debug Source Code On Ns-2 Simulator?

Dec 13, 2010

I want to use eclipse to compile and debug source code on ns-2 simulator.

1.how can i configure the parameter on eclipse.

2.how can i compile the source code *.cc

View 3 Replies View Related

General :: Usb Driver : Ti_usb_3410_5052 - After Adding My Device (MSP430 USB-DEBUG-INTERFACE) It Doesn't Work?

Feb 3, 2011

I have problems with my USB driver. After adding my device (MSP430 USB-DEBUG-INTERFACE) it doesn't work.

[ 60.476039] usb 2-2.1: new full speed USB device using uhci_hcd and address 8
[ 60.693959] ti_usb_3410_5052 2-2.1:1.0: TI USB 3410 1 port adapter converter detected
[ 60.693981] ti_usb_3410_5052: probe of 2-2.1:1.0 failed with error -5


I try to do: modprobe ti_usb_3410_5052.No changes.It's Linux

Linux ubuntu 2.6.35-25-generic #44-Ubuntu SMP Fri Jan 21 17:40:44 UTC 2011 x86_64 GNU/Linux

View 1 Replies View Related

General :: KMail's Message List - Change Message List Display?

Jul 20, 2009

KMail 1.11.4, KDE 4.2.4: I'm migrating from WinXP to Mandriva, and installed KMail at the weekend. Works fine, but I have a niggle - the message list displays headers grouped by month order. I'd like the option of having a simple list (no groups), and suspect that it could be done - but I haven't been able to find out how. I've checked in the Handbook without success, and a search in LQ hasn't turned up anything yet.Any suggestions gratefully received. If this isn't the right place for a KMail query,

View 1 Replies View Related

General :: Have "pdt Debug Address Error" As The Attached Picture?

Aug 13, 2010

I have "pdt debug address error" as the attached picture.[URL]

View 2 Replies View Related

General :: Cannot Ssh Into RHEL 5.5 Server Unless SSHD Server Debug Is Enabled?

Aug 11, 2010

I cannot ssh into an RHEL 5.5 server (192.168.20.104) from another RHEL 5.5 server (192.168.20.101) unless server debug is turned on 192.168.20.104, and even then, I have to wait several minutes before the connection is established. scp to and from the 104 server is also not working.Here is the debug output on the 101 server when server debug is not enabled on the 104 server-:

Code:
[applmgr@tclg-clone-01 ~]$ ssh -vvv 192.168.20.104
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008

[code]...

View 6 Replies View Related

Fedora Security :: Send An Email Using Evolution The Message Was Not Sent But Returns A Error Message?

Apr 30, 2009

Hi I am running a fedora 10 desktop. when i send an email using evolution the message was not sent but returns a error message:"Error while performing operation.DATA command failedError: 550 Viagra SPAM - Hi in Subject" and the message did not have an attachment just plain words. what might have gone wrong for i have been using this for sometime without a problem. or what security measures should be in place to remove this viagra spamAm I infected by virus on this fedora, all my updates are up to date.

View 1 Replies View Related

OpenSUSE :: Click On Install Get The Following Error>>Message Did Not Receive A Reply (timeout By Message Bus)?

Nov 10, 2010

Im trying to instal Sun Virtualbox but when download completes and I click on install I get the following error>>Message did not receive a reply (timeout by message bus) I wont even bother with this software if there are others out there that are as easy to use. I used it on Windows and thought it was great ! (thats how I eventually switched to Linux, by using it virtually at first)

View 5 Replies View Related

Ubuntu :: Error Message: Unable To Retrieve Message

Dec 31, 2010

Using IMAP to retrieve emails in Evolution is not working correctly. Some messages are recieved, others are not. Those messages that cannot be recieved, reports the following error message: Unable to retrieve message

Running the following;

evolution 2.28.3-0ubuntu10
Ubuntu 10.04.1 LTS
2.6.32-26-generic

View 4 Replies View Related

Programming :: Cannot Debug With The Gdb

Apr 21, 2009

downloaded a project from the Internet and tried to debug it, but run into a problem. i managed to copy the part where it build the executable I need. The problem is that I cannot use gdb with this executable for some reason. However, running the it without gdb seems to work ok. Below is what it shows when compiling and link.

Compile:

Code:

gcc -g -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION=""
-DPACKAGE_STRING="" -DPACKAGE_BUGREPORT="" -DPACKAGE="sphinx3"
-DVERSION="0.7" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1

[code]....

View 9 Replies View Related

Fedora :: Recompile Squid To Enable - Enable-storeio - Coss

Aug 11, 2010

How to recompile squid under fedora 13 to insert this arguments ---> --enable-storeio=diskd,coss

View 2 Replies View Related

Ubuntu :: Debug 10.04 UEC Node?

Jun 3, 2010

I installed a Node UEC from 10.04 which does not boot(stops at loading apache) and the logs are empty.

View 1 Replies View Related

Programming :: Debug C Cgi Script ?

Mar 3, 2011

I have a html page that calls a c cgi script on my local server; how can i view the html page and debug the script at the same time? if i would give some input in a form on the html page then i want to debug the script with the entered data. my gues was with w3m and gdb but i don't know how its done...

View 9 Replies View Related

Programming :: How To Debug Macros Under Gdb

Jun 14, 2010

It seems GDB can not expand or show the macro expansion or its definition under the GDB debug to while debugging the program. how to debug macros under GDB?

Sample Code:

#include <stdio.h>
#include "sample.h"
#define M 42
#define ADD(x) (M + x)

[code]....

View 7 Replies View Related

Programming :: Want To Debug Kernel.bin

Jan 31, 2010

I want debug kernel.bin
this file is boot in floppy

View 1 Replies View Related

Kernel :: Use Message Queues For Sending Message?

Apr 16, 2010

I was trying to use Message Queues for sending message from aninserted kernel module to user space. The function sys_msgsnd failedgiving the obvious error -EFAULT.However, I was able to send the message from kernel to user space when I had made the same driver part of kernel (and not inserting it).How is that possible?I am using linux.2.6.19.x (arch=ppc)I now use Netlink socket to communicate from kernel to user, but the aboveproblem seemed strange to me.

View 2 Replies View Related

Fedora Networking :: How To Debug A Network

Aug 27, 2009

I built my wife a new computer about a month ago, from a barebones kit. It seems to be working fine, except that it will not connect to a known-good internet connection. I can put the cable that is connected to her ethernet port on my computer (also built from a barebones kit) and my computer connects automatically. The network is a cable modem followed by a six port router. Two of the ports, plus the one my wife's computer is on, are in use, but all have been checked, and all work.I thought there might be a hardware problem with the onboard etherneet port that is part of the motherboard, but adding a separate ethernet NIC card did not help; it simply gave me another port that would not connect. I have since removed the second ethernet port.

I am using the default Fedora 10 installation from a DVD I got a few months ago with a magazine. It is exactly the same installation I put on my computer, which works fine. I also put Fedora 10, since upgraded to 11, on the machine in the basement, which also connected okay. The GUI used is Gnome.So the question is, how do I go about debugging what might be wrong? Once I find what's wrong, I will almost certainly need help fixing it, but that is for later.

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved