$ ssh mybooklive
Unable to negotiate with 192.168.80.10 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
Wie hier beschrieben wird muss in der ~/.ssh/config die Verbindungsart festgelegt werden
Host mybooklive
Hostname mybooklive
HostKeyAlgorithms +ssh-rsa
User wnf
Tags: Linux-Hardware MyBookLive ssh
In der Bedienungsanleitung steht, dass die Beleuchtung mit der SL-Taste eingeschaltet wird.
Das funktioniert unter Linux nicht.
Die Suche nach linux keyboard backlight control erbrachte
$ xset led 3
Tags: Linux-Hardware
$ lspci | grep -i net
02:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
Wireless WiFi Link 4965AGN Für die Wireless WiFi Link 4965AGN wir das Modul iwl4965 (im Standard-Kernel enthalten).benutzt.
$ sudo modprobe iwl4965
$ rfkill
ID TYPE DEVICE SOFT HARD
0 wlan phy0 unblocked blocked
Lösung
Literatur
Virtualbox kann eine VM nicht starten
Für die virtuelle Maschine win10 konnte keine neue Sitzung eröffnet werden.
VT-x is disabled in the BIOS for all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED).
Fehlercode:NS_ERROR_FAILURE (0x80004005)
Komponente:ConsoleWrap
Interface:IConsole {872da645-4a9b-1727-bee2-5585105b9eed}
Im Bios muss Intel Virtualization Technology enabled werden.
Tags: Linux-Hardware
"Das Paket "grub-efi-amd64-signed" konnte nicht in /target/ installiert werden. Ohne den GRUB-Bootloader wird das installierte System nicht booten."
Nach dem Upgrade auf Kubuntu 18.04.1 funktioniert das WLAN wieder nicht :-(
Anleitung: Realtek WLAN und Bluetooth unter Linux (RTL8723BE)
|Seriennummer:|CNDxxx |Produktnummer:|T9P54EA#ABD |Grafik:|AMD Radeon R5 M330 |Boot-Menü|F9
neue Firmware
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.156_all.deb
Literatur
Auf dem Windowsrechner
Probleme bei der Inbetriebnahme des WLAN-Adapter rtl8723be
$ lspci -nnk | grep -i net -A2
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller [10ec:8136] (rev 07)
Subsystem: Hewlett-Packard Company Device [103c:8136]
Kernel driver in use: r8169
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
Subsystem: Hewlett-Packard Company Device [103c:804c]
Kernel driver in use: rtl8723be
$ dmesg | grep wlan
[ 21.520745] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 363.944865] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
$ rfkill list
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
$ git clone https://github.com/lwfinger/rtlwifi_new
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe rtl8723be
Tags: Linux-Hardware