Re: [CentOS] Trying to get bride network on CentOS 7 working with virt-manager

2020-06-09 Thread Jerry Geis
> virsh iface-bridge eth0 br0 --no-stp

Thanks -  This is working now.
Jerry
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] firewalld / iptables / nftables

2020-06-09 Thread Leon Fauster via CentOS
Despite that the migration of our applications comes with a significant 
workload. It seems that also every aspect of common services had changed 
with EL8.


In EL8 firewalld uses nftables as backend. I wonder why iptables does 
not list any rules while also configured to use nftables as backend.


# iptables -V
iptables v1.8.2 (nf_tables)


# firewall-cmd --list-all |egrep -o '22|ssh'
ssh

# nft list ruleset | egrep -o '22|ssh'
ssh

# iptables -L -n | egrep -o '22|ssh'


Any hints?

--
Leon
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] firewalld / iptables / nftables

2020-06-09 Thread Jonathan Billings
On Tue, Jun 09, 2020 at 02:19:17PM +0200, Leon Fauster via CentOS wrote:
>
> Despite that the migration of our applications comes with a significant
> workload. It seems that also every aspect of common services had changed
> with EL8.
> 
> In EL8 firewalld uses nftables as backend. I wonder why iptables does not
> list any rules while also configured to use nftables as backend.
> 
> # iptables -V
> iptables v1.8.2 (nf_tables)
> 
> 
> # firewall-cmd --list-all |egrep -o '22|ssh'
> ssh
> 
> # nft list ruleset | egrep -o '22|ssh'
> ssh
> 
> # iptables -L -n | egrep -o '22|ssh'
> 
> 
> Any hints?

'iptables' and 'nftables' are competing technologies.  In CentOS 8,
firewalld's backend was switched from iptables to nftables.  So it
would be expected that the iptables command wouldn't have any rules
defined, it isn't being used by firewalld.

-- 
Jonathan Billings 
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] firewalld / iptables / nftables

2020-06-09 Thread Stephen John Smoogen
On Tue, 9 Jun 2020 at 08:19, Leon Fauster via CentOS 
wrote:

> Despite that the migration of our applications comes with a significant
> workload. It seems that also every aspect of common services had changed
> with EL8.
>
> In EL8 firewalld uses nftables as backend. I wonder why iptables does
> not list any rules while also configured to use nftables as backend.
>
> # iptables -V
> iptables v1.8.2 (nf_tables)
>
>
> # firewall-cmd --list-all |egrep -o '22|ssh'
> ssh
>
>
Maybe it's only defined to work for ipv6? Shouldn't there be 2 entries for
ssh?


> # nft list ruleset | egrep -o '22|ssh'
> ssh
>
> # iptables -L -n | egrep -o '22|ssh'
> 
>
> Any hints?
>
> --
> Leon
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>


-- 
Stephen J Smoogen.
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] firewalld / iptables / nftables

2020-06-09 Thread Chris Adams
Once upon a time, Jonathan Billings  said:
> 'iptables' and 'nftables' are competing technologies.  In CentOS 8,
> firewalld's backend was switched from iptables to nftables.  So it
> would be expected that the iptables command wouldn't have any rules
> defined, it isn't being used by firewalld.

That is partially incorrect.  While iptables and nftables are two
different in-kernel firewalls, the iptables CLI command is now a wrapper
that can translate to the nftables backend for compatibility.

However, it can only manage a subset of nftables information (basically
what it can create in the iptables back-compat mode).  The nftables
rules created by firewalld don't fall into that category, so can't be
viewed by iptables.

Instead, use the nft command, like "nft list ruleset" to see a dump of
all current rules.

-- 
Chris Adams 
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] firewalld / iptables / nftables

2020-06-09 Thread Leon Fauster via CentOS

Am 09.06.20 um 15:27 schrieb Chris Adams:

Once upon a time, Jonathan Billings  said:

'iptables' and 'nftables' are competing technologies.  In CentOS 8,
firewalld's backend was switched from iptables to nftables.  So it
would be expected that the iptables command wouldn't have any rules
defined, it isn't being used by firewalld.


