标签: configure

如何在 Linux 下配置 Logitech G502 Spectrum?

我正在考虑购买 Logitech G502 Spectrum(带有 RGB LED 的 G502),但是当我运行 Linux(在 Debian @ work、ubuntu @work 和 archlinux @home 中指定)时,我正在纠结如何直接在 linux 环境下设置颜色.

据我从 youtube 上的一些评论视频中了解到,它使用罗技的默认游戏软件在 Windows 下实现这一点,但遗憾的是,据我所知,罗技没有支持 linux 的官方软件。

那么我如何在 linux 下更改 rgb 颜色(以及每个发行版)。我会被罚款与一个shell脚本做:) -但我不是愿意建立一个轮廓鹿角Windows环境。

linux mouse shell colors configure

24
推荐指数
2
解决办法
3万
查看次数

在 ./configure 期间未找到 OpenSSL

我正在尝试在我的 Ubuntu 14.04.3 上制作一个类似比特币的守护进程。当我打./configure

checking for SSL... no
configure: error: openssl  not found.
Run Code Online (Sandbox Code Playgroud)

# apt-get install libssl-dev linux-headers-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
libssl-dev is already the newest version.
linux-headers-3.13.0-61-generic is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Run Code Online (Sandbox Code Playgroud)

我用谷歌搜索了错误消息,但我不知道该怎么做。我在我的另一个 Ubuntu 14.04 上成功地制作了那个守护进程,所以源代码和配置脚本都很好。

UPD1。安装 openssl 没有帮助:

# apt-get install openssl
..
openssl is already the newest version.
..
Run Code Online (Sandbox Code Playgroud)

我检查了 config.log 并且最后没有关于 openssl …

openssl ubuntu configure

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

无法在 Ubuntu 14.04 上配置 qemu

我正在尝试在 Ubuntu 14.04 (x64) 上配置 QEMU:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:    14.04
Codename:   trusty
Run Code Online (Sandbox Code Playgroud)

configure 死于错误消息:

ERROR: glib-2.12 gthread-2.0 is required to compile QEMU
Run Code Online (Sandbox Code Playgroud)

相关问题建议安装libc6-devbuild-essential。我有libc6-devbuild-essential安装。

config.log没有告诉我任何有用的信息(如下所示)。我不知道是什么测试产生了该错误消息。执行的最后一个测试是针对蓝牙头的。在此之前,测试了 curl 标头。

为什么 QEMU 无法自行配置?


# QEMU configure log Wed Sep 17 01:10:28 EDT 2014
# Configured with: './configure'
#
cc -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common -c -o …
Run Code Online (Sandbox Code Playgroud)

linux qemu ubuntu configure

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

如何解决接收错误:10053 connection was aborted by the software in your host machine for folding@home?

我想遵循Nvidia 的号召,捐赠未使用的 GPU 计算能力来对抗 COVID-19,并在 Windows 10 x64 机器上安装了7.5.1 版Folding@home 客户端

我的日志充满了以下消息:

ERROR:Receive error: 10053: An established connection was aborted by the software in your host machine.
Run Code Online (Sandbox Code Playgroud)

我做错了什么,我该如何解决?


这是我日志的开始部分:

22:00:41:           Time: 13:06:32
22:00:41:     Repository: Git
22:00:41:       Revision: 4705bf53c635f88b8fe85af7675557e15d491ff0
22:00:41:         Branch: master
22:00:41:       Compiler: Visual C++ 2008
22:00:41:        Options: /TP /nologo /EHa /wd4297 /wd4103 /Ox /MT
22:00:41:       Platform: win32 10
22:00:41:           Bits: 32
22:00:41:           Mode: Release
22:00:41:******************************* System ********************************
22:00:41:            CPU: AMD Ryzen 7 2700X …
Run Code Online (Sandbox Code Playgroud)

connection folding-at-home configure windows-10

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

./configure:从源代码构建 Inkscape 时找不到 bdw-gc

调查期间出现的此问题的常用方法是什么./configure

configure: error: Package requirements (bdw-gc      >= 7.1
                  cairo       >= 1.10
                  cairomm-1.0 >= 1.9.8
                  glib-2.0    >= 2.28
                  glibmm-2.4  >= 2.28
                  giomm-2.4
                  gsl
                  gthread-2.0 >= 2.0
                  libpng      >= 1.2
                  libxml-2.0  >= 2.6.11
                  libxslt     >= 1.0.15
                  pango       >= 1.24
                  pangoft2    >= 1.24
                  sigc++-2.0  >= 2.0.12
                  ) were not met:

No package 'bdw-gc' found
Run Code Online (Sandbox Code Playgroud)

我刚刚bdw-gchttps://github.com/ivmai/bdwgc/下载并构建

我想问题可能是因为bdw-gc被安装到/usr/local/bin,而不是/usr/local

我试过这个:

LDFLAGS=-L/usr/local/lib LIBS=-lgc ./configure
Run Code Online (Sandbox Code Playgroud)

configure

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