小编Tom*_*eck的帖子

将所有打开的终端带到前面的快捷方式

导航到网页或编辑器后,有什么方法可以将所有打开的终端恢复到原来位置的前面?单击终端图标然后将每个图标单独带回来有点麻烦。

谢谢!

例子:

  • 预捷径:

前像快捷方式


  • 后捷径:

后图像快捷方式

command-line shortcut-keys gnome-terminal shortcuts

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

安装 usblib 包 - Ubuntu

我需要软件包 libusb 用于我正在安装的另一个软件包。

我尝试了以下似乎安装了软件包的方法,

sudo apt-get install libusb-dev
Run Code Online (Sandbox Code Playgroud)

但是当我尝试安装另一个软件包时,

configure: error: Package requirements (libusb-1.0 >= 0.9.1) were not met:

No package 'libusb-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBUSB_CFLAGS
and LIBUSB_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Run Code Online (Sandbox Code Playgroud)

当我运行命令 dpkg -L libusb-dev 时,我得到:

/.
/usr
/usr/bin
/usr/bin/libusb-config
/usr/include
/usr/include/usb.h
/usr/lib
/usr/lib/libusb.a
/usr/lib/libusb.la
/usr/lib/pkgconfig
/usr/lib/pkgconfig/libusb.pc
/usr/share
/usr/share/doc …
Run Code Online (Sandbox Code Playgroud)

package-management dpkg usb 11.10

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

“取决于:ia32-libs-multiarch 但它不可安装” - 解决方案

我在 12.10 试图让 Android SDK 工作时注意到了这一点。对于 64 位版本,需要安装:

sudo apt-get install ia32-libs
Run Code Online (Sandbox Code Playgroud)

但是,在 64 位 12.10 下,出现以下错误:

The following packages have unmet dependencies:
 ia32-libs : Depends: ia32-libs-multiarch but it is not installable
Run Code Online (Sandbox Code Playgroud)

> apt-get install ia32-libs-multiarch
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ia32-libs-multiarch is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package …
Run Code Online (Sandbox Code Playgroud)

64-bit dependencies architecture multiarch 12.10

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