That is partially incorrect.  While iptables and nftables are two
different in-kernel firewalls, the iptables CLI command is now a wrapper
that can translate to the nftables backend for compatibility.

However, it can only manage a subset of nftables information (basically
what it can create in the iptables back-compat mode).  The nftables
rules created by firewalld don't fall into that category, so can't be
viewed by iptables.

Instead, use the nft command, like "nft list ruleset" to see a dump of
all current rules.


This sounds reasonable albeit it raises another question. How does the
netfilter workflow looks like when firewalld generated rules and 
iptables generated rules (coming from migration activities) are 
processed. How are both categories of rules interwoven? I assume taking

only the nftables path will be the cleanest and preferred one ... but
I can not avoid running some iptables tests.

--
Thanks,
Leon

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Accounting package recommendations

2020-06-09 Thread Rudi Ahlers
Hi,

I am looking for an offline accounting package recommendation, please.
I enjoyed using Xero accounting, but need something that's offline,
and where the data remains my property. Having used Quickbooks on
Windows in the past, I am looking for something similar.

Any recommendations?

-- 
Kind Regards
Rudi Ahlers
Website: http://www.rudiahlers.co.za
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Brian Reichert
On Tue, Jun 09, 2020 at 07:21:40PM +0200, Rudi Ahlers wrote:
> Hi,
> 
> I am looking for an offline accounting package recommendation, please.
> I enjoyed using Xero accounting, but need something that's offline,
> and where the data remains my property. Having used Quickbooks on
> Windows in the past, I am looking for something similar.
> 
> Any recommendations?

I have not explored this yet, but intend to do so:

https://www.gnucash.org/

> 
> -- 
> Kind Regards
> Rudi Ahlers
> Website: http://www.rudiahlers.co.za
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos

-- 
Brian Reichert  
BSD admin/developer at large
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Switching between keyboards in CentOS 7 using the MATE desktop

2020-06-09 Thread H
I switch between three keyboards, two western ones and Chinese Pinyin entry. I 
have fcitx installed to switch between Pinyin and standard entry and use the 
keyboard switching in MATE to switch between keyboards.

While I originally believed there was a bug in fcitx since switching between 
entry fields in firefox, chromium and thunderbird using the non-default 
keyboard always switched me back to the default keyboard, this even when 
hitting ENTER in a Chromium entryfield, I now believe the problem might lie in 
MATE or CentOS. There is no problem remembering whether a particular program is 
configured by me to use Pinyin input or not so that seems to work fine.

Can anyone else confirm this issue? Might it be a configuration issue on my 
end? By the way, I use CTRL-SHIFT+RIGHT-SHIFT to switch between keyboards.


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Hugh E Cruickshank
From: Rudi Ahlers Sent: June 9, 2020 10:22
> 
> I am looking for an offline accounting package recommendation, please.
> I enjoyed using Xero accounting, but need something that's offline,
> and where the data remains my property. Having used Quickbooks on
> Windows in the past, I am looking for something similar.

GnuCash has been working fine for me for several years.

HTH

Regards, Hugh

-- 
Hugh E Cruickshank, Forward Software, www.forward-software.com

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Fred Erickson
On Tue, 9 Jun 2020 10:26:46 -0700
"Hugh E Cruickshank"  wrote:

> From: Rudi Ahlers Sent: June 9, 2020 10:22
> > 
> > I am looking for an offline accounting package recommendation,
> > please. I enjoyed using Xero accounting, but need something that's
> > offline, and where the data remains my property. Having used
> > Quickbooks on Windows in the past, I am looking for something
> > similar.  
> 
> GnuCash has been working fine for me for several years.
> 
> HTH
> 
> Regards, Hugh
> 
+1 for GnuCash
Fred
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Fred Smith
On Tue, Jun 09, 2020 at 09:36:49AM -0800, Fred Erickson wrote:
> On Tue, 9 Jun 2020 10:26:46 -0700
> "Hugh E Cruickshank"  wrote:
> 
> > From: Rudi Ahlers Sent: June 9, 2020 10:22
> > > 
> > > I am looking for an offline accounting package recommendation,
> > > please. I enjoyed using Xero accounting, but need something that's
> > > offline, and where the data remains my property. Having used
> > > Quickbooks on Windows in the past, I am looking for something
> > > similar.  
> > 
> > GnuCash has been working fine for me for several years.
> > 
> > HTH
> > 
> > Regards, Hugh
> > 
> +1 for GnuCash
> Fred

