Re: Temperatures rrd

2019-03-03 Thread Andy Smith
Hi Greg,

On Sun, Mar 03, 2019 at 10:01:58AM +0100, Grzesiek Sójka wrote:
> Since sensord was removed I would like to ask what do you use to log sensors
> readings to rrd database.

As I want to monitor multiple hosts I use an external monitoring system,
but if you want to store metrics locally, rrd has bindings for most
scripting languages so just use it in the one you're most comfortable
with.

If that's shell, you can just do everything with the "rrdtool" binary.
For Perl I've used https://metacpan.org/pod/RRD::Simple with no
problems; this is packaged in Debian as librrd-simple-perl. I am sure
there are options for whatever language you like.

Cheers,
Andy

-- 
https://bitfolk.com/ -- No-nonsense VPS hosting



Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread Leandro Noferini
ksqsf  writes:

> Recently, I upgraded to Debian Buster (since it's going to release

[...]

> me a direction for finding the root cause and a fix? Thank you!

Recently I had almost the same problem on a Thinkpad X240: when the
computer wakes up from a suspension the touchpad often does not work
anymore.

I found that removing and reinsterting psmouse module makes touchpad
working again.

sudo rmmod psmouse
sudo modprobe psmouse.

I asked in this list for a suggestion to file a bug report but I had no
response.

Hope it helps!

-- 
Ciao
leandro
http://6xukrlqedfabdjrb.onion/
Alla bellezza preferisco la verità.
E il dubbio è l'unità di misura.


signature.asc
Description: PGP signature


Re: Bash file to variable string problem -- must be simple. What am I missing?

2019-03-03 Thread Thomas Schmitt
Hi,

deb wrote:
> Two adjoining spaces. :-)

Really tricky are file names containing newline characters.

Your use case might already balance on the border line where a more
straightforward programming language than bash should be considered and
a fully capable file content protocol should be defined.
(Protocol candidates would be: Shell-style quotation and line continuation,
or the good old hollerith string representation.)


Have a nice day :)

Thomas



Re: Mirror release file expired

2019-03-03 Thread Jimmy Johnson

Brian wrote:

On Fri 09 Nov 2018 at 08:32:57 -0500, Boyan Penkov wrote:


On apt-get update, I see:

Reading package lists... Done
E: Release file for
http://mirror.cc.columbia.edu/debian/dists/buster/InRelease is expired
(invalid since 17h 5min 48s). Updates for this repository will not be
applied.

What's the best way to communicate this to the folks who manage that
particular mirror -- the Columbia one?



http://mirror.cc.columbia.edu/ has a contact address.



I've seen mirrors expire for one reason or another.  Is there anyway to 
find/get the hits on that address?


Thanks.
--
Jimmy Johnson

Slackware64 Current - Linux 4.19.23 - KDE 4.14.38 - AMD A8-7600 - EXT4 
at sda11

Registered Linux User #380263



[SOLVED II] (Thomas) Re: Bash file to variable string problem -- must be simple. What am I missing?

2019-03-03 Thread deb


On 3/3/19 2:43 AM, Thomas Schmitt wrote:

Hi,

if spaces are involved, then quotation marks hould be put around the
argument of "echo".

Using the leading blank from David Wright's post:

   $ fname=" long file with spaces.mp4"
   $ x=`echo $fname | rev | cut -d. -f2 | rev`
   $ test "$x".mp4 = "$fname" && echo IS EQUAL
   $

I.e. "$x".mp4 and "$fname" are not equal.
That's because the leading blank got lost in the "echo" run:

   $ echo "'$x'"
   'long file with spaces'

Now with quotation marks around $fname to preserve the leading blank:

   $ x=`echo "$fname" | rev | cut -d. -f2 | rev`
   $ test "$x".mp4 = "$fname" && echo IS EQUAL
   IS EQUAL

