Re: [PLUG] Fwd: lockup

2016-06-18 Thread Nat Taylor
Do you think it could have something to do with trying to go to sleep or
and then having some sort of problem with the wifi driver?  I've seen that
and the solution is to have the wireless driver disabled before sleep?  I
think power management is always a good place to start looking when a
laptop locks up.  Upstart takes care of stuff while going to sleep on
Ubuntu:
http://askubuntu.com/questions/441748/where-are-upstart-log-messages-on-ubuntu-13-x
--- ^if you enable upstart log messages you'll get more detail
http://upstart.ubuntu.com/

On Fri, Jun 17, 2016 at 6:13 PM, David  wrote:

> On 06/17/2016 04:45 PM, Denis Heidtmann wrote:
> > I have had about 3 lockups on my new (used) Lenovo L420.  The symptoms
> are
> > that the system freezes with no responses to either the mouse or the
> > keyboard.
>
> 
>
> I have an aging T61 that exhibited random lockup / reboot cycles as
> well. I found that removing the generic nouveau video driver for the
> proprietary nvidia driver resolved my issue.
>
> The other thing that happened with this was a reduction of memory usage,
> a slightly cooler running machine, and a cessation of kernel panics.
>
> Your situation seems to be slightly different and logging in remotely
> during a lockup, or better still before, from another system may glean
> some useful information as I found that my log files simply didn't
> contain anything useful.
>
> dafr
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Stopwatch?

2016-06-18 Thread Rich Shepard
On Sat, 18 Jun 2016, King Beowulf wrote:

> Here's a Linux built in version for simple timer.  Use the internal bash
> or external 'time' function. the command 'cat' is used since without args
> it waits for stdin input. CTRL-C exits:

> EXTERNAL (see 'man time' for gory details):

Ed,

   I didn't see this when I looked at the time man page. It makes sense that
invoking time with the command to accept stdin input, and not entering any
would have it keep track of the waiting time.

Thanks,

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Stopwatch?

2016-06-18 Thread King Beowulf
On 06/16/2016 04:13 PM, Rich Shepard wrote:
> On Thu, 16 Jun 2016, King Beowulf wrote:
> 
>> SLackbuilds.org has utimer.
> 
> Ed,
> 
>Kewel tool! Now I can time my presentation to the 1/1000 of a second. :-)
> 
>It didn't occur to me to check SBo for a solution.
> 
> Thanks,
> 
> Rich

Here's a Linux built in version for simple timer.  Use the internal bash
or external 'time' function. the command 'cat' is used since without
args it waits for stdin input.  CTRL-C exits:

BASH:
-

$ time cat
^C

real0m3.675s
user0m0.004s
sys 0m0.001s


EXTERNAL (see 'man time' for gory details):

#Elapsed real time (in [hours:]minutes:seconds)

$ /usr/bin/time -f %E cat
^CCommand terminated by signal 2
0:06.93

#Elapsed real time (in seconds).

$ /usr/bin/time -f %e cat
^CCommand terminated by signal 2
20.07

Yep, Sat morn and the yard won't mow itselfso I fiddle with bash
instead...

-Ed

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug