Re: LibreOffice, missing bits

2017-09-11 Thread Curt
On 2017-09-10, Brad Rogers  wrote:
>
> On Sun, 10 Sep 2017 22:48:44 +0200
> Sven Joachim  wrote:
>
> Hello Sven,
>
>>It is mentioned in the libreoffice changelog:
>
> My all too cursory glance in that direction failed to spot it.

Maybe you failed to hover the cursory over the right paragraph.

(actually this is a test post disguising itself as a stupid pun)

> Thanks, Sven.
>

-- 
"Time flies like an arrow. Fruit flies like a banana." Groucho



Re: Weird graphical glitches bug with gdm3 and gnome on stretch

2017-09-11 Thread Alessandro Vesely
Interesting...  My system seems to be worse than yours, as it crashes outright
rather than producing inconsistent behavior.  I also use radeon, but don't know
if that issue is hw-related.

Try booting an old 3.* kernel, if you still have one.  That restored my
system's reliability.  Check dmesg differences between kernel 4 and 3.

I'm no kernel expert.  I'm seeking help myself, but the "Chevrolet users'
support group" doesn't seem to be much responsive these days...

'best
Ale

On Sat 09/Sep/2017 20:23:38 +0200 Ramiro Simões Lopes wrote:
> Hi everyone!
> 
> I'm having this weird bug on Stretch with gdm3 and Gnome. Fluxbox and i3 work
> perfectly. It's difficult to describe it so I uploaded a couple videos to 
> show you:
> 
> https://photos.app.goo.gl/lgTsHKLZhBa3SaF83
> https://photos.app.goo.gl/m2Dj4XYP79q0fSTJ2
> 
> I googled it but I haven't found anything like it.
> 
> It started not immediately after upgrading to stretch, but in some upgrade
> after that. I tried reverting the last updates but that didn't solve the 
> problem.
> Maybe some configuration changed? Maybe a hardware issue? But that only
> manifests itself with gnome (weird)?
> 
> And things have been running so smoothly for years that I've gotten a little
> rusty in fixing things... I don't know where to begin.
> 
> I want to file a but report but I don't know if this bug belongs to gnome, to
> xorg, to the radeon driver...
> I'm using current Stretch versions of all packages.
> 
> Hardware:
> 1:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
> [AMD/ATI]
> Turks XT [Radeon HD 6670/7670] [1002:6758]
> 
> Driver:
> xserver-xorg-video-radeon 1:7.8.0-1+b1
> firmware-amd-graphics 20161130-3
> 
> Kernel:
> linux-image-4.9.0-3-amd64 4.9.30-2+deb9u3
> 
> 
> I appreciate any help/suggestions you might have.
> 
> Thank you,
> Ramiro



Re: hibernate uses a wrong UUID

2017-09-11 Thread Pierre Frenkiel

On Sun, 10 Sep 2017, Alexander V. Makartsev wrote:


You should not use "uswsusp" anymore on recent OS releases. Hibernate
should work "out-of-the-box" assuming swap partition is big enough.
Remove "uswsusp", double check "/etc/fstab" swap entry

   $ sudo blkid | grep swap
   /dev/sdb2: LABEL="swap" UUID="d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8"
TYPE="swap" PARTUUID="88839920-fc62-4f3a-aa7c-e97cd1ed4d5d"

   $ cat /etc/fstab | grep swap
   UUID=d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8noneswapsw
00

and "/etc/initramfs-tools/conf.d/resume"

   $ cat /etc/initramfs-tools/conf.d/resume
   RESUME=UUID=d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8

Check swap is working via "swapon"
After that either reinstall initramfs-tools via

   $ sudo apt-get install --reinstall initramfs-tools

or update initramfs via

   $ sudo update-initramfs -u -v | grep "Adding config"

This way you can see all config files and check them if swap
partition\hibernation image is still not found.
Reboot and try to hibernate.


 I already did all that stuff, and increased my swap partition to twice the
 ram size...

best regards,
--
Pierre Frenkiel



Re: libreoffice base crashes when writing HSQLDB

2017-09-11 Thread Joe
On Sun, 10 Sep 2017 23:00:49 +0200
Flo  wrote:

> Dear all,
> 
> Libreoffice is working for me except for Base.
> 
> This means when I want to create a (or use an existing) database 
> libreoffice crashes immediately without giving any information.
> 
> I open libreoffice and click to open a new database (HSQLDB Embedded).
> Then Finish and I am asked about the name of the database. I enter
> the name, click Save and then comes the crash. A database file is
> created, though.
> 
> I am using Debian testing.
> 
> I haven't found anything in the web. Can anyone help me?
> 

Sadly, no, Base is extremely flaky, and doesn't seem to have many
users. Chicken and egg.

Is there a possibility of using a different data type, or of also
running mysql/mariadb? I have reasonable success with data access using
mysql, the part I have major trouble with is report writing, which
stopped altogether for a couple of weeks recently. I had to resort to
writing a php report generator for the specific one I needed quickly.

Has this ever worked for you?

-- 
Joe



Re: hibernate uses a wrong UUID

2017-09-11 Thread Alexander V. Makartsev
Well, in that case, you should start to provide output from "all that
stuff" I mentioned.


On 11.09.2017 13:08, Pierre Frenkiel wrote:
> On Sun, 10 Sep 2017, Alexander V. Makartsev wrote:
>
>> You should not use "uswsusp" anymore on recent OS releases. Hibernate
>> should work "out-of-the-box" assuming swap partition is big enough.
>> Remove "uswsusp", double check "/etc/fstab" swap entry
>>
>>$ sudo blkid | grep swap
>>/dev/sdb2: LABEL="swap" UUID="d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8"
>> TYPE="swap" PARTUUID="88839920-fc62-4f3a-aa7c-e97cd1ed4d5d"
>>
>>$ cat /etc/fstab | grep swap
>>UUID=d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8noneswapsw
>> 00
>>
>> and "/etc/initramfs-tools/conf.d/resume"
>>
>>$ cat /etc/initramfs-tools/conf.d/resume
>>RESUME=UUID=d0331ef1-bc12-473f-bd4a-b4edf0d4d0a8
>>
>> Check swap is working via "swapon"
>> After that either reinstall initramfs-tools via
>>
>>$ sudo apt-get install --reinstall initramfs-tools
>>
>> or update initramfs via
>>
>>$ sudo update-initramfs -u -v | grep "Adding config"
>>
>> This way you can see all config files and check them if swap
>> partition\hibernation image is still not found.
>> Reboot and try to hibernate.
>>
>  I already did all that stuff, and increased my swap partition to
> twice the
>  ram size...
>
> best regards,



Debian-installer with preseed file without access to Internet

2017-09-11 Thread Marek Salwerowicz

Hi list,


I'm working on preseed file located on a USB stick with Debian DVD image 
(automated installation in non-network environment).



How can I configure debian-installer to use only local DVD image instead 
of a network mirror ?



Best regards,

Marek

--
Marek Salwerowicz



Re: hibernate uses a wrong UUID

2017-09-11 Thread Pierre Frenkiel

On Mon, 11 Sep 2017, Alexander V. Makartsev wrote:


Well, in that case, you should start to provide output from "all that
stuff" I mentioned.


  Hi Alexander,
  the output was the same as yours, with just my UUID instead of yours.
  Anyway, I found a simple way to avoid wasting time with hibernate:

  - for short term, only use suspend at lid close (I have to check now
what is the battery life)
  - for long term, shutdown/reboot !! It's just a few seconds more
than the not working hibernate.

thank you for your help

best regards,
--
Pierre Frenkiel



Re: libreoffice base crashes when writing HSQLDB

2017-09-11 Thread Rene Engelhard
On Mon, Sep 11, 2017 at 09:21:00AM +0100, Joe wrote:
> On Sun, 10 Sep 2017 23:00:49 +0200
> Flo  wrote:
> 
> > Dear all,
> > 
> > Libreoffice is working for me except for Base.
> > 
> > This means when I want to create a (or use an existing) database 
> > libreoffice crashes immediately without giving any information.
> > 
> > I open libreoffice and click to open a new database (HSQLDB Embedded).
^
> > Then Finish and I am asked about the name of the database. I enter
> > the name, click Save and then comes the crash. A database file is
> > created, though.
> > 
> > I am using Debian testing.
> > 
> > I haven't found anything in the web. Can anyone help me?
> > 
> 
> Sadly, no, Base is extremely flaky, and doesn't seem to have many
> users. Chicken and egg.

And beides Base being flaky, if you run i386 you run into the still unfixed
regression in the kernel breaking Java (well, stuff embedding the JVM) on
i386. (not on amd64).

And given the internal db is hsqldb - so *is* Java - and thus the JVM gets
initialized...

https://lwn.net/Articles/727206/



https://lwn.net/Articles/727703/







See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=865303 and 
"friends".  

  
Somewhere there is also the boot option to disable the security(!) fix  



to make Java work again.  

Your fault for still using i386 then. (Don't get me wrong: the regression
should be fixed, nevertheless, sure.)

> Is there a possibility of using a different data type, or of also
> running mysql/mariadb? I have reasonable success with data access using
> mysql, the part I have major trouble with is report writing, which

Would work.

> stopped altogether for a couple of weeks recently. I had to resort to
> writing a php report generator for the specific one I needed quickly.

The Report Builder also is Java...

Regards,

Rene



Re: libreoffice base crashes when writing HSQLDB

2017-09-11 Thread Joe
On Mon, 11 Sep 2017 14:52:29 +0200
Rene Engelhard  wrote:


> >  I have reasonable success with data access
> > using mysql, the part I have major trouble with is report writing,
> > which  
> 
> Would work.
> 
> > stopped altogether for a couple of weeks recently. I had to resort
> > to writing a php report generator for the specific one I needed
> > quickly.  
> 
> The Report Builder also is Java...
> 
>

Yes, it's the only bit of Base I use that does need Java. It works
poorly at best, and it just stopped for a while. No bits missing, as
far as I could see, bearing in mind that I run sid, but no dice.

I fired up my wife's computer and used Access to get the job done
immediately, but I've been trying to leave Access for ten years or
more, so I had a go with fpdf with php, and can now produce my most
important reports (i.e. invoices) if Base goes walkabout again.

-- 
Joe



Re: libreoffice base crashes when writing HSQLDB

2017-09-11 Thread Cindy-Sue Causey
On 9/10/17, Flo  wrote:
> Dear all,
>
> Libreoffice is working for me except for Base.
>
> This means when I want to create a (or use an existing) database
> libreoffice crashes immediately without giving any information.
>
> I open libreoffice and click to open a new database (HSQLDB Embedded).
> Then Finish and I am asked about the name of the database. I enter the
> name, click Save and then comes the crash. A database file is created,
> though.
>
> I am using Debian testing.
>
> I haven't found anything in the web. Can anyone help me?


Try running "libreoffice --base" in a terminal window, and see if that
gets you viable error messages. I just tested it, and it did bring up
the Database Wizard.

It's just something I picked up along the way about how Libreoffice
opens each feature. "--calc" gets the k/t for having taught me that a
long time ago and most likely via a right click over an Applications
menu entry... or something similar.. a long time ago... :)

Cindy :)
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

* runs with duct tape *



selinux in debian 9

2017-09-11 Thread Marek Eliáš

Hello,

I am trying to set up selinux on my laptop with a fresh installation of 
debian 9.1, and I have big troubles to make it boot.


I think that I did everything according to the wiki page
https://wiki.debian.org/SELinux/Setup
- installed the packages:
i selinux-basics   0.5.6  0.5.6 
   
i A   selinux-policy-default   
2:2.20161023.1	2:2.20161023.1
i auditd   1:2.6.7-2  1:2.6.7-2 
   
i A   setools  4.0.1-64.0.1-6   
   
- run selinux-activate (with subsequent reboot, relable, reboot)
- run check-selinux-installation which complained about missing 
/etc/default/rcS
so I added the file with content "FSCKFIX=yes" and the script stopped 
complaining and returned 0.


After this, my system worked in permissive mode.

However, if I tried to switch to enforcing mode (either using 
/etc/selinux/config or by kernel command line parameter), I never managed 
to boot.


I tried audit2allow using the input from /var/log/audit/, from journalctl 
(not everything is apparently in audit log) and also something that I could 
see in the display during the failed startups, and including this as a 
module, but never even managed to get to the single-user mode.
I would guess that booting in permissive mode, parsing audit log with 
audit2allow and including this into my policy would solve the problem, but 
it does not.


My installation uses systemd, although I am not very familiar with it.
I am not sure whether it is ok to send the output of audit2allow as an 
attachment, since it contains a few hundred lines. But I can quote several 
lines.


allow bootloader_t mount_var_run_t:file { getattr open read write };
allow bootloader_t udev_var_run_t:file { getattr open read };
allow bootloader_t user_home_dir_t:dir read;
allow bootloader_t var_lib_t:dir { add_name create mounton read remove_name 
rmdir write };
allow dhcpc_t avahi_exec_t:file { execute execute_no_trans getattr open 
read };

allow ifconfig_t apmd_var_run_t:file read;
allow local_login_t gkeyringd_exec_t:file execute;
allow local_login_t unlabeled_t:file { getattr open read };
allow ntpd_t init_t:file { open read };
allow sulogin_t locale_t:dir search;
allow sulogin_t locale_t:file read;
allow sulogin_t locale_t:lnk_file read;
allow system_cronjob_t http_port_t:tcp_socket name_connect;
allow system_cronjob_t mtrr_device_t:file getattr;
allow systemd_hostnamed_t init_t:dbus send_msg;
allow systemd_logind_t apmd_t:dir search;
allow systemd_logind_t user_runtime_t:sock_file unlink;
allow systemd_passwd_agent_t lvm_t:dir search;
allow systemd_passwd_agent_t lvm_t:file { getattr open read };
allow systemd_passwd_agent_t sysfs_t:file { getattr open read };

Am I doing something wrong, or is selinux even supported in stretch?
If the policy package was missing, the those types would not even exist and 
the respective files would not have such labels (it's a fresh installation 
on a brand new laptop). On the other hand, many of those permissions are 
about very basic parts of the system (sulogin, dhcpc, systemd_logind...).


I stopped my effort because I stopped seeing any new auditd logs which 
would move me further. Does anyone have any advice?


thanks,

marek



Debian 9 static IP [Failed:] messages at boot?

2017-09-11 Thread John Conover

I assigned a static IP via XFce:

Menu->Settings->Network Connections->->Wired->Wired
connection 1 1->Edit->IPv4 Settings

Method: Manuel

These settings work, but early in boot, the following messages is
issued:

Failed to start Raise network interfaces.

Is that a problem? Can the message be suppressed?

Thanks,

John

-- 

John Conover, cono...@rahul.net, http://www.johncon.com/



Scanner problem

2017-09-11 Thread MENGUAL Jean-Philippe
Hi,


Two scanners: 1=Epson; 2=canon. 1 works fine, as root and as user. Canon
works as root but not as user, scanimage and sane-find-scanner do not
find it.


While /dev/bus/usb/001/0XX is owned by root:root,, but as well by the
scanner group (where my user is), it is not the case with Canon, the
device is owned only by root:root.


If I do setfacl -mgroup:scanner:rw- the scanner works as regular user.


My questions:

1. Why permissions are set properly for Epson and not Canon?

2. How can I create a Udev rule to fix itN

3. Should I reportbug to the sane package?


Thanks. If I should write to another list such as debian-sane or
whatever, tell me.


Best regards,


-- 
signature_jp_2
Logo Hypra  JEAN-PHILIPPE MENGUAL
DIRECTEUR TECHNIQUE ET QUALITÉ
102, rue des poissonniers, 75018, Paris
Tel : +331 84 73 06 61  Mob : +336 76 34 93 37

jpmeng...@hypra.fr 
www.hypra.fr 
Facebook Hypra  Twitter Hypra
 Linkedin Jean-Philippe





Buster SSH

2017-09-11 Thread Glenn English
Is there something peculiar with SSH on Buster?

The key login doesn't seem to work very well -- root going out works
to hosts (Wheezy, Jessie, and the one before Wheezy), but the user
(me) doesn't. And nothing works coming in. Everything is fine on the
non-Buster hosts.

I bought a laptop recently, pulled out the Winders, and installed
Buster (testing and non-free have software to make the thing work).

Since the dark ages, I've been able to get around to several places
with the same .ssh directory and the same login key.

I've had to enable login by password to access hosts that've worked
before. I've got ssh-client and ssh-server installed.

--
Glenn English



Re: OT: Hurricane

2017-09-11 Thread Darac Marjal

On Sat, Sep 09, 2017 at 12:06:23PM -0400, David Niklas wrote:

There is only one thing worse than a *CAT 5* hurricane headed towards
Florida.


And that's a Cat5e hurricane?


--
For more information, please reread.


signature.asc
Description: PGP signature


Re: Workable installation of VTK and GWT

2017-09-11 Thread Gary Roach

On 09/09/2017 12:41 AM, didier gaumet wrote:

Disclaimer: I have never used or built Elmer


From the Elmer wiki at

http://www.elmerfem.org/elmerwiki/index.php?title=Compilation_of_Elmer_on_Linux_using_Cmake
:

[...]
"Furthermore, ElmerGUI will be compiled - this expects the "devel"
versions of OpenCascade, QWT and a binary (should the post-processing
link work) of ParaView to be installed. Clearly, the user also has to
take care that the GNU C (gcc), Fortran (gfortran) and C++ (g++)
alongside a MPI library (e.g. OpenMPI) is installed on the system."
[...]


Thanks for the reply but I give up. There is no reasonable way to 
install Elmer on Debian. Even the Elmer .deb package in Sid is missing 
two files that I could not find anywhere. Since I'm working inside of a 
virtual machine anyway, I'm wiping out the Debian installation an 
replacing it with Ubuntu 17.1. Ubuntu has a complete working copy of 
Elmer available. For the rest of my system, I'll stick with good ol'e 
stable. safe Debian.




Helping Debian Astro 1.0 Spread Their Word

2017-09-11 Thread Cindy-Sue Causey
Hi.. This is a quick email to help forward the message that there is
something called Debian Astro... floating around out there. The
original email didn't forward well so am including direct links to the
original posts about the same instead.

Yesterday's email from Laura Arjona Reina:

https://lists.debian.org/debian-publicity/2017/09/msg7.html

Today's email response from Ole Streicher:

https://lists.debian.org/debian-astro/2017/09/msg1.html

Am forwarding on the a-sumption that there will be others who have
never heard of Astro and might be interested in checking it out. A
partial blip from the above posts in the interest of providing a
description:

"Let's help making Debian Astro 1.0 known to the astronomy community!

If you happen to attend any astronomy related conference or meeting,
don't hesitate to talk to your colleagues about this Debian Pure Blend
[0] focused for both professional and hobby astronomers, and the
software packages [1] covering telescope control, data reduction,
presentation and other fields."

Happy Debian'ing! :)

Cindy :)

[0] https://www.debian.org/blends/
[1] https://blends.debian.org/astro/tasks
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

*runs with duct tape *



Re: Debian v9 it's a stretch

2017-09-11 Thread Fungi4All
> From: a...@cityscape.co.uk
> To: debian-user@lists.debian.org
>
> On Wed 06 Sep 2017 at 14:29:35 -0400, Fungi4All wrote:
>
>> - Hello,
>> Is this the Chevrolet users" support group?
>> I just bought this new Chevy and I am having all kinds of problems I"ve 
>> never had before with a Chevy or any other car for that matter.
>> - What problems are you having, because all other owners are happy.
>> - Pretty much anything I was used to do is not working or ends up in an 
>> error.
>> - Are you sure it is a Chevy and not an immitation?
>> - Yes I am sure, it is the all new Chevy Corvair, I was told it is the 
>> world"s safest car at any speed, even parked in the garage.
>> - But you haven"t mentioned what problem you are having.
>> - Well, for one, when I hit the brakes hard I end up looking face to face 
>> with the truck that was half a mile behind me.
>> - What brake pads did you install?
>> - I didn"t change any brake pads, it is new I tell you!
>> - Well, that"s why, you haven"t changed the pads.
>> - What about going around a fast corner and the car steers all by itself?
>> - You shouldn"t be going so fast around a bumpy corner.
>> - When I hit the gas on the rain the car keeps going straight, even with the 
>> wheel turned.
>> - Why are you hitting the gas with the wheel turned, you should only use it 
>> when going straight.
>> - That"s OK, I"ll trade it in for a Ford, I hear people dying in these 
>> Corvairs.
>
> You have gone to a lot of trouble to type this. We appreciate it.
> Does it answer anything.
> Is Chevrolet an OS (Operating System)?