A similar effect would happen with double blanks inside the name:

   $ fname="long file with  double  spaces.mp4"
   $ x=`echo $fname | rev | cut -d. -f2 | rev`
   $ echo "'$x'"
   'long file with double spaces'
   $ x=`echo "$fname" | rev | cut -d. -f2 | rev`
   $ echo "'$x'"
   'long file with  double  spaces'


Have a nice day :)

Thomas




Good thought Thomas!

This also worked:

  $ fname=`echo "$fname" | rev | cut -d. -f2

Now, the actual file did not have a leading (or trailing) space --- 
which I focused on.


But IT DID have 2 adjoining spaces Within the filename.

Enclosing $fname in "", worked perfectly.


That simple thing, that I thought I was missing, I would not have 
guessed at. Two adjoining spaces. :-)


*Thank you!*



Re: Bash file to variable string problem -- must be simple. What am I missing?

2019-03-03 Thread Thomas Schmitt
Hi,

i wrote:
> > if spaces are involved, then quotation marks should be put around the
> > argument of "echo".

David Wright wrote:
> Yep. But I guess we're solving Problem A, the subject line's
> reported paradox (which was never actually demonstrated),
> rather than Problem B, which wasn't revealed until the
> OP's follow-up.

deb wrote originally:
> > > # THIS LS FAILS, WITH FILE NOT FOUND (but actually reports the exact 
> > > string
> > > that worked above, but not being found here).

This is of course impossible in a deterministic world.
So either black magic, quantum logic, or non-identical strings are at work.
I bet on eye spoofing by blanks and maybe a proportional text font.


> Letting the shell parse and reparse is rarely a good idea
> and can lead to quoting hell, necessitating a visit to one
> of Greg's wikis.

I think my theory could be classified as a simplifying merger of
  https://mywiki.wooledge.org/BashPitfalls#for_f_in_.24.28ls_.2A.mp3.29
and
  https://mywiki.wooledge.org/BashPitfalls#echo_.24foo


Have a nice day :)

Thomas



Help with video editing with ffmpeg

2019-03-03 Thread Gerardo Ballabio
Hello all,
I have a video that was filmed under bad lighting conditions, the
background is too bright and people in the foreground are dark. I'm
trying to use ffmpeg to correct it. Please kindly help me.

Here you can find a snippet:
https://drive.google.com/drive/folders/1aG04znyHdDio7cvgaQlovYTb8bX8NTLL?usp=sharing

video1.mts is the original file. video2.mp4 was created by a friend of
mine using proprietary software on Windows. I've been trying to
reproduce that. video3.mts is the best result I obtained (see below)
but the contrast is still too high and the colors aren't quite right.

I've tried several of ffmpeg's effects but maybe there are some better
ones that I missed?

- "eq=brightness=..." turns black into grey and gives the video a
"foggy" look, no good
- "colorlevels=..." I tried many parameter sets but couldn't do much
better, in the end I concluded that probably linear scaling isn't good
enough and I need nonlinear
- "curves=..." was indeed better but when I stretched the curve beyond
a certain point I obtained distorted colors
- I tried "geq=..." too but it doesn't seem to work, I always get an
error like this:

ffmpeg -i video1.mts -vf geq='r=r(X,Y):g=g(X,Y):b=b(X,Y)' video3.mts
[Parsed_geq_0 @ 0x55a01bb0aa60] [Eval @ 0x7ffd3d63afb0] Missing ')' or
too many args in 'r(X'
[AVFilterGraph @ 0x55a01bb09e80] Error initializing filter 'geq' with
args 'r=r(X'
Error opening filters!

These are the commands that I used to produce video3.mts:

ffmpeg -i video1.mts -vf colorlevels=romax=0.8:gomax=1.0:bomax=0.9 -b
12M temp.mts
ffmpeg -i temp.mts -vf curves=r='0/0.05 0.1/0.25 1/0.8':g='0/0.05
0.1/0.25 1/0.8':b='0/0.05 0.1/0.25 1/0.8' -b 12M video3.mts

Thanks
Gerardo



Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread Patrick Bartek
On Sun, 03 Mar 2019 19:34:14 +0800
ksqsf  wrote:

> Hi all,
> 
> Recently, I upgraded to Debian Buster (since it's going to release
> soon), and generally it's an enjoyable experience. However, from time
> to time, my laptop's keyboard and touchpad won't work after waking up
> from suspension (open the lip). It's embarassing that I can't do any
> work in front of others.
> 
> I've tried xinput to enable and disable input devices, but no luck.
> Next, I tried `cat /dev/input/eventX`, `cat /dev/input/mouseX`, and
> there is output when I tap the touchpad, or press some keys, which
> implies that the drivers are working correctly.
> 
> I have absolutely zero experience in debugging such a problem, so I
> have to turn to the mailing list for help. Could someone please suggest
> me a direction for finding the root cause and a fix? Thank you!
> 
> Laptop: Dell Inspiron 7368
> Desktop: GNOME 3.30

I had basically the same problem years ago after install Wheezy (32-bit)
-- the current Stable then -- with the Gnome GUI on an Asus Eeepc 901
netbook.  To make a long story short, I discovered a conflict between
the Power Saving software and the Gnome Screensaver.  So, I disabled
the screensaver.  Never had the problem again. Later, I made sure the
screensaver didn't load at all.  Really, you don't need it, if your
power saving is set to turn off screen.

Also, since Buster is still an Alpha, expect more glitches.

B



Re: Bluetooth audio problem

2019-03-03 Thread deloptes
Mark Fletcher wrote:

> Hello
> 
> Since upgrading to Stretch shortly after it became stable, I have had to
> execute the following after a reboot before being able to connect to
> bluetooth devices using the Gnome bluetooth applet:
> 
> $ sudo pactl load-module module-bluetooth-discover
> 
> Without that command, needed once only after each reboot, the Gnome
> applet is unable to connect to any bluetooth audio devices, eg my
> headphones to be used as an audio sink, or my iPhone to be used as an
> audio source. Once that command has been issued once, everything works
> as it should, and continues to do so until the next reboot.
> 
> I've been away for a couple of weeks and so hadn't installed updates to
> my stretch installation for something like 3 weeks, until Saturday this
> week when I installed updates. Unfortunately I didn't pay enough
> attention to exactly what was upgraded but I _believe_ I saw udev in the
> list of things getting upgraded.
> 
> Now, when I run the above command it is erroring out with:
> 
> xcb_connection_has_error() returned true
> Connection failure: Connection refused
> pa_context_connect() failed: Connection refused
> 
> Googling for this has only turned up old information which does not seem
> to relate to the problem I am facing. In most cases the context is audio
> not working; in my case audio output through speakers plugged into the
> sound card is working fine, USB mic connected by a wire is working
> fine, the only problem is anything bluetooth.
> 
> Bluetooth on this machine is provided by a USB bluetooth dongle which I
> have been using for ages.
> 
> Can anyone suggest steps to diagnose?
> 


When I want to debug pulse I do

echo "autospawn = no" > ~/.pulse/client.conf

kill PA and run it from command line with -v option you can also
use --log-level (man pulseaudio)

perhaps you can see what is the problem there. If not it might be dbus issue
with permissions - check the dbus settings

Also some times it helps to remove the ~/.pulse directory and restart
pulseaudio.

regards



Re: Bash file to variable string problem -- must be simple. What am I missing?

2019-03-03 Thread David Wright
On Sun 03 Mar 2019 at 08:43:28 (+0100), Thomas Schmitt wrote:

> if spaces are involved, then quotation marks hould be put around the
> argument of "echo".

Yep. But I guess we're solving Problem A, the subject line's
reported paradox (which was never actually demonstrated),
rather than Problem B, which wasn't revealed until the
OP's follow-up.

Letting the shell parse and reparse is rarely a good idea
and can lead to quoting hell, necessitating a visit to one
of Greg's wikis.

Cheers,
David.



Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread Charlie Kravetz
On Sun, 03 Mar 2019 22:27:23 +0800
ksqsf  wrote:

>Hi
>
>> I have found the screen won't wake after sleeping, which makes it
>> appear the keyboard and mouse are not working. Switching to a virtual
>> console and back makes it all work again. I simply hit Ctl+Alt+F4,  
>wait
>> a second, and hit Alt+F7.   
>
>Thanks. I've never thought of switching to another tty. Unfortunately,
>this workaround doesn't work for me.
>
>1. nothing happens when press Ctrl+Alt+F4
>2. use a USB keyboard to switch to tty4
>3. surprisingly, the laptop keyboard works well, and I can login
>normally
>4. switch back to the graphical login, the laptop keyboard stops
>working again
>
>Now I strongly suspect it's a GNOME problem...
>
>
>
I am sure someone much wiser than I will step in and give other
suggestions now.

-- 
Charlie Kravetz
Linux Registered User Number 425914
[http://linuxcounter.net/user/425914.html]
Never let anyone steal your DREAM.   [http://keepingdreams.com]



Bluetooth audio problem

2019-03-03 Thread Mark Fletcher
Hello

Since upgrading to Stretch shortly after it became stable, I have had to 
execute the following after a reboot before being able to connect to 
bluetooth devices using the Gnome bluetooth applet:

$ sudo pactl load-module module-bluetooth-discover

Without that command, needed once only after each reboot, the Gnome 
applet is unable to connect to any bluetooth audio devices, eg my 
headphones to be used as an audio sink, or my iPhone to be used as an 
audio source. Once that command has been issued once, everything works 
as it should, and continues to do so until the next reboot.

I've been away for a couple of weeks and so hadn't installed updates to 
my stretch installation for something like 3 weeks, until Saturday this 
week when I installed updates. Unfortunately I didn't pay enough 
attention to exactly what was upgraded but I _believe_ I saw udev in the 
list of things getting upgraded.

Now, when I run the above command it is erroring out with:

xcb_connection_has_error() returned true
Connection failure: Connection refused
pa_context_connect() failed: Connection refused

Googling for this has only turned up old information which does not seem 
to relate to the problem I am facing. In most cases the context is audio 
not working; in my case audio output through speakers plugged into the 
sound card is working fine, USB mic connected by a wire is working 
fine, the only problem is anything bluetooth.

Bluetooth on this machine is provided by a USB bluetooth dongle which I 
have been using for ages.

Can anyone suggest steps to diagnose?

TIA

Mark



Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread Carl Fink

On 3/3/19 9:27 AM, ksqsf wrote:

Hi


I have found the screen won't wake after sleeping, which makes it
appear the keyboard and mouse are not working. Switching to a virtual
console and back makes it all work again. I simply hit Ctl+Alt+F4,

wait

a second, and hit Alt+F7.

Thanks. I've never thought of switching to another tty. Unfortunately,
this workaround doesn't work for me.

1. nothing happens when press Ctrl+Alt+F4
2. use a USB keyboard to switch to tty4
3. surprisingly, the laptop keyboard works well, and I can login
normally
4. switch back to the graphical login, the laptop keyboard stops
working again

Now I strongly suspect it's a GNOME problem...


I have also had the "keyboard and mouse ignored when returning from monitor
sleep" issue, fixed by ctrl-alt-F1 and then ctrl-alt-F7. Oddly, when I hit
c-a-f7, I get a screen telling me that the screen is locked and I'll be 
taken

to the login screen in a few seconds. Why? Why not just take me to the login
screen? What's the value of that message?

Also, just now I had the "ignore keyboard, won't return from monitor sleep"
issue. I was in the middle of something, so when pressing a key did 
nothing I

walked away and came back a few minutes later ... and NOW the keyboard
did unsleep the monitor. What the?
--
Carl Fink   nitpick...@nitpicking.com
Read my blog at blog.nitpicking.com.  Reviews!  Observations!



[SOLVED] Re: Bash file to variable string problem -- must be simple. What am I missing?

2019-03-03 Thread deb


On 3/2/19 10:22 PM, der.hans wrote:

Am 02. Mar, 2019 schwätzte deb so:

moin moin,

rather than the double-reverse, try the truncate operator.

basename=${fname%.*}

$ ( fname=fred.mp4; echo ${fname%.*} )
fred
$ ( fname=fred.georg.mp4; echo ${fname%.*} )
fred.georg
$ ( fname=fred.txt; echo ${fname%.*} )
fred
$ ( fname=fred; echo ${fname%.*} )
fred
$

'%' says to look for the named pattern at the end of the value.

In this case '.*' says the last dot and everything after it if there is a
period in the value.

'%' is not greedy, so will match as little as possible, use '%%' to get
greedy if you need it.

ciao,

der.hans



On 3/2/19 8:07 PM, Roberto C. Sánchez wrote:

On Sat, Mar 02, 2019 at 07:56:58PM -0500, deb wrote:

    This has to be simple and I'm just missing it.

    If I pull a filename from a temp file into a variable, I can ls 
it fine.


    If I cut off the extension, and tack on my own SAME EXT, ls no 
longer

    works.

    (The actual script is more elaborate, loading vlc , etc -- but 
this

    summarizes & shows my issue)

    # mp4file.txt holds just 'long file with spaces.mp4'

    fname=$(    # THIS LS FAILS, WITH FILE NOT FOUND (but actually reports the 
exact

    string that worked above, but not being found here).

    ls -al "$fname".mp4

    ls: cannot access 'long file with spaces.mp4': No such file or 
directory



I cannot replicate the behavior you describe.  Here is how it looks for
me:

root@chroot:~# touch "long file with spaces.mp4"
root@chroot:~# echo "long file with spaces.mp4" >mp4file.txt
root@chroot:~# cat mp4file.txt
long file with spaces.mp4
root@chroot:~# ls -l
total 4
-rw-r--r-- 1 root root  0 Mar  3 01:02 long file with spaces.mp4
-rw-r--r-- 1 root root 26 Mar  3 01:02 mp4file.txt
root@chroot:~# fname=$(
--

    It is not:

    * a special character thing,

    * a carriage return thing,

    * a character case thing,

    * not helped with './' or '~/' added in front of the filename.

    * It's the same string in both spots.

    Any thoughts folks?


I am not sure about the overall problem, but I can say I would replace
this:

fname=`echo $fname | rev | cut -d. -f2 | rev`

with this:

fname=$(basename "$fname" .mp4)

Regards,

-Roberto


*
*

*Thank you Roberto.*


# Cut off the extension.
# fname=`echo $fname | rev | cut -d. -f2 | rev`

fname=$(basename "$fname" .mp4)

^ this does work for the *ls*, but I do not know that it will be a .mp4.


(It could be a .mkv, .webm, .ogg, .mp4, etc.)

What is certain is the filename to  the left of the final '.'.

So I was building up the different choices to file test for, hence 
the fname=`echo $fname | rev | cut -d. -f2 | rev`





I'm running:

cat /etc/issue
9.8

bash --version
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu)






This did it!


fname=${fname%.*}


# Works perfectly *
*

*Thank you der.hans!*

*
*

(I am working through these responses in delivered order -- but this was 
the first one to work).













Re: Jessie / Mips fails to downoad index

2019-03-03 Thread didier gaumet


It seems Jessie repository is reachable but Jessie security updates
repository is not. That would be logical since Jessie for the Mips
architecture is EOL.

There are no more security updates for your architecture so you only
need to comment out the security updates in the /etc/apt/sources.list
file in order to avoid the previous error message.

Even if Jessie updates (not security updates) is reachable, there are no
more updates. So apt-get upgrade won't upgrade anything.

And probably when Buster is released, Jessie repositories will be
transfered to  http://archive.debian.org



Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread ksqsf
Hi

> I have found the screen won't wake after sleeping, which makes it
> appear the keyboard and mouse are not working. Switching to a virtual
> console and back makes it all work again. I simply hit Ctl+Alt+F4,
wait
> a second, and hit Alt+F7. 

Thanks. I've never thought of switching to another tty. Unfortunately,
this workaround doesn't work for me.

1. nothing happens when press Ctrl+Alt+F4
2. use a USB keyboard to switch to tty4
3. surprisingly, the laptop keyboard works well, and I can login
normally
4. switch back to the graphical login, the laptop keyboard stops
working again

Now I strongly suspect it's a GNOME problem...





Re: Atril documentation problems

2019-03-03 Thread Brian
On Sun 03 Mar 2019 at 07:39:16 -0600, Richard Owlett wrote:

> On 03/03/2019 03:18 AM, Curt wrote:
> > On 2019-03-03, Curt  wrote:
> > > On 2019-02-28, Richard Owlett  wrote:
> > > > 
> > > > I don't know how to approach my problem.
> > > > 
> > > > My desktop is MATE. I believe the display manager is lightdm.
> > > > 
> > > > I used Synaptic to look for "adapta-gtk-theme" without success
> > > > [my sources.list contains
> > > >"deb http://deb.debian.org/debian/ stretch main contrib"]
> > > > 
> > > > Suggestions?
> > > > 
> > > > 
> > > 
> > > This is unrelated to your "visible" highlighting conundrum but while
> > > searching an answer for Bailey, which I withheld due to his lousy
> > > attitude, I stumbled upon 'aptly', a tool for managing Debian package
> > > repositories, which I believe you expressed an interest in doing some
> > > moons ago.
> > > 
> > > I don't recall this soft being mentioned during that or those threads;
> > > maybe it was, though, and you've already heard of it.
> > > 
> > > Out.
> > > 
> > 
> > Forgot the link:
> > 
> > https://www.aptly.info/doc/overview/
> > 
> 
> *THANK YOU*
> It may not relate to diagnosing my highlighting problem.

The cause of your issue has been diagnosed and a solution proposed and
tested.

> HOWEVER, if I had it installed, it would have made it reasonable to
> experiment with Alexander's suggested workaround [adapta-gtk-theme from
> backports].

You haven't installed from backports yet? Tut,tut.

-- 
Brian.



Re: Atril documentation problems

2019-03-03 Thread Richard Owlett

On 03/03/2019 03:18 AM, Curt wrote:

On 2019-03-03, Curt  wrote:

On 2019-02-28, Richard Owlett  wrote:


I don't know how to approach my problem.

My desktop is MATE. I believe the display manager is lightdm.

I used Synaptic to look for "adapta-gtk-theme" without success
[my sources.list contains
   "deb http://deb.debian.org/debian/ stretch main contrib"]

Suggestions?




This is unrelated to your "visible" highlighting conundrum but while
searching an answer for Bailey, which I withheld due to his lousy
attitude, I stumbled upon 'aptly', a tool for managing Debian package
repositories, which I believe you expressed an interest in doing some
moons ago.

I don't recall this soft being mentioned during that or those threads;
maybe it was, though, and you've already heard of it.

Out.



Forgot the link:

https://www.aptly.info/doc/overview/



*THANK YOU*
It may not relate to diagnosing my highlighting problem.

HOWEVER, if I had it installed, it would have made it reasonable to 
experiment with Alexander's suggested workaround [adapta-gtk-theme from 
backports].


I've been interested in local repositories since Jessie. A brief browse 
of aptly links suggests it explicitly addresses some problems that 
discouraged me from proceeding.






Re: Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread Charlie Kravetz
On Sun, 03 Mar 2019 19:34:14 +0800
ksqsf  wrote:

>Hi all,
>
>Recently, I upgraded to Debian Buster (since it's going to release
>soon), and generally it's an enjoyable experience. However, from time
>to time, my laptop's keyboard and touchpad won't work after waking up
>from suspension (open the lip). It's embarassing that I can't do any
>work in front of others.
>
>I've tried xinput to enable and disable input devices, but no luck.
>Next, I tried `cat /dev/input/eventX`, `cat /dev/input/mouseX`, and
>there is output when I tap the touchpad, or press some keys, which
>implies that the drivers are working correctly.
>
>I have absolutely zero experience in debugging such a problem, so I
>have to turn to the mailing list for help. Could someone please suggest
>me a direction for finding the root cause and a fix? Thank you!
>
>Laptop: Dell Inspiron 7368
>Desktop: GNOME 3.30
>
>Regards
>
>
>

I have found the screen won't wake after sleeping, which makes it
appear the keyboard and mouse are not working. Switching to a virtual
console and back makes it all work again. I simply hit Ctl+Alt+F4, wait
a second, and hit Alt+F7. 

-- 
Charlie Kravetz
Linux Registered User Number 425914
[http://linuxcounter.net/user/425914.html]
Never let anyone steal your DREAM.   [http://keepingdreams.com]



Keyboard and touchpad not working after waking up from a suspension

2019-03-03 Thread ksqsf
Hi all,

Recently, I upgraded to Debian Buster (since it's going to release
soon), and generally it's an enjoyable experience. However, from time
to time, my laptop's keyboard and touchpad won't work after waking up
from suspension (open the lip). It's embarassing that I can't do any
work in front of others.

I've tried xinput to enable and disable input devices, but no luck.
Next, I tried `cat /dev/input/eventX`, `cat /dev/input/mouseX`, and
there is output when I tap the touchpad, or press some keys, which
implies that the drivers are working correctly.

I have absolutely zero experience in debugging such a problem, so I
have to turn to the mailing list for help. Could someone please suggest
me a direction for finding the root cause and a fix? Thank you!

Laptop: Dell Inspiron 7368
Desktop: GNOME 3.30

Regards





Re: Failed to sign email. Thunderbird or enigmail bug?

2019-03-03 Thread Teemu Likonen
Georgios [2019-03-03 10:02:01+02] wrote:

> After i send my email to the list I found a forum discussion that led
> nowhere. I solved my problem by changing enigmail settings. I changed
> "prefer s/mime" to "prefer enigmail(openpgp)"

S/MIME format is for X.509 certificates signed by certificate
authorities. For OpenPGP keys you need format called PGP/MIME. Some
people use PGP/INLINE which is "gpg --clearsign" output in messages'
body.


"E-Mail Format Preferences"
https://wiki.gnupg.org/E-Mail%20Format%20Preferences

-- 
/// Teemu Likonen   - .-..    //
// PGP: 4E10 55DC 84E9 DFF6 13D7 8557 719D 69D3 2453 9450 ///


signature.asc
Description: PGP signature


Re: Atril documentation problems

2019-03-03 Thread Curt
On 2019-03-03, Curt  wrote:
> On 2019-02-28, Richard Owlett  wrote:
>>
>> I don't know how to approach my problem.
>>
>> My desktop is MATE. I believe the display manager is lightdm.
>>
>> I used Synaptic to look for "adapta-gtk-theme" without success
>> [my sources.list contains
>>   "deb http://deb.debian.org/debian/ stretch main contrib"]
>>
>> Suggestions?
>>
>>
>
> This is unrelated to your "visible" highlighting conundrum but while
> searching an answer for Bailey, which I withheld due to his lousy
> attitude, I stumbled upon 'aptly', a tool for managing Debian package
> repositories, which I believe you expressed an interest in doing some
> moons ago.
>
> I don't recall this soft being mentioned during that or those threads;
> maybe it was, though, and you've already heard of it.
>
> Out.
>

Forgot the link:

https://www.aptly.info/doc/overview/

-- 
“Let us again pretend that life is a solid substance, shaped like a globe,
which we turn about in our fingers. Let us pretend that we can make out a plain
and logical story, so that when one matter is despatched--love for instance--
we go on, in an orderly manner, to the next.” - Virginia Woolf, The Waves



Re: Atril documentation problems

2019-03-03 Thread Curt
On 2019-02-28, Richard Owlett  wrote:
>
> I don't know how to approach my problem.
>
> My desktop is MATE. I believe the display manager is lightdm.
>
> I used Synaptic to look for "adapta-gtk-theme" without success
> [my sources.list contains
>   "deb http://deb.debian.org/debian/ stretch main contrib"]
>
> Suggestions?
>
>

This is unrelated to your "visible" highlighting conundrum but while
searching an answer for Bailey, which I withheld due to his lousy
attitude, I stumbled upon 'aptly', a tool for managing Debian package
repositories, which I believe you expressed an interest in doing some
moons ago.

I don't recall this soft being mentioned during that or those threads;
maybe it was, though, and you've already heard of it.

Out.

-- 
“Let us again pretend that life is a solid substance, shaped like a globe,
which we turn about in our fingers. Let us pretend that we can make out a plain
and logical story, so that when one matter is despatched--love for instance--
we go on, in an orderly manner, to the next.” - Virginia Woolf, The Waves



Temperatures rrd

2019-03-03 Thread Grzesiek Sójka

Hi there,

Since sensord was removed I would like to ask what do you use to log 
sensors readings to rrd database.


Regards
Greg



Re: Jessie / Mips fails to downoad index

2019-03-03 Thread Clemens Eisserer
Hi Georgi,

> It seems that Jessie is on Debian mirrors.
> For example - http://ftp.bg.debian.org/debian/dists/jessie/

It indeed seems to, however the InRelease-File does not contain the
mips-binary sections anymore.
This is what apt complains abount:

Fetched 500 kB in 1min 49s (4573 B/s)
W: Failed to fetch
http://security.debian.org/dists/jessie/updates/InRelease  Unable to
find expected entry 'main/binary-mips/Packages' in Release file (Wrong
sources.list entry or malformed file)

I guess the reason is that mips is not part of the architectures which
are receiving LTS updates.

However wouldn't it be possible to install / update to the most recent
packages available for jessie/mipsel?

Thank you in advance, Clemens



Re: Failed to sign email. Thunderbird or enigmail bug?

2019-03-03 Thread Georgios
Thanks for your reply.

After i send my email to the list I found a forum discussion that led
nowhere.  I solved my problem by changing enigmail settings.
I changed  "prefer s/mime" to "prefer enigmail(openpgp)"


On 3/2/19 11:27 PM, riveravaldez wrote:
>> I want to report it as a bug. How should i report it as a thunderbird or
>> enigmail bug?
> 
> Have you checked upstream on Thunderbird [1,2,3] and Enigmail [4,5]
> sites/communities?
> 
> [1] https://www.thunderbird.net/en-US/
> [2] https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird
> [3] https://support.mozilla.org/en-US/products/thunderbird
> [4] https://enigmail.net/index.php/en/
> [5] https://enigmail.net/index.php/en/support/reporting-defects
> 



Re: Failed to sign email. Thunderbird or enigmail bug?

2019-03-03 Thread Georgios
I found a discussion in a forum that led nowhere. I "solve" the problem
by changing my settings by choosing "prefer enigmail(openpgp)" vs
"prefer s/mime".


On 3/2/19 11:27 PM, riveravaldez wrote:
>> I want to report it as a bug. How should i report it as a thunderbird or
>> enigmail bug?
> 
> Have you checked upstream on Thunderbird [1,2,3] and Enigmail [4,5]
> sites/communities?
> 
> [1] https://www.thunderbird.net/en-US/
> [2] https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird
> [3] https://support.mozilla.org/en-US/products/thunderbird
> [4] https://enigmail.net/index.php/en/
> [5] https://enigmail.net/index.php/en/support/reporting-defects
>