From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?B?QmrDtnJuIEjDtmZsaW5n?= Subject: Re: GuixSD in a VM is so nice - once you actually have control over your mouse, that is. Date: Fri, 19 May 2017 10:39:17 +0200 Message-ID: <20170519103917.70a95cd5@alma-ubu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dBdRX-0007y8-Ap for help-guix@gnu.org; Fri, 19 May 2017 04:39:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dBdRU-0007Zz-7K for help-guix@gnu.org; Fri, 19 May 2017 04:39:27 -0400 Received: from m4s11.vlinux.de ([83.151.27.109]:47085 helo=bjoernhoefling.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dBdRU-0007Ze-0U for help-guix@gnu.org; Fri, 19 May 2017 04:39:24 -0400 Received: from alma-ubu (p57B5286C.dip0.t-ipconnect.de [87.181.40.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by bjoernhoefling.de (Postfix) with ESMTPSA id 8B78840040 for ; Fri, 19 May 2017 10:39:18 +0200 (CEST) In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org On Thu, 18 May 2017 00:42:18 +0200 Fox wrote: > so I run GuixSD (on bare metal nicely and) on qemu >=20 > but mouse capture is an issue in that gpm or whatever runs the mouse. >=20 > I "can't come back from the Immelmann loop" , so-to-speak. The only=20 > "ESCAPE" is CTRL-ALT-F3 with root login and "reboot". >=20 >=20 > I mean ... these days a VM should maybe be fine with mice of 21st.=20 > century design or am I going down a wrong alley ? >=20 >=20 >=20 As others already pointed out, "Ctrl-Alt" is the way to get out of the cage. Mostly I don't use the VM-Window: I had some trouble with gpm and don't know how to enable clipboard-sharing in QEMU, so I just use SSH: My GuixSD-QEMU-Configuration has something like: (services (cons*=20 ... other services here ... (dhcp-client-service) (lsh-service #:port-number 3333) %base-services)) Then in my host system I have an entry in my ~/.ssh/config: Host g64 HostName localhost Port 3333 User bjoern When I now call "ssh g64" and enter my password, I'm connected to my virtual machine and can use the normal mouse and copy/paste of my host system as I would use with other remote machines. You can also upload your SSH-Key in your virtual machine to avoid password entering. And probably when I would setup a new VM, I would use OpenSSH (https://www.gnu.org/software/guix/manual/guix.html#index-openssh_002dservi= ce_002dtype), but when I started with my setup, there was only LSH. Bj=C3=B6rn