Yeah, GNUCash is a good accounting tool. my wife uses it for our personal
fnances, investment accounts, etc.

however, it is a double-entry accounting system (like professional
accounts  use, whether electronic or on paper), and may require
you to commit some effort to learn the ins and outs thereof.

Fred
(Not the same Fred as above)

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
  "For him who is able to keep you from falling and to present you before his 
 glorious presence without fault and with great joy--to the only God our Savior
 be glory, majesty, power and authority, through Jesus Christ our Lord, before
 all ages, now and forevermore! Amen."
- Jude 1:24,25 (niv) -
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Eddie G. O'Connor
Another option is to go toi this site and type in what you're looking 
for? and then go through the results that shoiw up, there's even a way 
to get specific, where you can specify whether you want an app that runs 
on Windows MacOS or Linux!!



AlternativeTo - Find Alternatives To Any Program 





Just my two cents on the matter! (Get it?...Quickbooks, two cents?...LOL!)




EGO II




On 6/9/20 4:05 PM, Fred Smith wrote:

On Tue, Jun 09, 2020 at 09:36:49AM -0800, Fred Erickson wrote:

On Tue, 9 Jun 2020 10:26:46 -0700
"Hugh E Cruickshank"  wrote:


From: Rudi Ahlers Sent: June 9, 2020 10:22

I am looking for an offline accounting package recommendation,
please. I enjoyed using Xero accounting, but need something that's
offline, and where the data remains my property. Having used
Quickbooks on Windows in the past, I am looking for something
similar.

GnuCash has been working fine for me for several years.

HTH

Regards, Hugh


+1 for GnuCash
Fred

Yeah, GNUCash is a good accounting tool. my wife uses it for our personal
fnances, investment accounts, etc.

however, it is a double-entry accounting system (like professional
accounts  use, whether electronic or on paper), and may require
you to commit some effort to learn the ins and outs thereof.

Fred
(Not the same Fred as above)


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Accounting package recommendations

2020-06-09 Thread Gianluca Cecchi
On Tue, Jun 9, 2020 at 7:22 PM Rudi Ahlers  wrote:

> Hi,
>
> I am looking for an offline accounting package recommendation, please.
> I enjoyed using Xero accounting, but need something that's offline,
> and where the data remains my property. Having used Quickbooks on
> Windows in the past, I am looking for something similar.
>
> Any recommendations?
>
> --
> Kind Regards
> Rudi Ahlers
> Website: http://www.rudiahlers.co.za
>
>
In the past (more than 10 years ago...) I had to work with Sql Ledger and
in its forum/mailing list often Quickbooks was cited.
I enjoyed it because of being GPL, using perl and PostgreSQL as a
background database.
It seems a still developed piece of software. Here the home page:
https://www.sql-ledger.com/
I don't know if it is too much for your needs. It offers also support in
case of need.
One useful page to compare accounting software functionalities offered
could be this one too:
https://en.wikipedia.org/wiki/Comparison_of_accounting_software

HIH,
Gianluca
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Disabling fips mode in Centos 7.6

2020-06-09 Thread Akshar Kanak
Dear team
if i need to disable FIPS on Centos 7.6 , then setting fips=0 in kernel
parameter should be more then sufficient .
Why should we remove the dracut-fips package  and regenerate the
initramfs?

Thanks and regards
Akshar
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] yum/dnf diff

2020-06-09 Thread Kenneth Porter
--On Monday, June 08, 2020 5:00 PM +0100 Paddy Doyle  
wrote:



It won't track /var/named/* though.


I love etckeeper enough that I started keeping /var/named under git, as 
well.


I do disable etckeeper's nightly commit as I don't want it combining 
unrelated changes into a single commit if I forget to commit. I have it set 
to block updates if there's an uncommitted change so I'll fix things when 
that happens.


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos