Re: Is there a log file of ...?

2018-09-08 Thread Brad Rogers
On Sat, 8 Sep 2018 21:42:56 +0200 Michael Wagner wrote: Hello Michael, >to search after you hit CTRL-R and type the beginnning of the command >you search for. In point of fact, you can type any part of the string. Sooner or later, it'll match the full command and argument set you're after.

Re: Is there a log file of ...?

2018-09-08 Thread Michael Wagner
On Sep 08, 2018 at 18:12:02, to...@tuxteam.de wrote: > On Sat, Sep 08, 2018 at 05:55:57PM +0200, Michael Wagner wrote: > > On Sep 08, 2018 at 15:29:44, to...@tuxteam.de wrote: > > > And while we're at it, CTRL-R and start typing a substring of > > > the past command you're looking for: the more

Re: Is there a log file of ...?

2018-09-08 Thread Curt
On 2018-09-08, Michael Wagner wrote: > > On Sep 08, 2018 at 15:29:44, to...@tuxteam.de wrote: >> And while we're at it, CTRL-R and start typing a substring of >> the past command you're looking for: the more letters you have, >> the more specific the match becomes (also called "reverse >>

Re: Is there a log file of ...?

2018-09-08 Thread Jack Dangler
On 09/08/2018 11:55 AM, Michael Wagner wrote: On Sep 08, 2018 at 15:29:44, to...@tuxteam.de wrote: And while we're at it, CTRL-R and start typing a substring of the past command you're looking for: the more letters you have, the more specific the match becomes (also called "reverse

Re: Is there a log file of ...?

2018-09-08 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, Sep 08, 2018 at 05:55:57PM +0200, Michael Wagner wrote: > On Sep 08, 2018 at 15:29:44, to...@tuxteam.de wrote: > > And while we're at it, CTRL-R and start typing a substring of > > the past command you're looking for: the more letters you

Re: Is there a log file of ...?

2018-09-08 Thread Michael Wagner
On Sep 08, 2018 at 15:29:44, to...@tuxteam.de wrote: > And while we're at it, CTRL-R and start typing a substring of > the past command you're looking for: the more letters you have, > the more specific the match becomes (also called "reverse > incremental search"). > > Takes a bit to get used

Re: Is there a log file of ...?

2018-09-08 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, Sep 08, 2018 at 03:21:33PM +0200, Hans wrote: > Am Samstag, 8. September 2018, 15:05:29 CEST schrieb Jude DaShiell: > Also usefull: > > history -l | grep what-you-remember > > if you can just remeber a part of the command you used. And

Re: Is there a log file of ...?

2018-09-08 Thread Hans
Am Samstag, 8. September 2018, 15:05:29 CEST schrieb Jude DaShiell: Also usefull: history -l | grep what-you-remember if you can just remeber a part of the command you used. Have fun! Best Hans > If using bash, try using the up-arrow and you should be shown your > command history. If

Re: Is there a log file of ...?

2018-09-08 Thread Jude DaShiell
bian-user > Subject: Is there a log file of ...? > Resent-Date: Fri, 7 Sep 2018 19:47:20 + (UTC) > Resent-From: debian-user@lists.debian.org > > Earlier today when launching a long used from a console rather than by > clicking on an icon, I got a strange WARNING message. > >

Re: Is there a log file of ...?

2018-09-08 Thread Richard Owlett
On 09/07/2018 09:53 PM, David Wright wrote: On Fri 07 Sep 2018 at 14:46:31 (-0500), Richard Owlett wrote: [snip] In the appropriate time period I know that there were no more than a dozen files created/destroyed/renamed. This would be very useful in future if you were unsure of the name and

Re: Is there a log file of ...?

2018-09-07 Thread David Wright
s the file was called ydjhsmjeieeiigeiujqkmq and you prefixed it with udcrxaglskqnebkf. But ho hum… > To repeat my subject line: "Is there a log file of ...?" > In this case I know the file's extension and VERY approximately when > the name was changed. > > In the appropriate tim

Re: Is there a log file of ...?

2018-09-07 Thread Reco
stroyed/renamed. > > Is there a relevant log file? There is, but you had have to enable it first. It's called kernel audit facility, the package is "auditd". Reco

Re: Is there a log file of ...?

2018-09-07 Thread Dan Purgert
Richard Owlett wrote: > [...] > Still not sure of its original name - but that's another issue to be > explored on a different group. > > [...] > > Is there a relevant log file? Logfile of "user mv'd fileA to Filea1? Nope. At least not unless you've aliased mv / cp /

Is there a log file of ...?

2018-09-07 Thread Richard Owlett
on a different group. To repeat my subject line: "Is there a log file of ...?" In this case I know the file's extension and VERY approximately when the name was changed. In the appropriate time period I know that there were no more than a dozen files created/destroyed/renamed. Is there

Kerberos boot error - no log file

2017-03-08 Thread GiaThnYgeia
Key Distribution Center... Mar 8 11:04:36 G0 krb5kdc[493]: krb5kdc: cannot initialize realm ATHENA.MIT.EDU - see log file for details Mar 8 11:04:36 G0 systemd[1]: krb5-kdc.service: Control process exited, code=exited status=1 Mar 8 11:04:36 G0 systemd[1]: Failed to start Kerberos 5 Key

Re: getting emails from cron despite redirecting output to a log file

2014-04-02 Thread David Nelson
messed up here: if [ -x /usr/bin/mrtg ] [ -r /etc/mrtg/rm_127_switch-mrtg.cfg ] ; then env LANG=C /usr/bin/mrtg /etc/mrtg/rm_127_switch-mrtg.cfg 21 | tee -a /var/log/mrtg/mrtg.log ; fi You explicitly pipe mrt's output to tee, which writes it to the given log-file *and* stdout, which

Re: getting emails from cron despite redirecting output to a log file

2014-04-02 Thread Markus Schönhaber
02.04.2014 17:20, David Nelson: Hmm. Ok. I tried removing the part using tee so now it's like this: if [ -x /usr/bin/mrtg ] [ -r /etc/mrtg/rm_127_switch-mrtg.cfg ] ; then env LANG=C /usr/bin/mrtg /etc/mrtg/rm_127_switch-mrtg.cfg 21 /var/log/mrtg/mrtg.log ; fi and I am still getting

Re: getting emails from cron despite redirecting output to a log file

2014-04-01 Thread Markus Schönhaber
explicitly pipe mrt's output to tee, which writes it to the given log-file *and* stdout, which, in turn, will be mailed to you by cron. If you don't want mail from cron, make sure that there's nothing writen to stdout. And if you don't want to have something written to stdout, why do you use tee? Redirect

Re: getting emails from cron despite redirecting output to a log file

2014-04-01 Thread David Nelson
have messed up here: if [ -x /usr/bin/mrtg ] [ -r /etc/mrtg/rm_127_switch-mrtg.cfg ] ; then env LANG=C /usr/bin/mrtg /etc/mrtg/rm_127_switch-mrtg.cfg 21 | tee -a /var/log/mrtg/mrtg.log ; fi You explicitly pipe mrt's output to tee, which writes it to the given log-file *and* stdout, which

getting emails from cron despite redirecting output to a log file

2014-03-31 Thread David Nelson
the file under /etc/cron.d/. I don't have access to that system right now so I am just posting the command part that I keep getting in my email. Also, I have jobs for a few different switches setup like this. Is there any reason I can't let the output all go into the same log file? Hmmm... Wonder

Re: getting emails from cron despite redirecting output to a log file

2014-03-31 Thread Karl E. Jorgensen
and all that. Also, I have jobs for a few different switches setup like this. Is there any reason I can't let the output all go into the same log file? Hmmm... Wonder if it's a problem that all these jobs are trying to write to the same log file at once? Probably not. But it's easy to send stuff

Re: Linux time not redirecting output to log file ...

2013-11-28 Thread Albretch Mueller
/debugging separating the errors from the output + errors, even if the programming language doesn't allow for that: ~ http://coding.derkeiler.com/Archive/Java/comp.lang.java.programmer/2012-08/msg01347.html ~ in this case however I can't get (Linux) time to log into the output+errors log file

Re: Linux time not redirecting output to log file ...

2013-11-28 Thread Scott Ferguson
On 29/11/13 02:48, Albretch Mueller wrote: snipped (time rsync --archive --verbose $_SRC $_DEST 21 3 | tee $_ERR 3) snipped in this case however I can't get (Linux) time to log into the output+errors log file. It just spits its output on standard err (not the err + out I am trying

Linux time not redirecting output to log file ...

2013-11-27 Thread Albretch Mueller
into the output+errors log file. It just spits its output on standard err (not the err + out I am trying to redirect it to) ~ There must be some syntactic error in my statement. Can you see it? ~ lbrtchx debian-user@lists.debian.org: Linux time not redirecting output to log file

Re: Linux time not redirecting output to log file ...

2013-11-27 Thread Bob Proulx
Albretch Mueller wrote: in this case however I can't get (Linux) time to log into the output+errors log file. It just spits its output on standard err (not the err + out I am trying to redirect it to) ~ There must be some syntactic error in my statement. Can you see it? Your example was ten

Re: Linux time not redirecting output to log file ...

2013-11-27 Thread Scott Ferguson
~ in this case however I can't get (Linux) time to log into the output+errors log file. It just spits its output on standard err (not the err + out I am trying to redirect it to) time yes time -[a]o $file no ~ There must be some syntactic error in my statement. Can you see it? ~ lbrtchx debian

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-08-01 Thread Camaleón
El Thu, 01 Aug 2013 00:24:23 -0500, Ricardo Adolfo Sánchez Arboleda escribió: Lista el caso es que no se leer logs y ahí es donde me enredo, quisiera saber de algún tutorial para empezar con este tema. (...) Afortunadamente los registros de las aplicaciones suelen ser bastante

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-08-01 Thread Jose Damian Garrido Muñoz
Ricardo, para leer, por ejemplo, el log de Apache, puedes aplicar el siguiente comando: sudo tail -f /var/log/apache2/error.log esto ira mostrando los últimos registros generados en el archivo de errores de apache, entonces, teniendo este comando ejecutando en una terminal, accede a la url donde

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-08-01 Thread Leafar Euquya
Buenas Puedes tambien usar el adminer, que esta hecho en php y no requiere nada mas que cargarlo desde una web. Salu2 El 1 de agosto de 2013 10:41, Jose Damian Garrido Muñoz delhabe...@gmail.com escribió: Ricardo, para leer, por ejemplo, el log de Apache, puedes aplicar el siguiente

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-31 Thread Camaleón
El Tue, 30 Jul 2013 13:35:22 -0500, Ricardo Adolfo Sánchez Arboleda escribió: Eso también lo hice desde mi portátil...y borré la caché: # sync echo 3 /proc/sys/vm/drop_caches No, no... lo que tienes que borrar es la caché *del navegador*. Me tiene cogido este rollo a ver como termina...

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-31 Thread Ricardo Adolfo Sánchez Arboleda
.. *Saludos;* El 31 de julio de 2013 08:42, Camaleón noela...@gmail.com escribió: El Tue, 30 Jul 2013 13:35:22 -0500, Ricardo Adolfo Sánchez Arboleda escribió: Eso también lo hice desde mi portátil...y borré la caché: # sync echo 3 /proc/sys/vm/drop_caches No, no... lo que

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-31 Thread Ricardo Adolfo Sánchez Arboleda
Lista el caso es que no se leer logs y ahí es donde me enredo, quisiera saber de algún tutorial para empezar con este tema. Como leer logs, para solucionar el rollo que se presenta. Que se yo.. mysql. php. y otros. Mientras, me ayudo con la terminal y workbench. Gracias a todos! *Saludos;*

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Camaleón
El Mon, 29 Jul 2013 19:45:40 -0500, Ricardo Adolfo Sánchez Arboleda escribió: Nada lista, he seguido sus ayudas y sigue igual el error. (...) ¿Revisaste el enlace que te pasé? ¿Hiciste algo? ¿Con qué resultado? Saludos, -- Camaleón -- To UNSUBSCRIBE, email to

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo Adolfo Sánchez Arboleda
Revise el link, edite el php.ini edite /etc/php5/apache2/php.ini y he agregado estos, como lo muestro abajo buscando cambios? ; The path can be defined as: ; , session.save_path = N;/path ; ... ; ; The file storage module creates files using mode 600 by default. ; You can change that by

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Jose Damian Garrido Muñoz
Ricardo, como no?? http://imgur.com/Qf5OtOj acá una vista a la tabla wp_post de la DB de WordPress (localhost) El 30 de julio de 2013 11:34, Camaleón noela...@gmail.com escribió: El Tue, 30 Jul 2013 09:58:26 -0500, Ricardo Adolfo Sánchez Arboleda escribió: (ese html...) Revise el link,

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Camaleón
El Tue, 30 Jul 2013 09:58:26 -0500, Ricardo Adolfo Sánchez Arboleda escribió: (ese html...) Revise el link, edite el php.ini (...) Hum... ese enlace mencionan como principal causa del error *el navegador del cliente* ¿ya probaste lo que recomendaban? Saludos, -- Camaleón -- To

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo Adolfo Sánchez Arboleda
Con todos igual: Ya probe con chrome, epiphany, iceweasel. sigue igual phpMyAdmin - Error *Saludos;* El 30 de julio de 2013 10:37, Jose Damian Garrido Muñoz delhabe...@gmail.com escribió: Ricardo, como no?? http://imgur.com/Qf5OtOj acá una vista a la tabla wp_post de la DB de WordPress

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Camaleón
El Tue, 30 Jul 2013 12:18:42 -0500, Ricardo Adolfo Sánchez Arboleda escribió: Con todos igual: Ya probe con chrome, epiphany, iceweasel. sigue igual phpMyAdmin - Error No se trata de probar con todos sino con el que usas habitualmente, eliminando los datos que tengas almacenados en la caché

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo Adolfo Sánchez Arboleda
Eso también lo hice desde mi portátil...y borré la caché: # sync echo 3 /proc/sys/vm/drop_caches Me tiene cogido este rollo a ver como termina... *Saludos;* El 30 de julio de 2013 12:31, Camaleón noela...@gmail.com escribió: El Tue, 30 Jul 2013 12:18:42 -0500, Ricardo Adolfo Sánchez

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo
El 30/07/13 15:35, Ricardo Adolfo Sánchez Arboleda escribió: Eso también lo hice desde mi portátil...y borré la caché: # sync echo 3 /proc/sys/vm/drop_caches Me tiene cogido este rollo a ver como termina... *Saludos;* El 30 de julio de 2013 12:31, Camaleón noela...@gmail.com

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo Adolfo Sánchez Arboleda
Eureka y todos tengo un servidor wheezy con ISPConfig 3.0.5. y he instalado en el Drupal, ftp y roundcube. Openmeetings, Phprojekt, Owncloud, webdav. Desde /var/www/.. Todo venia funcionado con phpmyadmin y de pronto salio ese error que me tiene enredado. Claro que como no he logrado solucionar,

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-30 Thread Ricardo Adolfo Sánchez Arboleda
José Damian, tenias razón. Te pido disculpas acabo de hacer conexión. . :-) Como busco la tabla de usuarios, algún manual? Uno bisoño si la ...wfgefjfk Se puede... http://www.picpaste.com/Captura_de_pantalla_de_2013-07-30_14_26_30-TFsD6umO.png *Saludos;* El 30 de julio de 2013 13:58,

phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread Ricardo Adolfo Sánchez Arboleda
Lista, he mirado algunos post con este contenido y no logro poner a punto phpMyadmin. Las bases de datos están ahí pero no tengo forma de acceder a estas gráficamente. Lo que he echo es: Desinstalar e instalar phpMyadmin, en php.ini me he guiado de los post pero el error continua. edito nano

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread Camaleón
El Mon, 29 Jul 2013 09:44:27 -0500, Ricardo Adolfo Sánchez Arboleda escribió: (ese html...) Lista, he mirado algunos post con este contenido y no logro poner a punto phpMyadmin. Las bases de datos están ahí pero no tengo forma de acceder a estas gráficamente. Supongo que ya habrás probado lo

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread ciracusa
On 29/07/13 11:44, Ricardo Adolfo Sánchez Arboleda wrote: Lista, he mirado algunos post con este contenido y no logro poner a punto phpMyadmin. Las bases de datos están ahí pero no tengo forma de acceder a estas gráficamente. Lo que he echo es: Desinstalar e instalar phpMyadmin, en php.ini

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread Ricardo Adolfo Sánchez Arboleda
/phpmyadmin-error-cannot-start-session-without-errors-please-check-errors-given-in-your-php-andor-webserver-log-file-and-configure-your-php-installation-properly/ http://blog.kvs-solutions.com/?p=245 http://linuxamination.blogspot.com/2013/05/phpmyadmin-cannot-start-session-without.html *Saludos

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread Jose Damian Garrido Muñoz
?.seguiré buscando; he mirado estos: http://www.unixsurgeon.com/kb/cannot-start-session-without-errors-phpmyadmin.html http://aparnam.wordpress.com/2009/10/27/phpmyadmin-error-cannot-start-session-without-errors-please-check-errors-given-in-your-php-andor-webserver-log-file-and-configure-your-php

Re: phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

2013-07-29 Thread Jorge Pérez
-errors-phpmyadmin.html http://aparnam.wordpress.com/2009/10/27/phpmyadmin-error-cannot-start-session-without-errors-please-check-errors-given-in-your-php-andor-webserver-log-file-and-configure-your-php-installation-properly/ http://blog.kvs-solutions.com/?p=245 http://linuxamination.blogspot.com

Re: apache2 fails w/ could not open transfer log file

2011-12-29 Thread Eric d'Halibut
On 12/29/11, Bob Proulx b...@proulx.com wrote: Look for files with a .dpkg ending. Aha! Copying those into place and then adding my custom stuff fixed everything up. Thank you! -- No no no, my fish's name is Eric, Eric the fish. He's an halibut. I am not a looney! Why should I be tarred

Re: apache2 fails w/ could not open transfer log file

2011-12-29 Thread Bob Proulx
Eric d'Halibut wrote: Aha! Copying those into place and then adding my custom stuff fixed everything up. Good! Then it is time for you to look for other lint left elsewhere since the upgrade and deal with those similarly. Most of the time you can probably simply remove the old file. find

apache2 fails w/ could not open transfer log file

2011-12-28 Thread Eric d'Halibut
I recently did an apt-get dist-upgrade to an old lenny, bringing him to squeezy. apache 2 now refuses to start, with this message found in /var/log/apache2/error.log [Wed Dec 28 22:10:21 2011] [error] (2)No such file or directory: could not open transfer log file /etc/apache2/${APACHE_LOG_DIR

Re: apache2 fails w/ could not open transfer log file

2011-12-28 Thread Scott Ferguson
transfer log file /etc/apache2/${APACHE_LOG_DIR}/other_vhosts_access.log. Unable to open logs There are many old 'other_vhosts_access.log' files in this same /var/log/apache2 dir: -rw-r- 1 root adm 0 Oct 23 06:25 other_vhosts_access.log -rw-r- 1 root adm 1202 Oct 18 21:39

Re: apache2 fails w/ could not open transfer log file

2011-12-28 Thread Bob Proulx
Eric d'Halibut wrote: I recently did an apt-get dist-upgrade to an old lenny, bringing him to squeezy. apache 2 now refuses to start, with this message found in /var/log/apache2/error.log [Wed Dec 28 22:10:21 2011] [error] (2)No such file or directory: could not open transfer log file

Put date on log file names?

2010-05-17 Thread vr
Due to message volume, I'm considering rotating my mail logs daily at my local time midnight and retaining about 30 days worth of files on disk. I'd like to have the date in the file names so visually I'll know what span is in each file. Can this be done? (put dates into the file name)

Re: Put date on log file names?

2010-05-17 Thread Camaleón
On Mon, 17 May 2010 13:59:02 -0400, vr wrote: Due to message volume, I'm considering rotating my mail logs daily at my local time midnight and retaining about 30 days worth of files on disk. I'd like to have the date in the file names so visually I'll know what span is in each file. Can

Re: Put date on log file names?

2010-05-17 Thread Chris Jackson
vr wrote: Due to message volume, I'm considering rotating my mail logs daily at my local time midnight and retaining about 30 days worth of files on disk. I'd like to have the date in the file names so visually I'll know what span is in each file. Can this be done? (put dates into the file

Re: Put date on log file names?

2010-05-17 Thread Timo Boettcher
Hi! * vr debian-u...@iotk.net wrote: I'd like to have the date in the file names so visually I'll know what span is in each file. Can this be done? (put dates into the file name) Depends. See the other posts about logrotate Should this be done? (put the date into the file name) No clue If

problem with apache log file and awstat

2008-11-17 Thread Zach Uram
Running apache2 on Debian testing. I use awstat to generate statistics from my /var/log/apache2/access.log but logrotate keeps archiving it so I have /var/log/apache2/access.1.gz, /var/log/apache2/access.2.gz etc. How can I have awstat run once per month and generate the statistics based on

Re: gibberish in log file? SOLVED

2008-02-05 Thread Zach
When I was setting up the new ISP in pppconfig I pasted from a document I had mounted from my MS Windows partition (vfat) and it must have included some of those weird control characters. I used fromdos (part of the dos2unix package) on: /etc/ppp/pap-secrets /etc/ppp/peers/sysim

Re: gibberish in log file?

2008-02-04 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/04/08 05:56, Zach wrote: I am setting up a new PPP connection (dialup) and when I run pon I'm seeing some very strange things in my /var/log/messages (set it up with pppconfig like I normally do, never had any problems) There are lots of

Re: gibberish in log file?

2008-02-04 Thread Zach
On 02/04/08 Ron Johnson wrote: *VERY* important questions: What do you mean by old ISP? Do you now have a new ISP? Yes my old isp was ISP.com, my new ISP (which I'm trying to get working) is Sysim. So before to start my connection I'd do: pon isp.com (and never saw any weird characters in

snmptrapfmt does not produce a log file

2006-09-08 Thread robert b
I'm having problems with snmptrapfmt/snmpd. I'm not getting any log output in /var/log/snmptrapfmt.log. My router should be sending snmp traps/logs to my computer. Below is the /var/tmp/snmptrapfmt.trc as a result of adding -d 1 to snmptrapfmt. I used to use trapmon (which uses snmptrapd),

Java plugin makes mastodontic .log file

2006-07-29 Thread Benjamí Villoslada
I've installed http://java.com/en/download/manual.jsp in order to use http://revelado.ya.com and today I've seen one 27 GB (yes, 27 GB) ~/java0.log file ===:(( The http://revelado.ya.com/revelar-online applet load only: $ ls -lh java0.log -rw-r--r-- 1 benjami benjami 5,3M 2006-07-29 18:36

Re: x-crash (please decipher my log file)

2004-03-26 Thread hugo vanwoerkom
Niels L. Ellegaard wrote: I recently updated my xfree from 4.0 to 4.3 (sarge). Suddenly my x stopped working. I would be grateful if someone could help me decipher my log file. My XF86Conf-4 is almost directly created by dpkg-reconfigure. However I removed the part about the generic mouse

Re: x-crash (please decipher my log file)

2004-03-26 Thread Niels L. Ellegaard
hugo vanwoerkom [EMAIL PROTECTED] writes: Well, I think it is a bug. No (EE) and just segfault!? So what I would do is use the Nvidia closed-source driver. I always use it and always have good results. Thanks you for your advice. I don't think I will follow it though :) A few months ago I

Re: x-crash (please decipher my log file)

2004-03-26 Thread Niels L. Ellegaard
Kent West [EMAIL PROTECTED] writes (I rearranged the citations a bit) Fatal server error: Caught signal 11. Server aborting I don't recall if this error number occurs with other non-X-related errors, so I'll ask the question: Are you sure it's X that is dying and not the failure of X to

Re: x-crash (please decipher my log file)

2004-03-26 Thread Niels L. Ellegaard
Kent West [EMAIL PROTECTED] writes: Niels L. Ellegaard wrote: I removed the part about the generic mouse because I got a complaint that I did not have the device /dev/input/mice (I don't know how to create it... I make a symbolic link, and it get's deleted) I believe this device node is

Re: x-crash (please decipher my log file)

2004-03-26 Thread Kent West
On Fri, 2004-03-26 at 16:53, Niels L. Ellegaard wrote: Kent West [EMAIL PROTECTED] writes: Niels L. Ellegaard wrote: I removed the part about the generic mouse because I got a complaint that I did not have the device /dev/input/mice (I don't know how to create it... I make a symbolic

Re: x-crash (please decipher my log file)

2004-03-26 Thread Pigeon
On Fri, Mar 26, 2004 at 11:43:15PM +0100, Niels L. Ellegaard wrote: Mar 26 10:13:25 nissefisken kernel: atkbd.c: Unknown key released (translated set 2, code 0x7a on isa0060/serio0). Mar 26 10:13:25 nissefisken kernel: atkbd.c: This is an XFree86 bug. It shouldn't access hardware directly.

x-crash (please decipher my log file)

2004-03-25 Thread Niels L. Ellegaard
I recently updated my xfree from 4.0 to 4.3 (sarge). Suddenly my x stopped working. I would be grateful if someone could help me decipher my log file. My XF86Conf-4 is almost directly created by dpkg-reconfigure. However I removed the part about the generic mouse because I got a complaint

how to write Console output to a log file

2003-12-10 Thread Sebastia Altemir
If, under SuSE 8.2, I put this line echo *** Running /ETC/INIT.D/NETWORK *** in /etc/init.d/network, I can find this line in /var/log/boot.msg Under Debian, - kernel 2.4.20 -, I place a similar ECHO line in /etc/init.d/networking, can see (very fast) on the console screen, but can't find it in

Re: how to write Console output to a log file

2003-12-10 Thread Laurence J. Lane
On Wed, Dec 10, 2003 at 03:30:27AM -0800, Sebastia Altemir wrote: If, under SuSE 8.2, I put this line echo *** Running /ETC/INIT.D/NETWORK *** in /etc/init.d/network, I can find this line in /var/log/boot.msg Under Debian, - kernel 2.4.20 -, I place a similar ECHO line in

.note.GNU-stack in XFree86.0.log file

2003-11-25 Thread Jonathan Wheelhouse
://www.linuxsir.org/postnuke/print.php?sid=1435) but what's it doing in the log file? Jonathan -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: kernel messages to virtual console instead of to log file/etc.

2003-10-01 Thread Larry Holish
On Wed, Oct 01, 2003 at 01:41:15AM -0400, Daniel B. wrote: Although I have /etc/syslog.conf set up to send most messages elsewhere, I still get messages like: EXT2-fs: Unrecognized mount option bs and EXT2-fs: blocksize too small for device. dumped directly to the current virtual

kernel messages to virtual console instead of to log file/etc.

2003-09-30 Thread Daniel B.
Although I have /etc/syslog.conf set up to send most messages elsewhere, I still get messages like: EXT2-fs: Unrecognized mount option bs and EXT2-fs: blocksize too small for device. dumped directly to the current virtual console (when I'm in a text console). (This is on woody with

Can't open XFree86 log file

2003-01-13 Thread Russell
Hi all, As root, i can start XFree86 and it works ok. However, as a normal user, i get an error: Fatal server error: Cannot open log file /var/log/XFree86.0.log I've tried deleting it. What else can i try? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe

Re: Samba: Can't Rename the Log File

2001-07-01 Thread Vineet Kumar
file to nmb.old and smb.old, and create # new # log file with the names nmb and smb. Here we rotate the .old # files, # not the nmb or smb files because Samba keeps them open!!! You have # been # warned! (my editor has wrapped those lines) HTH, Vineet But after restarting smbd

RE: Samba: Can't Rename the Log File

2001-06-28 Thread Hubert Palme
called /sambalog and open it wide up; HP chmod 777 /sambalog HP Then change your log file entry in smb.conf to be HP log file = /sambalog/log.%m HP and see if you still get the problem with samba not being able to HP rename the logfiles... HP Just a thought; maybe we can get some more data

RE: Samba: Can't Rename the Log File

2001-06-28 Thread MCCALL,DON \(HP-USA,ex1\)
You might try running testparm and verifying that samba is actually using the smb.conf file you believe it is using; look at the output from testparm and make sure that it is recognizing the log file entry you have placed there. Don -Original Message- From: [EMAIL PROTECTED] [mailto

RE: Samba: Can't Rename the Log File

2001-06-28 Thread Hubert Palme
HP == HP-USA,ex1 MCCALL writes: HP You might try running testparm and verifying that samba is actually using HP the smb.conf file you believe it is using; look at the output from testparm HP and make sure that it is recognizing the log file entry you have placed HP there. HP Don I did

RE: Samba: Can't Rename the Log File

2001-06-22 Thread Hubert Palme
dm == HP-USA,ex1 MCCALL writes: dm Hi; dm you may want to check the PATH to the log file as well; perhaps dm there is not the appropriate execute permission to allow samba to dm traverse /var or /var/log to GET to the smb file that has write permissions. If you mean the execute

RE: Samba: Can't Rename the Log File

2001-06-22 Thread MCCALL,DON \(HP-USA,ex1\)
/sambalog Then change your log file entry in smb.conf to be log file = /sambalog/log.%m and see if you still get the problem with samba not being able to rename the logfiles... Just a thought; maybe we can get some more data to lead us this way... Don -Original Message- From: [EMAIL PROTECTED

Re: [Debian] Samba: Can't Rename the Log File

2001-06-21 Thread Hubert Palme
f == Frank =?iso-8859-1?q?F=FCrst?= [EMAIL PROTECTED] writes: - Could there be a bug that smbd keeps the file open and thus cannot reopen it? And how to ship around then? f No, I don't think there's a bug. At least with log files created with f log file = /var/log/samba/%m.log there's

RE: Samba: Can't Rename the Log File

2001-06-21 Thread MCCALL,DON \(HP-USA,ex1\)
Hi; you may want to check the PATH to the log file as well; perhaps there is not the appropriate execute permission to allow samba to traverse /var or /var/log to GET to the smb file that has write permissions. Hope this helps, Don -Original Message- From: [EMAIL PROTECTED] [mailto

Samba: Can't Rename the Log File

2001-06-20 Thread Hubert Palme
Hmm..., I'll try it once more because I can't beleive that nobody can give me a hint... ---BeginMessage--- Hi, in the syslog file I repeatedly find the following messages: Jun 8 08:19:40 wrpc3 smbd[8296]: [2001/06/08 08:19:40, 0] lib/debug.c:check_log_size(311) Jun 8 08:19:40 wrpc3

Re: [Debian] Samba: Can't Rename the Log File

2001-06-20 Thread Frank Fürst
-- could there be a coherence? [...] - Could there be a bug that smbd keeps the file open and thus cannot reopen it? And how to ship around then? No, I don't think there's a bug. At least with log files created with log file = /var/log/samba/%m.log there's no problem with renaming. /var/log/smb

rWfm? what's in this log file--

2000-05-04 Thread w trillich
my logs. big. lots of stuff. meanings escape me. i can configure what gets logged or not via the syslog.conf files, but when a program logs something, it's not relevant to the logger itself. i know what RTFM means... so rWfm means read _which_ manual? == A) ipfwadm logging: in my syslog i see

Re: Assigning a log file to a tty device

1999-12-10 Thread Colin Watson
[EMAIL PROTECTED] (Nuno Emanuel F. Carvalho) wrote: I would like to assign the /var/log/apache/access.log file to the tty8 console. I know it could be done on syslog.conf file. Could someone give an example ? Try putting a line like: 8:2345:respawn:tail -f /var/log/apache/access.log /dev/tty8

Re: startx-errors: Where is the log file?

1999-07-28 Thread Johann Spies
On Tue, 27 Jul 1999, Michael Merten wrote: and make sure .xsession is executable, then try it again. Thanks. I did not know that. It is working now. Johann -- | Johann Spies

startx-errors: Where is the log file?

1999-07-27 Thread Johann Spies
After apt installed some packages during upgrade to slink-proposed-upgrades, my xwindows wouldn't work. I changed .xinitrc to remove all references to gnome, but it did not work. I suspect it has something to do with installing a newer version of icewm. But even after installing wmaker and

Re: startx-errors: Where is the log file?

1999-07-27 Thread egm2
On 27 Jul, Johann Spies wrote: | Then I installed xdm and it did get xwindows to work using icewm, but no | gnome and it ignores .xsession as well as my icewm-configuration (eg. it | shows only 1 workspace). | Are you sure ~/.xsession is being ignored? What does your file look like?

Re: startx-errors: Where is the log file?

1999-07-27 Thread Johann Spies
On Tue, 27 Jul 1999 egm2@jps.net wrote: On 27 Jul, Johann Spies wrote: | Then I installed xdm and it did get xwindows to work using icewm, but no | gnome and it ignores .xsession as well as my icewm-configuration (eg. it | shows only 1 workspace). | Are you sure ~/.xsession

Re: startx-errors: Where is the log file?

1999-07-27 Thread Michael Merten
On Tue, Jul 27, 1999 at 04:21:47PM +0200, Johann Spies wrote: On Tue, 27 Jul 1999 egm2@jps.net wrote: On 27 Jul, Johann Spies wrote: | Then I installed xdm and it did get xwindows to work using icewm, but no | gnome and it ignores .xsession as well as my icewm-configuration (eg.

Re: color ls and log file perms...

1998-10-09 Thread Santiago Vila Doncel
On Sat, 3 Oct 1998, D'jinnie wrote: Where is the color file for the color option of ls? In slackware it's /etc/DIRCOLORS but I can't seem to locate it on debian :( Maybe you are looking for this: dircolors --print-database [ Complete details in info format ].

color ls and log file perms...

1998-10-04 Thread D'jinnie
two short questions :) Where is the color file for the color option of ls? In slackware it's /etc/DIRCOLORS but I can't seem to locate it on debian :( Also - since logs get rotated every night, how can I change the group and permissions (group readable) for all log files? I would like to be able

Re: color ls and log file perms...

1998-10-04 Thread Torsten Hilbrich
On: Sat, 3 Oct 1998 22:37:01 -0500 (CDT) D'jinnie writes: Also - since logs get rotated every night, how can I change the group and permissions (group readable) for all log files? I would like to be able to view/edit them from my user account instead of root... Add your user to the group

Re: HELP: w/ grep on a log file.

1998-06-15 Thread david . oswald
reasuring to know that when the manual does not have the answers, that many times our user group does. __ Reply Separator _ Subject: Re: HELP: w/ grep on a log file. Author: jhspies(p)Johann(a)alpha.futurenet.co.za at INTERNET Date

Re: HELP: w/ grep on a log file.

1998-06-14 Thread Michael Beattie
On Sat, 13 Jun 1998, Johann Spies wrote: Hallo, Sorry if this bores you, but I have never used sed before and after reading this discussion I checked the man page for sed. What I would like to know is the following: On Fri, 12 Jun 1998, Steve Mayer wrote: Try grep `date \+ %a %b

Re: HELP: w/ grep on a log file.

1998-06-14 Thread Johann Spies
Thanks Michael for a good explanation. Johann. -- | Johann Spies Windsorlaan 19 | | [EMAIL PROTECTED]3201 Pietermaritzburg | | Tel/Faks Nr. +27 331-46-1310

Re: HELP: w/ grep on a log file.

1998-06-13 Thread Johann Spies
Hallo, Sorry if this bores you, but I have never used sed before and after reading this discussion I checked the man page for sed. What I would like to know is the following: On Fri, 12 Jun 1998, Steve Mayer wrote: Try grep `date \+ %a %b %d\ | sed 's/ //'` arch.log ^

  1   2   >