On 09/21/2017 11:30 PM, Cristian Sava wrote:
Why do I need to specify this long list of parameters for basic things?
If you're doing this for virtualization purposes (as opposed to creating
a network bridge with multiple interfaces), the simpler answer is:
virsh iface-bridge eth0 br0 --n
Hello,
I cannot remember, but there is a simple way to say to grub2-mkconfig
to find other /root
Right now, it find the right /boot,
but it miss the roots
For example, it find in my grub.cfg
root=/dev/mapper/VolGrpSys_DK1-root
while it should have seen:
/dev/mapper/VolGrpSys_DK3-root
Thank for
On Fri, Sep 22, 2017 at 12:55:34AM +0200, Peter Boy wrote:
> My issue is: If my instances are all executing as the same user I get
> sometimes an „Too many open files“ error message and the instance
> stops executing. In RHEL it helps to define separate users per
> instance. The other instances wer
On Thu, 2017-09-21 at 23:54 -0700, Samuel Sieb wrote:
> On 09/21/2017 11:30 PM, Cristian Sava wrote:
> > To be more precise, I expect something really simple like:
> >nmcli tobridge ifcfg-eth0
> > nothing more, instead of the two complicated lines, because all
> > configuration is already in if
On 22 Sep 2017 3:57 am, "Bill Shirley" wrote:
Have you looked at overriding it in the systemd unit file?
I use this for mariadb (/etc/systemd/system/mariadb.service):
.include /usr/lib/systemd/system/mariadb.service
[Service]
#LimitNOFILE=infinity
LimitNOFILE=65536
LimitMEMLOCK=infinity
Bill