小编Joa*_*oed的帖子

16.04 不能使用蓝牙A2DP耳机,配对但不连接。里面的日志

首先,我尝试遵循以下两个:https : //vilimpoc.org/blog/2016/04/30/ubuntu-16-04-bluetooth-speakers/PulseAudio 无法加载蓝牙模块 15.10/16.04/16.10

当我尝试连接我的 Jaybird X2(在台式机和笔记本电脑、broadcom 和 intel 上都尝试过)时,它配对、连接两秒钟然后断开连接。

日志形式 syslog(从我的桌面上使用 Broadcom BT)

May 31 23:50:54 desktop pulseaudio[6247]: [pulseaudio] socket-server.c: bind(): Address already in use
May 31 23:50:54 desktop pulseaudio[6247]: [pulseaudio] module.c: Failed to load module "module-cli-protocol-unix" (argument: ""): initialization failed.
May 31 23:50:54 desktop pulseaudio[6247]: [pulseaudio] socket-server.c: bind(): Address already in use
May 31 23:50:54 desktop pulseaudio[6247]: [pulseaudio] module.c: Failed to load module "module-cli-protocol-unix" (argument: ""): initialization failed.
Run Code Online (Sandbox Code Playgroud)

其他时间:

a2dp-sink profile connect failed for …
Run Code Online (Sandbox Code Playgroud)

sound headphones pulseaudio bluetooth

15
推荐指数
1
解决办法
2万
查看次数

16.04:lightdm(锁屏)无法连接到wifi。(1) 权限不足

从 14.04 升级到 16.04(全新安装)后,(所以不是真正升级,但你明白了)我注意到带有 unity-greeter 的 lightdm 无法连接到带有网络管理器的 WiFi。我得到以下信息:Failed to add/activate connection. - (1) Insufficient privileges

没什么大不了的,但有点烦人,因为它曾经有效。

networking lightdm 16.04

8
推荐指数
1
解决办法
1万
查看次数

如何:设置英特尔快速启动

关于如何在笔记本电脑上设置英特尔快速启动的简短操作指南。

partitioning bios intel

6
推荐指数
1
解决办法
5850
查看次数

如何替换所有表情符号?

我想让 Google Noto Color Emoji 替换所有其他表情符号,所以我看不到通用的。就像这里的这个: 在此处输入图片说明

为了测试这一点,我使用了以下页面:http : //getemoji.com/,其中显示了浏览器可以使用的“所有”表情符号。如您所见,只缺少一些。

我怀疑某些其他字体可能具有更高的优先级,因此它尝试在 Noto Color Emoji 之前使用它。

我可以通过以下方式解决这个问题:如果我只是这样做,它将在http://getemoji.com等网站上运行,但在 facebook 和其他社交网站上不起作用。

  <match>
    <test name="family"><string>Segoe UI</string></test>
    <edit name="family" mode="assign" binding="strong">
      <string>Noto Color Emoji</string>                                         
    </edit>
  </match>
Run Code Online (Sandbox Code Playgroud)

我目前在 .config/fontconfig/fonts.conf 中使用这些行,以确保它们在 Google Chrome 中工作

<!-- Emojis -->
  <match target="scan">
    <test name="family">
      <string>Noto Color Emoji</string>
    </test>
    <edit name="scalable" mode="assign">
      <bool>true</bool>
    </edit>
  </match>

  <match target="pattern">
    <test name="prgname">
      <string>chrome</string>
    </test>
    <edit name="family" mode="prepend_first">
      <string>Noto Color Emoji</string>
    </edit>
  </match>
Run Code Online (Sandbox Code Playgroud)

我试图删除所有 microsoft 字体、符号字体和其他字体以找出执行此操作的字体,但我无法弄清楚:(

Ubuntu 16.04.1 带有:Noto Color Emoji …

fonts google-chrome emoji

5
推荐指数
2
解决办法
2904
查看次数