No, but there are similarities.
They are both systems, one is for transportation the other for communication,
which are relatives to each other.  The one developed to relieve the pain of 
the first.

They are both vehicles.  The later was used for systemd to dominate an industry.

They are/were marketed to the wrong market.  The corvair was not a bad car,
just wasn't meant for people who didn't understand it as being different.  It
was like a Karman-Ghia but with deadlier potential.  And that wasn't presented 
as
a warning at the time of marriage.  If you don't know what you are doing you 
should
either leave everything else you are doing in life and learn or you are going 
to crash.
Debian too, is developing with the market of enterprise in its secret mind, but 
allowed
people to believe that it is a system for single user personal computing.  
WRONG!

The customer support (this list/or the Chevy sales dept) have the same nasty
attitude.  Every time the customer complains of something the "experts" instead
of trying to see what the problem really is they are trying to locate unique
individual excuses of what the customer did wrong with their fine product.
At least the ones that survived to ask a question get this treatment.

Whether you have a new pc or an old pc it makes no difference.
"It is unsafe at any speed"

Now do you see the resemblance?

youtube error msg & html5

2017-09-11 Thread Whit Hansell

Does anyone know what to do abouut this error messagfe on YouTube.???



 Your browser does not currently recognize any of the video formats
 available


Thanks.   I've searched for the answer but nothing makes any sense 
and many of the answers are very old  The youtube screen points me 
to a page about firefox and html5 but I can't find out how to fix the 
problem..



It's nuts...  Thanks in advance...

whit



Re: Buster SSH

2017-09-11 Thread Cindy-Sue Causey
On 9/11/17, Glenn English  wrote:
> Is there something peculiar with SSH on Buster?
>
> The key login doesn't seem to work very well -- root going out works
> to hosts (Wheezy, Jessie, and the one before Wheezy), but the user
> (me) doesn't. And nothing works coming in. Everything is fine on the
> non-Buster hosts.
>
> I bought a laptop recently, pulled out the Winders, and installed
> Buster (testing and non-free have software to make the thing work).
>
> Since the dark ages, I've been able to get around to several places
> with the same .ssh directory and the same login key.
>
> I've had to enable login by password to access hosts that've worked
> before. I've got ssh-client and ssh-server installed.


I'm just feeding off your words such as key login. I don't know if
it's related or not, but I've been having that occasional extra step
that shows up before you can access your browser. I can't remember the
exact message, but last time it was something to the effect that
something didn't toggle on (login key didn't get unlocked?), likely at
bootup, and that it had something to do with keyring(s).

"Coincidentally" and/or maybe not was that debian-archive-keyring just
updated so maybe something else related also upgraded at the same
time. Be it related or not, I haven't seen that message since but have
only rebooted maybe once or twice. It could end up happening again on
the next reboot. Time will tell :)

Cindy :)
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

* runs with duct tape *



Re: Buster SSH

2017-09-11 Thread Glenn English
On Mon, Sep 11, 2017 at 9:49 PM, Cindy-Sue Causey
 wrote:

> I'm just feeding off your words such as key login. I don't know if
> it's related or not, but I've been having that occasional extra step
> that shows up before you can access your browser. I can't remember the
> exact message, but last time it was something to the effect that
> something didn't toggle on (login key didn't get unlocked?), likely at
> bootup, and that it had something to do with keyring(s).
>
> "Coincidentally" and/or maybe not was that debian-archive-keyring just
> updated so maybe something else related also upgraded at the same
> time. Be it related or not, I haven't seen that message since but have
> only rebooted maybe once or twice. It could end up happening again on
> the next reboot.
>
> Time will tell :)

It will indeed. I'll check to be sure my keyrings are all up to date,
but I can't understand how a Debian keyring could have anything to do
with SSH.

Unless a maintainer got a bright idea...

Thanks.

--
Glenn English



Re: youtube error msg & html5

2017-09-11 Thread Ben Caradoc-Davies

On 12/09/17 09:34, Whit Hansell wrote:

Does anyone know what to do abouut this error messagfe on YouTube.???
  Your browser does not currently recognize any of the video formats
  available
Thanks.   I've searched for the answer but nothing makes any sense 
and many of the answers are very old  The youtube screen points me 
to a page about firefox and html5 but I can't find out how to fix the 
problem..


What browser and version, and what YouTube URL?

Kind regards,

--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand



Re: Buster SSH

2017-09-11 Thread Alexander V. Makartsev
There were changes in SSH in stretch. And since you told about your
super old ".ssh" folder you keep tagging along, it could be the reason
it causes problems for you.
Here, take a look at release notes:
https://www.debian.org/releases/stable/amd64/release-notes/ch-information.en.html#openssh-protocol-and-cipher-support-changes


On 12.09.2017 03:30, Glenn English wrote:
> On Mon, Sep 11, 2017 at 9:49 PM, Cindy-Sue Causey
>  wrote:
>
>> I'm just feeding off your words such as key login. I don't know if
>> it's related or not, but I've been having that occasional extra step
>> that shows up before you can access your browser. I can't remember the
>> exact message, but last time it was something to the effect that
>> something didn't toggle on (login key didn't get unlocked?), likely at
>> bootup, and that it had something to do with keyring(s).
>>
>> "Coincidentally" and/or maybe not was that debian-archive-keyring just
>> updated so maybe something else related also upgraded at the same
>> time. Be it related or not, I haven't seen that message since but have
>> only rebooted maybe once or twice. It could end up happening again on
>> the next reboot.
>>
>> Time will tell :)
> It will indeed. I'll check to be sure my keyrings are all up to date,
> but I can't understand how a Debian keyring could have anything to do
> with SSH.
>
> Unless a maintainer got a bright idea...
>
> Thanks.
>
> --
> Glenn English
>



Re: Buster SSH

2017-09-11 Thread Glenn English
On Mon, Sep 11, 2017 at 11:17 PM, Alexander V. Makartsev
 wrote:
> There were changes in SSH in stretch. And since you told about your
> super old ".ssh" folder you keep tagging along, it could be the reason
> it causes problems for you.
> Here, take a look at release notes:
> https://www.debian.org/releases/stable/amd64/release-notes/ch-information.en.html#openssh-protocol-and-cipher-support-changes

Wow! There sure were. Some of them don't apply, but some of them
might. I'll look into them. The permissions issues look especially
promising (root works, others don't).

Thanks.

--
Glenn English



Mismatch of wxglade and wxwidgets

2017-09-11 Thread Brendan Simon (eTRIX)
I'm running Debian 8 Jessie.

There seems to be a mismatch between wxglade (`python-wxglade`) and
wxwidgets (`python-wxgtk3.0`)

If I install wxglade and run it, I can choose to generate code for wx
2.6 or 2.8 compatibility.  However the wx widgets that are installed use
wx 3.0.

It seems to me that wxglade needs to be updated in Jessie, to be
compatible with the installed wxwidgets.

According to the webpage at sourceforge, wxglade v0.7 added wx 3.0
compatibility and removed wx 2.6.

    http://wxglade.sourceforge.net/

v0.7.2 is latest release according to the sourceforge page, however the
BitBucket repository states that it is out of date and to use the latest
in the repository (a new maintainer).

    https://bitbucket.org/wxglade/wxglade

### How do I request getting `python-wxglade` updated to at least
version 0.7.2 ??

Regards,
Brendan.