Re: [DNG] Installing birdtray on Beowulf

2020-05-05 Thread wirelessduck--- via Dng


> On 5 May 2020, at 15:51, Dimitris via Dng  wrote:
> 
> On 5/5/20 5:38 AM, wirelessduck--- via Dng wrote:
>> Are there any other methods to get it installed without compiling from 
>> source?
> 
> you can try ceres version (=1.8.1) to see if it works in beowulf.
> 
> btw, i think this is a debian bug.. tried to install birdtray on a
> buster machine and got the same error..

Thanks, but I’ve already checked that. At the very least it has a libgcc-s1 
dependency which doesn’t exist in Beowulf/buster.
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Installing birdtray on Beowulf

2020-05-05 Thread wirelessduck--- via Dng


> On 5 May 2020, at 15:54, Florian Zieboll  wrote:
> 
> I just websearched for Birdtray, hoping to get a hint towards a firefox 
> "close to tray" successor and found that there seem to be flatpaks and a PPA:
> 
> https://www.linuxuprising.com/2018/10/birdtray-thunderbird-tray-icon-with-new.html
> 
> Besides that, I recommend to have a look at Claws Mail and its plugins:
> 
> https://www.claws-mail.org/plugins.php 
> 
> Libre Grüße,
> Florian

Thanks, I might look into this flatpak thing. Haven’t used it before.

Last time I looked at claws (a few years ago) I couldn’t get it to connect to 
Exchange/Office365 but perhaps I should take another look if it’s changed since 
then?
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Installing birdtray on Beowulf

2020-05-05 Thread Dimitris via Dng
On 5/5/20 12:11 PM, wirelessduck--- via Dng wrote:
> Last time I looked at claws (a few years ago) I couldn’t get it to connect to 
> Exchange/Office365 but perhaps I should take another look if it’s changed 
> since then?

evolution can connect to exchange, and iirc, includes a tray icon by
default..



signature.asc
Description: OpenPGP digital signature
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Installing birdtray on Beowulf

2020-05-05 Thread wirelessduck--- via Dng


> On 5 May 2020, at 19:17, Dimitris via Dng  wrote:
> 
> On 5/5/20 12:11 PM, wirelessduck--- via Dng wrote:
>> Last time I looked at claws (a few years ago) I couldn’t get it to connect 
>> to Exchange/Office365 but perhaps I should take another look if it’s changed 
>> since then?
> 
> evolution can connect to exchange, and iirc, includes a tray icon by
> default..

Has it progressed past Exchange 2010/2013 support? I might take another look at 
that too but I’m not hopeful.

I do like the dark mode theme in thunderbird which I never had last time I used 
Evolution.

Thanks
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Current state of VPN software ?

2020-05-05 Thread Chris Dos
On 4/8/20 2:14 PM, Simon Hobson wrote:
> It's been a while since I last did anything with VPNs on Linux, and I recall 
> there being 3 options, some of which were "less well supported" than others. 
> I'm looking to setup a site-site tunnel so I can remotely access stuff at 
> mum's (she's in isolation because of this Covid 19 stuff) and using remote 
> desktop control, connect her Mac to a video call.
>
> So what's the state of play in the VPN on Linux world - both ends would be 
> running Devuan (one end an AMD64 VM, the other end rPi) ? Last thing I used 
> was OpenVPN which AIUI is completely non-interoperable with anything else, 
> while FreeSwan and OpenSwan were having a bun fight.
>
> Simon
>

A little late, but I used to use a SSH script to create a full VPN connection
between my laptop and work sites. I just created a script for each network I
wanted to connect to. You'll need to set up SSH keys first though to the root
user (or you can modify the script to use sudo on the remote end). Script I
used to use:

#!/bin/bash

PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin"

HOST=remotehost.somedomain.com
REMOTETUNIP="172.16.200.2"
LOCALTUNIP="172.16.200.1"
REMOTENET="192.168.1.0"
REMOTENETMASK="255.255.255.0"

if [ "$1" != "start" -a "$1" != "stop" ]
then
    echo "Syntax: $0  "
    exit 1
fi

if [ "$1" = "start" ]
then
    # Find next available local TUN device
    TUNNUMBER=0
    FINDTUN="false"
    while [ "$FINDTUN" = "false" ]
    do
        ifconfig -a | grep -v tunl | grep tun$TUNNUMBER > /dev/null
        if [ "$?" != "1" ]
        then
            let TUNNUMBER=$TUNNUMBER+1
        else
            FINDTUN="true"
        fi
    done
   
    sudo ssh -f -C -w any:any root@$HOST true
    ssh root@$HOST "ifconfig tun0 $REMOTETUNIP pointopoint $LOCALTUNIP"
    ssh root@$HOST "iptables -A INPUT -i tun+ -j ACCEPT"
    ssh root@$HOST "iptables -A FORWARD -i tun+ -j ACCEPT"
    ssh root@$HOST 'echo 1 > /proc/sys/net/ipv4/ip_forward'
    sleep 3
    sudo ifconfig tun$TUNNUMBER $LOCALTUNIP pointopoint $REMOTETUNIP
    sudo route add -net $REMOTENET netmask $REMOTENETMASK gw $LOCALTUNIP
tun$TUNNUMBER
    echo "Tunnel has been set up"

fi

if [ "$1" = "stop" ]
then
    sudo kill `ps ax | grep "any:any root@$HOST true" | grep -v grep | cut -c
1-5` > /dev/null
    ssh root@$HOST 'kill `ps ax | grep "sshd: root@notty" | grep -v grep | cut
-c 1-5`'
    ssh root@$HOST 'ifconfig tun0 down'
fi


I currently use OpenVPN tunnels, but oh my word, OpenVPN is a bear to get set
up properly.  Probably today, if I was going to do it again, WireGuard might
be the next easiest solution other than using SSH.

    Chris
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Current state of VPN software ?

2020-05-05 Thread Steve Litt
How did the SSH solution work out for you, performance wise?

Why did you move from the SSH method to OpenVPN?

Thanks,

SteveT

On Tue, 5 May 2020 06:15:45 -0600
Chris Dos  wrote:

> On 4/8/20 2:14 PM, Simon Hobson wrote:
> > It's been a while since I last did anything with VPNs on Linux, and
> > I recall there being 3 options, some of which were "less well
> > supported" than others. I'm looking to setup a site-site tunnel so
> > I can remotely access stuff at mum's (she's in isolation because of
> > this Covid 19 stuff) and using remote desktop control, connect her
> > Mac to a video call.
> >
> > So what's the state of play in the VPN on Linux world - both ends
> > would be running Devuan (one end an AMD64 VM, the other end rPi) ?
> > Last thing I used was OpenVPN which AIUI is completely
> > non-interoperable with anything else, while FreeSwan and OpenSwan
> > were having a bun fight.
> >
> > Simon
> >  
> 
> A little late, but I used to use a SSH script to create a full VPN
> connection between my laptop and work sites. I just created a script
> for each network I wanted to connect to. You'll need to set up SSH
> keys first though to the root user (or you can modify the script to
> use sudo on the remote end). Script I used to use:
> 
> #!/bin/bash
> 
> PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin"
> 
> HOST=remotehost.somedomain.com
> REMOTETUNIP="172.16.200.2"
> LOCALTUNIP="172.16.200.1"
> REMOTENET="192.168.1.0"
> REMOTENETMASK="255.255.255.0"
> 
> if [ "$1" != "start" -a "$1" != "stop" ]
> then
>     echo "Syntax: $0  "
>     exit 1
> fi
> 
> if [ "$1" = "start" ]
> then
>     # Find next available local TUN device
>     TUNNUMBER=0
>     FINDTUN="false"
>     while [ "$FINDTUN" = "false" ]
>     do
>         ifconfig -a | grep -v tunl | grep tun$TUNNUMBER > /dev/null
>         if [ "$?" != "1" ]
>         then
>             let TUNNUMBER=$TUNNUMBER+1
>         else
>             FINDTUN="true"
>         fi
>     done
>    
>     sudo ssh -f -C -w any:any root@$HOST true
>     ssh root@$HOST "ifconfig tun0 $REMOTETUNIP pointopoint
> $LOCALTUNIP" ssh root@$HOST "iptables -A INPUT -i tun+ -j ACCEPT"
>     ssh root@$HOST "iptables -A FORWARD -i tun+ -j ACCEPT"
>     ssh root@$HOST 'echo 1 > /proc/sys/net/ipv4/ip_forward'
>     sleep 3
>     sudo ifconfig tun$TUNNUMBER $LOCALTUNIP pointopoint $REMOTETUNIP
>     sudo route add -net $REMOTENET netmask $REMOTENETMASK gw
> $LOCALTUNIP tun$TUNNUMBER
>     echo "Tunnel has been set up"
> 
> fi
> 
> if [ "$1" = "stop" ]
> then
>     sudo kill `ps ax | grep "any:any root@$HOST true" | grep -v grep
> | cut -c 1-5` > /dev/null
>     ssh root@$HOST 'kill `ps ax | grep "sshd: root@notty" | grep -v
> grep | cut -c 1-5`'
>     ssh root@$HOST 'ifconfig tun0 down'
> fi
> 
> 
> I currently use OpenVPN tunnels, but oh my word, OpenVPN is a bear to
> get set up properly.  Probably today, if I was going to do it again,
> WireGuard might be the next easiest solution other than using SSH.
> 
>     Chris



-- 
SteveT

Steve Litt 
May 2020 featured book: Troubleshooting Techniques
 of the Successful Technologist
http://www.troubleshooters.com/techniques
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


[DNG] Upto date copy of QGIS ...

2020-05-05 Thread Jim Jackson

Hi, I'm seeking advice.
I need a more upto date version of QGIS, geographical information system,
than is in ASCII - I need a version 3.

On the QGIS downloads site ...

 https://qgis.org/en/site/forusers/alldownloads.html#linux

It gives info for adding to sources.list for debian/ubuntu systems. Is 
there any chance any of those given would work with Devuan?

Does anyone know what version of QGIS is in Beowulf? I may "risk" an 
upgrade.

cheers
Jim


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Upto date copy of QGIS ...

2020-05-05 Thread Gastón via Dng
On Tue, May 05, 2020 at 10:32:34PM +0100, Jim Jackson wrote:
> 
> Hi, I'm seeking advice.
> I need a more upto date version of QGIS, geographical information system,
> than is in ASCII - I need a version 3.
> 
> On the QGIS downloads site ...
> 
>  https://qgis.org/en/site/forusers/alldownloads.html#linux
> 
> It gives info for adding to sources.list for debian/ubuntu systems. Is 
> there any chance any of those given would work with Devuan?
> 
> Does anyone know what version of QGIS is in Beowulf? I may "risk" an 
> upgrade.

qgis:
3.10.5+dfsg-1~bpo10+1
http://deb.devuan.org/merged beowulf-backports/main amd64 Packages

> cheers
> Jim
> 
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] Installing birdtray on Beowulf

2020-05-05 Thread wirelessduck--- via Dng

> evolution can connect to exchange, and iirc, includes a tray icon by
> default..

Evolution does indeed connect to Office365 using the docs at 
https://wiki.gnome.org/Apps/Evolution/EWS/OAuth2

Unfortunately it doesn’t have a tray indicator, and the evolution-indicator 
package never made it into Debian.

I will still give it a go for a while to see how it compares to thunderbird.___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng