我在 Ubuntu 13.04 上,使用 ZaReason Zini,据我所知,它除了 hdmi 端口外没有其他音频输出。我试图让 Clojure 库 Overtone 工作,但遇到了这里描述的问题。潜在的问题似乎是 jackd 不起作用:
anand@anand-desktop:~$ jackd -R -d alsa
jackdmp 1.9.10
Copyright 2001-2005 Paul Davis and others.
Copyright 2004-2013 Grame.
jackdmp comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details
no message buffer overruns
no message buffer overruns
no message buffer overruns
JACK server starting in realtime mode with priority 10
audio_reservation_init …
Run Code Online (Sandbox Code Playgroud) 在 Ubuntu 12.10 中,我使用 lxc-create 实用程序创建了一个“ubuntu”类型的 LXC。然后,我使用 lxc-start-ephemeral 实用程序基于此容器创建临时容器,并且我需要使用无密码 ssh 连接到那些容器。但是,我需要保持他们的 /home/ubuntu 文件夹原始,所以我不能把通常的 .ssh/authorized_keys 文件放在那里。
在“加密主目录”部分在这里告诉我如何移动的authorized_keys出来的home目录。在我按照基本容器内部的这些说明进行操作后,我可以在不提供密码的情况下通过 ssh 进入基本容器。
但是,当我从基础容器启动临时容器时,没有密码就无法 ssh 进入。(令人困惑的是,当authorized_keys 位于/home/ubuntu/.ssh 中的通常位置时,临时容器的无密码ssh确实有效。)我该如何解决这个问题?
这是 ssh -v 所说的,从它接受主机密钥开始:
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/ubuntu/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: …
Run Code Online (Sandbox Code Playgroud)