search for: programnam

Displaying 20 results from an estimated 40 matches for "programnam".

Did you mean: programname
2011 Apr 18
3
Logging configuration
How do I tell puppet to log somewhere other than /var/log/messages. None of the logging configuration options seem to do anything any more. Specifically puppetdlog. # The log file for puppet agent. This is generally not used. # The default value is ''$logdir/puppetd.log''. puppetdlog = /var/lib/puppet/log/puppetd.log -- You received this message because you are
2016 Feb 29
1
Discarding empty lines in rsyslog
...figure it out. I've searched through rsyslog documentation, and used Google but not found anything that matches my issue. I'm sending output of a program to rsyslog using "logger -t progname". I've got the following config snippet in /etc/rsyslog.d: $FileCreateMode 0644 if $programname == 'progname' then /var/log/prog.log & ~ This works. However, the program sometimes produces blank lines its output, and they get logged by rsyslog as well. I want to make rsyslog ignore empty lines. I am trying the following, but it doesn't work: if $programname == 'progname...
2006 Apr 13
1
xmkmf? problem
...my setup may be wrong, and the warning may also be important. Any hints would be appreciated. Paul _____ Red Hat Enterprise Linux AS release 3 (Taroon Update 7) .... checking whether C runtime needs -D__NO_MATH_INLINES... no checking for xmkmf... /usr/X11R6/bin/xmkmf Usage: which [options] [--] programname [...] Options: --version, -[vV] Print version and exit successfully. --help, Print this help and exit successfully. --skip-dot Skip directories in PATH that start with a dot. --skip-tilde Skip directories in PATH that start with a tilde. --sho...
2006 May 17
0
[LLVMdev] Obfuscation with LLVM
...string > OutputFilename( cl::Positional, cl::desc( "<output .bc file>" ), cl::Required ); static cl::opt< bool > NoVerify( "disable-verify", cl::desc( "Do not verify result module" ), cl::Optional ); int main( int argc, char* argv[] ) { std::string programName = argv[ 0 ] = "obfuscator"; try { cl::ParseCommandLineOptions( argc, argv ); std::string errorMessage; // Load the input module. std::auto_ptr< Module > M( ParseBytecodeFile( InputFilename, &errorMessage ) ); if( M.get() == 0 )...
2016 Jul 19
2
CentOS 7: System log has repeated lines: Started session 123 of user root.
The system log (/var/log/messages) of a CentOS 7.2 system has frequently-repeated message line pairs like: Jul 18 14:00:01 localhost systemd: Started Session 307 of user root. Jul 18 14:00:01 localhost systemd: Starting Session 307 of user root. where the session number increases each time. Looking around on this, e.g. Red Hat Bugzilla bug 727315, it looks like it's when crond starts a
2009 Jun 28
1
[LLVMdev] llvmc for PIC16
Mikhail Glushenkov wrote: > Hi Sanjiv, > > 2009/6/23 <Sanjiv.Gupta at microchip.com> > >>> BTW, Chris's Makefile changes broke llvmc yesterday (r75379). I'm >>> working on a fix. >>> >> Hi Mikhail, >> Did you get a chance to fix this. I still get errors while building examples. >> >> > > This issue
2007 Mar 19
1
"Before You Know It" Page Fault
...anguage-learning program "Before You Know It 3.5 Lite" on wine. This same executable works under native Windows, but with wine, it consistently aborts when a word list is selected (this is a mandatory action as the program begins). The results of running "WINEDEBUG=err+all wine <PROGRAMNAME>" is given here: ------------------------------------------------------------------------------------------------------------------------------------------------------------ wine: Unhandled page fault on read access to 0x00000000 at address 0x43199a (thread 0009), starting debugger... Modu...
2003 Aug 20
1
5.1-R: zero byte core file.
While using 5.1-RELEASE, I find that if my application program seg faults, it produces "programname.core"; but it is 0 bytes. I ran the exact same program on another machine that was running 4.4-RELEASE, and I do get a core file that I can use with gdb. I'd really appreciate if someone could help me resolve this. Additional details: - It is not specific to the application program. I...
2007 May 18
1
compiz run on DISPLAY :2 error: No composite extension
...COMPOSITE_NAME, &d->compositeOpcode, &d->compositeEvent, &d->compositeError)) { fprintf (stderr, "%s: No composite extension\n", programName); return FALSE; } NAME XQueryExtension, XListExtensions, XFreeExtensionList - list available extensions ARGUMENTS display Specifies the connection to the X server. name Specifies the extension name. DESCRIPTION The XQueryExtension function...
2007 May 17
0
[PATCH] Add getCoreInfo function
...dbusIntrospectAddSignal (writer, COMPIZ_DBUS_PLUGINS_CHANGED_SIGNAL_NAME, 0); @@ -1693,6 +1697,47 @@ dbusHandleGetPluginsMessage (DBusConnection *connection, } /* + * 'GetCoreInfo' can be used to retrieve information about the running + * Compiz process. + * + * Returns (s)programName, (i)ABIVERSION, (s)PLUGINDIR, (s)HOME_PLUGINDIR, + * (s)METADATADIR + * + * Example: + * + * dbus-send --print-reply --type=method_call \ + * --dest=org.freedesktop.compiz \ + * /org/freedesktop/compiz \ + * org.freedesktop.compiz.getCoreInfo + */ +static Bool +dbusHandleGetCoreInf...
2014 Jan 16
2
Dovecot 2 separate login for POP3 connections ?
Hello Is it possible to configure a separate logfile for incoming POP3 connections ( dovecot 2.2.9 ) thanks
2008 May 30
0
[LLVMdev] Odd problem with command line options
...sif: CommandLine Error: Argument 'machine-licm' defined more than once! I recently had a similar problem when I wrote a new pass and built it into opt. This error message is confusing because the code that prints it, in GetOptionInfo() in lib/Support/CommandLine.cpp: cerr << ProgramName << ": CommandLine Error: Argument '" << OptionNames[0] << "' defined more than once!\n"; should be printing OptionNames[i], not OptionNames[0]. (Once I had fixed this, it was easy to see what I had done wrong in the pass I wrote.) Jay.
2011 Dec 01
3
[LLVMdev] anchoring explicit template instantiations
...some legitimate unreachable code warnings I'd be happy to fix as I find them, things like: --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -294,10 +294,7 @@ static inline bool ProvideOption(Option *Handler, StringRef ArgName, break; default: - errs() << ProgramName - << ": Bad ValueMask flag! CommandLine usage error:" - << Handler->getValueExpectedFlag() << "\n"; - llvm_unreachable(0); + llvm_unreachable("Bad ValueMask flag!"); } and --- a/lib/Support/APInt.cpp +++ b/lib/Support/A...
2011 Dec 01
0
[LLVMdev] anchoring explicit template instantiations
...d be happy > to fix as I find them, things like: > > --- a/lib/Support/CommandLine.cpp > +++ b/lib/Support/CommandLine.cpp > @@ -294,10 +294,7 @@ static inline bool ProvideOption(Option *Handler, > StringRef ArgName, > break; > > default: > - errs() << ProgramName > - << ": Bad ValueMask flag! CommandLine usage error:" > - << Handler->getValueExpectedFlag() << "\n"; > - llvm_unreachable(0); > + llvm_unreachable("Bad ValueMask flag!"); This patch would lose the expected fla...
2009 May 07
13
How to open apps...
Hello, to open a file with terminal, using wine, the command is: wine filename, right? How do i open a file that is inside folders? Thanks! Bye!
2011 Dec 01
2
[LLVMdev] anchoring explicit template instantiations
...hem, things like: >> >> --- a/lib/Support/CommandLine.cpp >> +++ b/lib/Support/CommandLine.cpp >> @@ -294,10 +294,7 @@ static inline bool ProvideOption(Option *Handler, >> StringRef ArgName, >>     break; >> >>   default: >> -    errs() << ProgramName >> -         << ": Bad ValueMask flag! CommandLine usage error:" >> -         << Handler->getValueExpectedFlag() << "\n"; >> -    llvm_unreachable(0); >> +    llvm_unreachable("Bad ValueMask flag!"); > > This patch wo...
2007 Dec 23
3
[LLVMdev] Odd problem with command line options
I'm linking a program (my ellsif driver) that basically brings in most of the LLVM stuff: bitcode reading, optimizations, linking, and target code generation. All of a sudden, I'm getting the following when I run: [~/elsa/ellsif] dev% ./ellsif -v test/ofmt.i test/sieve.i -time-actions -O5 <premain>: CommandLine Error: Argument 'machine-licm' defined more than once!
2010 Nov 15
4
VServer > Wine > Xserver
...ion which needs to open a gui. I followed this tutorial (http://www.lizardking.biz/2009/02/debian-5-multi-user-vnc/) to run the x11, xdm as login manager and fluxbox as windowmanager. I can login over VNC and i am able to start the program without any problems. I open the in fluxbox type "wine programname" and it works. The Problem: I do not want to run VNC(security reason) and i do not need to see the gui to control the application anyway. I want to be able to login over SSH with putty and to start it there. Then i am also able to make a autostart and it is not necessary to open a VNC conne...
2023 Apr 19
2
Enhanced driver troubleshooting
Cheers, With https://github.com/networkupstools/nut/pull/1906 and https://github.com/networkupstools/nut/pull/1912 (and probably some more later), I've been enhancing NUT driver framework with support for live reload of configuration, primarily to acknowledge changes to debug_min setting in ups.conf - but made in a generic fashion that specific drivers may take advantage of for their
2023 Apr 19
2
Enhanced driver troubleshooting
Cheers, With https://github.com/networkupstools/nut/pull/1906 and https://github.com/networkupstools/nut/pull/1912 (and probably some more later), I've been enhancing NUT driver framework with support for live reload of configuration, primarily to acknowledge changes to debug_min setting in ups.conf - but made in a generic fashion that specific drivers may take advantage of for their