[DNG] DSA Jessie 20-26 Mar
DSA patches for Jessie in Devuan repositories: Tue, 20 Mar 2018 21:23:38 +0100 [SECURITY] [DSA 4146-1] plexus-utils security update Confirmed Fri, 23 Mar 2018 19:46:51 +0100 [SECURITY] [DSA 4150-1] icu security update Confirmed Thu, 22 Mar 2018 23:17:38 +0100 [SECURITY] [DSA 4149-1] plexus-utils2 security update Confirmed Thu, 22 Mar 2018 23:08:29 +0100 [SECURITY] [DSA 4148-1] kamailio security update Confirmed Wed, 21 Mar 2018 14:27:39 + [SECURITY] [DSA 4147-1] polarssl security update Confirmed ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
[DNG] DSA Ascii 20-26 Mar
DSA patches for Ascii in Devaun repositories: Tue, 20 Mar 2018 21:23:38 +0100 [SECURITY] [DSA 4146-1] plexus-utils security update Confirmed Fri, 23 Mar 2018 19:46:51 +0100 [SECURITY] [DSA 4150-1] icu security update Confirmed Thu, 22 Mar 2018 23:08:29 +0100 [SECURITY] [DSA 4148-1] kamailio security update Confirmed ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
[DNG] iptables-persistent
I am booting Devuan ASCII on a VM. I have had some issues with getting an IP address for the VM on boot. I had previously been loading iptables like this: /etc/network/interfaces # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp post-up iptables-restore < /etc/iptables.up.rules Two questions. Is it better like this or should I use iptables-persistent ? Secondly it appears that iptables are getting loaded before the dhclient transaction has completed and the interface then does not get the IP information from the upstream server. Any suggestions on a table rule to allow this ? The system hangs at: Configuring network interfaces...ifup: waiting for lock on /run/network/ifstate.eth0 I have some table rules like this which I thought would allow the transaction to continue but that doesn't seem to work: *filter :INPUT DROP [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :LOGGING - [0:0] -A INPUT -m state --state ESTABLISHED -j ACCEPT -A INPUT -m state --state RELATED -j ACCEPT -A INPUT -p tcp -m tcp --tcp-flags ACK ACK -j ACCEPT # Allow DHCP -A INPUT -i eth0 -p udp --dport 67:68 --sport 67:68 -j ACCEPT As I only have a single web based terminal to work from on boot I can't run a tcpdump to see what is happening with packets !! Any suggestions appreciated. B. Rgds John signature.asc Description: OpenPGP digital signature ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Does devuan install from USB really need a CDROM?
Hello Erik & Alessandro I faced similar problem but not in the system installation. 4-6 months ago I installed Devuan 1.0 DVD i386 and amd64 .iso. And after the installation complete i find out that network-manager, modemmanager are not installed by default(they are included in the DVD but the debian-installer did not install them). I talked to fsmithred about this and he told me that i can use apt-cdrom to mount the DVD as cdrom. He told me its working, so i tried it few days later, and its half working, because after mounting the iso to directory and apt-cdrom to that directory, and "apt-get install network-manager" it read the package and its dependencies and ask if you want to install it type (Y)es to install it. This where the error appear: /media/cdrom/: Please insert the disc labeled: 'Debian GNU/Linux 2.0.0-beta _Ascii_ - Official i386 DVD Binary-1 20180213-21:10' in the drive '/media/cdrom/' and press [Enter]. If you noticed to this part of the error: (Please insert the disc labeled in the drive '/media/cdrom/' and press [Enter].) so I mount the devuan_jessie_1.0.0_i386_DVD.iso to /media/cdrom and it works. apt-get installed network-manager + its dependencies Erik!, you get this error when you are installing devuan from 2.0 DVD?. Or after the installation complete successfully, and you want to install some package from the DVD after mounting it? If it the second, the solution is above (mouting .iso to /media/cdrom), and if it the first one, maybe after the installer detect the hardware and want to install the packages required for your computer/laptop, maybe their is a package that are needed but the installer doesn't configured to install it by default(like network-manager in 1.0 DVD, included in the DVD but not configured to be installed so you have to install it from the DVD manually or install it from the internet after the installation complete) Mubarak ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
[DNG] Avoiding CDROM issues during USB flash install [Was: Re: Does devuan install from USB really need a CDROM?
On 26.03.18 09:10, muba...@openmailbox.org wrote: > Erik!, you get this error when you are installing devuan from 2.0 > DVD?. Or after the installation complete successfully, and you want to > install some package from the DVD after mounting it? Hi Mubarak, My installation was from USB flash. As advised on this thread, the netinst iso is a very good way to go. The CDROM issues vanished once the iso was copied correctly, and my Ascii install now works fine. I just have to find a way to change the boot order in the Udoo X86 bios, as installing grub on /dev/sda didn't put it on the first disk in the boot sequence, and the bios is not trying the second, making for an irritating boot at the moment. Perhaps I can alternatively read up on grub, and install another copy of it from the command line. Erik ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] iptables-persistent
John Crisp wrote on 26/03/18 19:37: I am booting Devuan ASCII on a VM. I have had some issues with getting an IP address for the VM on boot. I had previously been loading iptables like this: /etc/network/interfaces # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp post-up iptables-restore < /etc/iptables.up.rules Two questions. Is it better like this or should I use iptables-persistent ? I would suggest that this approach has the advantage of raising the firewall immediately with bringing up the interface. When using iptables-persistent, it would be brought up with a delay and after IP assignment, which leaves a small temporal window of no firewall. On the other hand, that window is only of concern when the system has some early (earlier) staring services that needs intrusion protection. So in most cases it's of no difference. Secondly it appears that iptables are getting loaded before the dhclient transaction has completed and the interface then does not get the IP information from the upstream server. Any suggestions on a table rule to allow this ? The system hangs at: Configuring network interfaces...ifup: waiting for lock on /run/network/ifstate.eth0 I have some table rules like this which I thought would allow the transaction to continue but that doesn't seem to work: *filter :INPUT DROP [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :LOGGING - [0:0] -A INPUT -m state --state ESTABLISHED -j ACCEPT -A INPUT -m state --state RELATED -j ACCEPT -A INPUT -p tcp -m tcp --tcp-flags ACK ACK -j ACCEPT # Allow DHCP -A INPUT -i eth0 -p udp --dport 67:68 --sport 67:68 -j ACCEPT As I only have a single web based terminal to work from on boot I can't run a tcpdump to see what is happening with packets !! Any suggestions appreciated. I think you'll also need the "-A INPUT -i lo -j ACCEPT" rule, and possibly you should allow some/all icmp packets as well. Ralph. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] broken PDF display
On Sat, 24 Mar 2018 10:09:02 + KatolaZ wrote: > Just to say: no problems over here with either zathura, xpdf, or mupdf > on ASCII. But my pdf files are not that fancy, TBH :) Here under Jessie, mupdf displays correctly, but xpdf does not. Cheers, Ron. -- La révolution, c’est faire tout de suite avec coups, plaies, bosses et sang, ce qui de toute façon serait arrivé tout seul par la force des choses. -- Henri Vincenot -- http://www.olgiati-in-paraguay.org -- ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] broken PDF display
for me, in Jessie, xpdf performs perfectly. On Mon, Mar 26, 2018 at 1:35 PM, Renaud (Ron) OLGIATI < ren...@olgiati-in-paraguay.org> wrote: > On Sat, 24 Mar 2018 10:09:02 + > KatolaZ wrote: > > > Just to say: no problems over here with either zathura, xpdf, or mupdf > > on ASCII. But my pdf files are not that fancy, TBH :) > > Here under Jessie, mupdf displays correctly, but xpdf does not. > > Cheers, > > Ron. > -- > La révolution, c’est faire tout de suite avec coups, > plaies, bosses et sang, ce qui de toute façon >serait arrivé tout seul par la force des choses. > -- Henri Vincenot > >-- http://www.olgiati-in-paraguay.org -- > > ___ > Dng mailing list > Dng@lists.dyne.org > https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng > ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] broken PDF display
On Mon, 26 Mar 2018 07:35:40 -0400 "Renaud (Ron) OLGIATI" wrote: > On Sat, 24 Mar 2018 10:09:02 + > KatolaZ wrote: > > > Just to say: no problems over here with either zathura, xpdf, or > > mupdf on ASCII. But my pdf files are not that fancy, TBH :) > > Here under Jessie, mupdf displays correctly, but xpdf does not. I use mupdf as my daily driver. Only disadvantage is no way to print directly from mupdf. For that, I often use gv. SteveT Steve Litt April 2018 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
Re: [DNG] maxima/wxmaxiam in ascii
Hi, On 23/03/18 16:42, KatolaZ wrote: On Fri, Mar 23, 2018 at 04:27:39PM +0100, Dr. Nikolaus Klepp wrote: I have an interesting problem with maxima/wxmaxima on ascii: wxmaxima and maxima can solve this equation: solve([x²+y²=r², (x-a)²+(y)²=p²],[x,y]); I get the correct solution in both maxima and wxmaxima but this equation is solved in maxima, but not in wxmaxima (gives an empty solution): solve([x²+y²=r², (x-a)²+(y-b)²=p²],[x,y]); Could somebody please try to replicate this result? ...I get an empty solution for the second equation in*both* maxima and wxmaxima. My2Cents KatolaZ i get an empty solution in maxima: (%i1) solve([x^²+y^²=r^², (x-a)^²+y^²=p^²],[x,y]); (%o1) [] Aitor. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
[DNG] Amprolla3 in devuan derivatives
Hi all, As i announced in the irc channel, i started using amprolla3 in gnuinos: http://packages.gnuinos.org/ You can test the repository adding the following lines to your sources.list: deb http://packages.gnuinos.org/merged/ jessie main deb-src http://packages.gnuinos.org/merged/ jessie main These are my first steps with amprolla. Since i have not root permissions in my shared server, i have had to configure it via htaccess instead of apache or nginx. I'll try to document the procedure in dev1galaxy. You can find the configuration of amprolla3 for gnuinos in gitlab: https://git.devuan.org/aitor_czr/amprolla/tree/master Cheers, Aitor. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng