From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: Gluglug X60 Guix howto Date: Wed, 03 Dec 2014 00:00:48 -0500 Message-ID: <87vblt72f3.fsf@yeeloong.lan> References: <873899ltj9.fsf@yamato.home> <16DEF189-FB08-4A35-9BA1-13EF4BB26700@sumou.com> 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]:49179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xw25f-0003Id-Hm for guix-devel@gnu.org; Wed, 03 Dec 2014 00:03:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xw25Z-00070Y-9M for guix-devel@gnu.org; Wed, 03 Dec 2014 00:03:03 -0500 Received: from world.peace.net ([96.39.62.75]:42429) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xw25Z-00070M-5a for guix-devel@gnu.org; Wed, 03 Dec 2014 00:02:57 -0500 In-Reply-To: <16DEF189-FB08-4A35-9BA1-13EF4BB26700@sumou.com> (=?utf-8?B?IueZveeGiiIncw==?= message of "Tue, 25 Nov 2014 12:56:07 +0300") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: =?utf-8?B?55m954aK?= Cc: Guix-devel =E7=99=BD=E7=86=8A writes: > On 2014=E5=B9=B411=E6=9C=8823=E6=97=A5 20:22:24 GMT+03:00, Alex Sassmanns= hausen wrote: >>Hello, >> >>I received a request for instructions on how to get Guix running as >>standalone on the Gluglug X60 =E2=80=94 my work is ongoing (I haven't >>reconfigured the Grub BIOS, nor have I got wireless working yet), but >>a first draft may help other owners. > > I hope you can get the wireless working! Especially during Guix install... I run standalone Guix on my Gluglug X60 with wireless. All you have to do is create a wpa_supplicant.conf file containing stanzas like this: --8<---------------cut here---------------start------------->8--- network=3D{ ssid=3D"my network name" key_mgmt=3DWPA-PSK psk=3D"my network password" } --8<---------------cut here---------------end--------------->8--- and then run: wpa_supplicant -i wlp2s0 -c /path/to/wpa_supplicant.conf -B dhclient wlp2s0 If you have problems connecting to wireless, you can replace the "-B" with "-d" in the wpa_supplicant command, which will run it in the foreground with debugging output enabled. Regards, Mark