我最近安装了 Ubuntu 14.04,除了蓝牙之外一切正常。
我有 Ralink 3290 蓝牙。尝试使用此处描述的方法安装驱动程序。该代码未编译并给出 2 个错误。即使更改 os/linux/pci_main_dev.c也不起作用。
更新:现在我按照这个链接修改了一些文件后,我成功地编译和安装了这个驱动程序。我确信 Ubuntu 终于找到了一个蓝牙适配器,现在我正在使用蓝牙:
rfkill list all
0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
Run Code Online (Sandbox Code Playgroud)
但是现在显示Bluetooth is disabled错误并且输出
dmesg | grep Blue
[ 17.378741] Bluetooth: Core ver 2.17
[ 17.378778] Bluetooth: HCI device and connection manager initialized
[ 17.378788] Bluetooth: HCI socket layer initialized
[ 17.378792] Bluetooth: L2CAP socket layer initialized
[ 17.378799] …Run Code Online (Sandbox Code Playgroud) 我尝试在 Lenovo ThinkPad E14(带有集成 Renoir 显卡的 Ryzen 3 5300U)上启动最新的 Ubuntu 21.10,但我被困在 Lenovo 徽标上。当尝试使用安全图形启动时,我收到以下错误:
drm:amdgpu_init [amdgpu]] *ERROR* VGACON disables amdgpu kernel modesetting.
Kernel panic - not syncing: stack protector: Kernel stack is corrupted in:elantech_change_report_id+0x1bf/)x1c4 [psmouse]
CPU: 3 PID: 136 Comm: kworker/3:1 Not tainted 5.13.0-19-generic #19-Ubuntu
Hardware name: LENOVO 20Y7S00R00/20Y7S00R00, BIOS R10ET28W (1.07) 07/15/2021
Workqueue: events_log serio_handle_event
Run Code Online (Sandbox Code Playgroud)
我尝试了amdgpu.dc=0正常启动选项,但错误仍然存在。注意在20.04.3和21.04上启动成功。成功启动需要做什么?在 NVIDIA 卡中未观察到此问题。
输出lspci:
00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
00:00.2 IOMMU: Advanced Micro Devices, …Run Code Online (Sandbox Code Playgroud) 我fonts.conf在 Ubuntu 16.10 Unity 中使用以下内容在系统范围内应用 noto color emoji:
<!-- First install Noto Color Emoji font in ~/home/.fonts, then copy this file to
~/home/.config/fontconfig. This will set default emoji font to Noto Color Emoji font systemwide -->
<fontconfig>
<match>
<test name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family"><string>serif</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family"><string>monospace</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>Emoji One Color</string>
</edit>
</match>
<match>
<test name="family"><string>Apple Color Emoji</string></test> …Run Code Online (Sandbox Code Playgroud)