[DNG] EFI Installation of Beowulf?

2021-02-22 Thread Jonathan Moebius
Dear all, I have switched to a new computer and tried to install Beowulf 3.1.0 in a pure-EFI setting. I have tried installing on a SATA SSD as well as a a m.2 PCIe SSD. Originally, the plan was a dual boot install with Win10 being installed first, however after several failed attempts, I

Re: [DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Curtis Maurand via Dng
I will definitely run the mysql upgrade first. I’m assuming i should do the mysql upgrade after I update the package lists with the beowulf lists. Sent from my iPhone > On Feb 22, 2021, at 5:00 PM, Hector Gonzalez Jaime via Dng > wrote: > >  >> On 2/22/21 3:30 PM, Antony Stone wrote: >>>

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Olaf Meeuwissen via Dng
Hi Federico, Federico Fanton via Dng writes: > On 22/02/21 16:29, Steve Litt wrote: > >> On a Devuan machine, how do I turn off the firewall entirely, so all >> ports are accessible? I need to do this for experimentation, not as a >> permanent thing. > > To completely reset the firewall, see

Re: [DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Hector Gonzalez Jaime via Dng
On 2/22/21 3:30 PM, Antony Stone wrote: On Monday 22 February 2021 at 22:26:17, Hector Gonzalez Jaime via Dng wrote: I've seen your original problem frequently, mysql and mariadb both are turned off during upgrades, and then apt-get goes on to install other packages, which might require a

Re: [DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Antony Stone
On Monday 22 February 2021 at 22:26:17, Hector Gonzalez Jaime via Dng wrote: > I've seen your original problem frequently, mysql and mariadb both are > turned off during upgrades, and then apt-get goes on to install other > packages, which might require a database to be running and have no >

Re: [DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Hector Gonzalez Jaime via Dng
On 2/22/21 1:59 PM, Curtis Maurand via Dng wrote: On 2/22/21 4:26 AM, Pontus Goffe via Dng wrote: Putting this back on list. I still think you are doing it wrong, after changing your sources.list(s) you should, at least apt-get update apt-get upgrade apt-get dist-upgrade Ah. you have an

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Steve Litt
It turns out that my Devuan VM guest didn't even have iptables installed, so all this time I've been dealing with a no-firewall guest, which is what I wanted for experimentation. Once I've got everything working the way I want, I'll install iptables on the Devuan VM guest and solve any problems

Re: [DNG] Assigning a specific subnet and address to a Devuan Beowulf Qemu guest

2021-02-22 Thread Steve Litt
Thanks Ralph! I don't think you can imagine how helpful your text explanation was. Qemu documentation is a world of assumptions about the user, conflicting docs, anecdotal solutions, ambiguity, and pretty much anything except how the whole thing's put together. Your documentation (quoted below)

Re: [DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Curtis Maurand via Dng
On 2/22/21 4:26 AM, Pontus Goffe via Dng wrote: Putting this back on list. I still think you are doing it wrong, after changing your sources.list(s) you should, at least apt-get update apt-get upgrade apt-get dist-upgrade Ah. you have an extra step.  The following is from the website

Re: [DNG] How to turn off the firewall

2021-02-22 Thread tito via Dng
On Mon, 22 Feb 2021 10:29:50 -0500 Steve Litt wrote: > Hi all, > > I could probably web search this, but there's s much contradictory > stuff on the web, and I've been doing nothing but web searching for a > week now, and probably one of you knows it off the top of your head. > > On a

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Gabe Stanton via Dng
On Mon, 2021-02-22 at 09:22 -1000, Joel Roth via Dng wrote: > I use this to remove all rules: > > iptables -P INPUT ACCEPT > iptables -P FORWARD ACCEPT > iptables -P OUTPUT ACCEPT > iptables -t nat -F > iptables -t mangle -F > iptables -F > iptables -X > > I can't speak for the provenance, but

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Joel Roth via Dng
Hi Steve, I use this to remove all rules: iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -t nat -F iptables -t mangle -F iptables -F iptables -X I can't speak for the provenance, but afterwards iptables -n -L, shows ACCEPT for INPUT, OUTPUT and FORWARD,

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Florian Zieboll via Dng
On Mon, 22 Feb 2021 10:29:50 -0500 Steve Litt wrote: > Hi all, > > I could probably web search this, but there's s much contradictory > stuff on the web, and I've been doing nothing but web searching for a > week now, and probably one of you knows it off the top of your head. > > On a

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Pontus Goffe via Dng
Den 2021-02-22 kl. 16:39, skrev Federico Fanton via Dng: To completely reset the firewall, see this script: I dont arge with its function, but as I understood it (I have not yet transitioned myself) iptables is no longer the default tool. //PG

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Antony Stone
On Monday 22 February 2021 at 17:26:21, Federico Fanton via Dng wrote: > On 22/02/21 17:19, Antony Stone wrote: > >> for table in "${!chains[@]}"; do > >> > >> echo "${chains[$table]}" | tr : $"\n" | while IFS= read -r; do > >> > >> iptables -t "$table" -P "$REPLY" ACCEPT

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Federico Fanton via Dng
On 22/02/21 17:19, Antony Stone wrote: for table in "${!chains[@]}"; do echo "${chains[$table]}" | tr : $"\n" | while IFS= read -r; do iptables -t "$table" -P "$REPLY" ACCEPT done iptables -t "$table" -F iptables -t "$table" -X done I do not understand the

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Antony Stone
On Monday 22 February 2021 at 16:39:12, Federico Fanton via Dng wrote: > On 22/02/21 16:29, Steve Litt wrote: > > On a Devuan machine, how do I turn off the firewall entirely, so all > > ports are accessible? I need to do this for experimentation, not as a > > permanent thing. > > To completely

Re: [DNG] How to turn off the firewall

2021-02-22 Thread Federico Fanton via Dng
On 22/02/21 16:29, Steve Litt wrote: On a Devuan machine, how do I turn off the firewall entirely, so all ports are accessible? I need to do this for experimentation, not as a permanent thing. To completely reset the firewall, see this script: #!/usr/bin/env bash set -eu declare -A chains=(

[DNG] How to turn off the firewall

2021-02-22 Thread Steve Litt
Hi all, I could probably web search this, but there's s much contradictory stuff on the web, and I've been doing nothing but web searching for a week now, and probably one of you knows it off the top of your head. On a Devuan machine, how do I turn off the firewall entirely, so all ports are

[DNG] Fwd: Distribution upgrade issue

2021-02-22 Thread Pontus Goffe via Dng
Putting this back on list. I still think you are doing it wrong, after changing your sources.list(s) you should, at least apt-get update apt-get upgrade apt-get dist-upgrade I dont mean that this is your problem, but it could be. //PG Vidarebefordrat meddelande Ämne: