Search found 306 matches

by Super Jamie
2019/08/26 22:36:09
Forum: CentOS 7 - Networking Support
Topic: Help on CentOS 7.6 MAC & interface swap
Replies: 5
Views: 3410

Re: Help on CentOS 7.6 MAC & interface swap

Unfortunately, since EL7 came out. Device enumeration order from the hardware isn't guaranteed or expected to be the same every boot, and systemd's udev doesn't do the "rename" shuffle that old EL6 and earlier udev used to do. ethX naming appears to work fine... most of the time. However, every so o...
by Super Jamie
2019/08/26 10:09:59
Forum: CentOS 7 - Networking Support
Topic: Help on CentOS 7.6 MAC & interface swap
Replies: 5
Views: 3410

Re: Help on CentOS 7.6 MAC & interface swap

Forcing "ethX" names for interfaces isn't possible anymore.

Either use the systemd/biosdevname naming, or call your interfaces a non-kernel name like "netX" or "prod" and "backup".
by Super Jamie
2016/02/15 13:14:47
Forum: CentOS 6 - Security Support
Topic: Supposed security vulnerabilities with openssh
Replies: 1
Views: 3889

Re: Supposed security vulnerabilities with openssh

The vulnerability is about X11 Forwarding over SSH.

Disable X forwarding and the unsecure codepath can never be entered.

Code: Select all

/etc/ssh/sshd_config
X11Forwarding no
by Super Jamie
2016/02/15 13:12:30
Forum: CentOS 6 - Security Support
Topic: [NEVER TESTED] modprobe USB devices except keyboards and mice
Replies: 2
Views: 2399

Re: modprobe USB devices except keyboards and mice

A udev rule similar to this should match USB storage only:

Code: Select all

ACTION=="add", KERNEL=="sd?", SUBSYSTEM=="block", ENV{ID_BUS}=="usb", RUN="/bin/true"
by Super Jamie
2016/02/15 13:10:02
Forum: CentOS 6 - Networking Support
Topic: Networking namespace
Replies: 2
Views: 5496

Re: Networking namespace

You don't need either of those packages, that's a very old kernel and the latest iproute in 6.7 has netns support, I logged the bug to add it.

I would suggest trying with the official packages, not those old OpenStack ones.
by Super Jamie
2016/02/15 13:04:58
Forum: CentOS 6 - Networking Support
Topic: fail_over_mac with bonded vlan interface not working
Replies: 2
Views: 2348

Re: fail_over_mac with bonded vlan interface not working

The VLAN device's MAC remains the same, the bond's new MAC is added to the VLAN's list of accepted MAC addresses.

You cannot see the list of MACs, it is internal to kernelspace.

So even though it looks like it's broken, it actually does work in the latest kernels.
by Super Jamie
2015/01/28 10:16:38
Forum: CentOS 7 - General Support
Topic: I Need a Valid Path to the Kernel Headers for VMWare
Replies: 1
Views: 12519

Re: I Need a Valid Path to the Kernel Headers for VMWare

You've done everything right.

Ask VMWare.
by Super Jamie
2015/01/27 13:44:35
Forum: CentOS 6 - Software Support
Topic: [SOLVED] Disk Usage Analyzer aka baobab ?
Replies: 2
Views: 8826

Re: Disk Usage Analyzer aka baobab ?

# yum provides "*/baobab" 1:gnome-utils-2.28.1-10.el6.x86_64 : GNOME utility programs Repo : base Matched from: Filename : /usr/bin/baobab Filename : /usr/share/gnome/help/baobab Filename : /usr/share/baobab Filename : /usr/share/omf/baobab So just yum install gnome-utils and you should have it.
by Super Jamie
2015/01/27 13:31:37
Forum: CentOS 7 - General Support
Topic: CentOS 7 multiple virtual terminal
Replies: 4
Views: 6412

Re: CentOS 7 multiple virtual terminal

Ctrl+Alt+F2 works for me?
by Super Jamie
2015/01/26 05:15:20
Forum: CentOS 6 - Hardware Support
Topic: CentOS/Kernel 3.18/Thunderbolt2
Replies: 4
Views: 4340

Re: CentOS/Kernel 3.18/Thunderbolt2

Thunderbolt should be working as of 3.17 and the Arch wiki on Macbooks says 3.18.1 is working well. However it looks like you would need to recompile, as the ELRepo kernel is built without Thunderbolt support: # egrep -i thun /boot/config-3.18.2-1.el6.elrepo.x86_64 # CONFIG_THUNDERBOLT is not set I ...