Are they maybe renamed to their original enxxx wlxxxxx names?
eth0 and wlan0
Code: Select all
ip a
Code: Select all
net.ifnames=0
These are out of tree modules.but the modules, namely VirtualBox ones, still are not loaded
Code: Select all
emerge @module-rebuild
Probably.alamahant wrote:Are they maybe renamed to their original enxxx wlxxxxx names?
eth0 and wlan0
OK, will do that.alamahant wrote: What doesshow?Code: Select all
ip ais the kernel parameter that will bring them back.Code: Select all
net.ifnames=0These are out of tree modules.but the modules, namely VirtualBox ones, still are not loaded
Plz useto rebuild themCode: Select all
emerge @module-rebuild
I will answer the rest when I get home.alamahant wrote: Plz make sure your /usr/src/linux symlink points to the new kernel,the initramfs--if any-- is rebuilt, and grub is updated.
Code: Select all
ifconfig -aCode: Select all
-a display all interfaces which are currently available, even if downOK, this does show the ugly named interfaces.mike155 wrote:Code: Select all
ifconfig -aCode: Select all
-a display all interfaces which are currently available, even if down
Do you run grub-mkconfig to generate the GRUB config file?ONEEYEMAN wrote:In the past I was modifying the grub menu by adding a parameter to keep those names. Maybe I should try this?
However with GRUB2 autogenerating the configuration file it will be hard to maintain.
Code: Select all
GRUB_CMDLINE_LINUX="net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax"Code: Select all
timeout=5
default=0
menu_color_normal=white/blue
menuentry 'Linux' {
set root='hd0,msdos1'
linux /vmlinuz root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax
}
menuentry 'Linux Old' {
set root='hd0,msdos1'
linux /vmlinuz.old root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax
}
menuentry 'Linux Backup' {
set root='hd0,msdos1'
linux /vmlinuz-Backup root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax
}
Code: Select all
ERROR: Kernel configuration is invalid.
include/generated/autoconf.h or include/config/auto.conf are missing
Run make oldconfig && make prepare on kernel src to fix it
/bin/false)
warning: The compiler differs from the one used to build the kernel
Code: Select all
ccache: error: Failed to create temporary file /var/cache/ccache/......: Permission denied
Yes, I did.mike155 wrote:Do you run grub-mkconfig to generate the GRUB config file?ONEEYEMAN wrote:In the past I was modifying the grub menu by adding a parameter to keep those names. Maybe I should try this?
However with GRUB2 autogenerating the configuration file it will be hard to maintain.
OK, thx, I will try to do that.mike155 wrote: There's a file /etc/default/grub. You can define default parameters in that file. On one of my machines, I have:Code: Select all
GRUB_CMDLINE_LINUX="net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax"
mike155 wrote: Another approach is to ditch grub-mkconfig - and to maintain a short, handwritten /boot/grub/grub.cfg:Code: Select all
timeout=5 default=0 menu_color_normal=white/blue menuentry 'Linux' { set root='hd0,msdos1' linux /vmlinuz root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax } menuentry 'Linux Old' { set root='hd0,msdos1' linux /vmlinuz.old root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax } menuentry 'Linux Backup' { set root='hd0,msdos1' linux /vmlinuz-Backup root=/dev/nvme0n1p2 ro net.ifnames=0 ipv6.disable=1 init=/usr/lib/systemd/systemd acpi_enforce_resources=lax }
Code: Select all
line 8: Invalid cipher: CCMP TKIP
line 8: failed to parse pairwise 'CCMP TKIP'
Code: Select all
If you're seeing this message, that means JavaScript has been disabled on your browser, please enable JS to make Imgur work.Code: Select all
ctrl_interface=/var/run/wpa_supplcant
ctrl_interface_group=0
ap_scan=1
network={
ssid="IgorNetwork"
proto=RSN
key-mgmt=WPA-PSK
# pairwise=CCMP TKIP
pairwise=CCMP
# group=CCMP TKIP WEP104 WEP40
group=CCMP WEP104 WEP40
psk=<my_secret_passphrase>
priority=5
}
Code: Select all
* Starting WPA Supplicant Daemon
Successfully nitialized wpa_supplicant
Line 11: Invalid cipher 'CCMP WEP104 WEP40'
Line 11: failed to parse group 'CCMP WEP104 WEP40'
Line 14: failed to parse network block
Failed to read or parse configuration '/etc/wpa_spplicant/wpa_supplicant.conf'
: CTRL-EVENT-DSCP-POLICY clear_all
* start-stop-daemon: failed to start `/usr/sbin/wpa_supplicant`
* Failed to start WPA Supplicant Daemon
* ERROR: wpa_supplicant failed to start
Code: Select all
USE="crda dbus fils bs2-0 mesh readline -ap -broadcom-sta -eap-sim -eapol-test -fasteap -macsec -p2p -privsep (-ps3) -qt5 (-selinx) -smartcard -tdls -tkip -uncommon-eap-types -wep (-wimax) -wps
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
update_config=1
network={
ssid="<my_ssid>"
psk="<my_psk>"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}