* Gluglug X60 Guix howto
@ 2014-11-23 17:22 Alex Sassmannshausen
2014-11-23 18:36 ` David Thompson
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Alex Sassmannshausen @ 2014-11-23 17:22 UTC (permalink / raw)
To: Guix-devel
Hello,
I received a request for instructions on how to get Guix running as
standalone on the Gluglug X60 — 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.
You can read my experience at http://glean.eu/guix-gluglug.html.
HTH,
Alex
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-23 17:22 Gluglug X60 Guix howto Alex Sassmannshausen
@ 2014-11-23 18:36 ` David Thompson
2014-11-25 3:58 ` Jason Self
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: David Thompson @ 2014-11-23 18:36 UTC (permalink / raw)
To: alex.sassmannshausen, Guix-devel
Alex Sassmannshausen <alex.sassmannshausen@gmail.com> writes:
> Hello,
>
> I received a request for instructions on how to get Guix running as
> standalone on the Gluglug X60 — 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.
>
> You can read my experience at http://glean.eu/guix-gluglug.html.
Awesome! The Gluglug X60 was the laptop I tested the Guix 0.7 release
image on. I didn't document the process, so I'm glad that you are!
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-23 17:22 Gluglug X60 Guix howto Alex Sassmannshausen
2014-11-23 18:36 ` David Thompson
@ 2014-11-25 3:58 ` Jason Self
2014-11-25 9:56 ` 白熊
2014-11-25 12:42 ` Ludovic Courtès
3 siblings, 0 replies; 9+ messages in thread
From: Jason Self @ 2014-11-25 3:58 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 586 bytes --]
Alex Sassmannshausen <alex.sassmannshausen@gmail.com> wrote ..
> Hello,
>
> I received a request for instructions on how to get Guix running as
> standalone on the Gluglug X60 — 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.
>
> You can read my experience at http://glean.eu/guix-gluglug.html.
>
> HTH,
>
> Alex
This it great - Thanks! Can you please make it available under an
appropriate Free license [0]?
[0] http://freedomdefined.org/Licenses#Comparison_of_Licenses
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-23 17:22 Gluglug X60 Guix howto Alex Sassmannshausen
2014-11-23 18:36 ` David Thompson
2014-11-25 3:58 ` Jason Self
@ 2014-11-25 9:56 ` 白熊
2014-12-03 5:00 ` Mark H Weaver
2014-11-25 12:42 ` Ludovic Courtès
3 siblings, 1 reply; 9+ messages in thread
From: 白熊 @ 2014-11-25 9:56 UTC (permalink / raw)
To: alex.sassmannshausen, Guix-devel
On 2014年11月23日 20:22:24 GMT+03:00, Alex Sassmannshausen <alex.sassmannshausen@gmail.com> wrote:
>Hello,
>
>I received a request for instructions on how to get Guix running as
>standalone on the Gluglug X60 — 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...
If you make progress on this, definitely share as this would be enough for me to purchase the Gluglug X60 to experiment with Guix on it.
--
白熊@相撲道
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-25 9:56 ` 白熊
@ 2014-12-03 5:00 ` Mark H Weaver
2014-12-03 16:48 ` Ludovic Courtès
0 siblings, 1 reply; 9+ messages in thread
From: Mark H Weaver @ 2014-12-03 5:00 UTC (permalink / raw)
To: 白熊; +Cc: Guix-devel
白熊 <guix-devel_gnu.org@sumou.com> writes:
> On 2014年11月23日 20:22:24 GMT+03:00, Alex Sassmannshausen <alex.sassmannshausen@gmail.com> wrote:
>>Hello,
>>
>>I received a request for instructions on how to get Guix running as
>>standalone on the Gluglug X60 — 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={
ssid="my network name"
key_mgmt=WPA-PSK
psk="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
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-23 17:22 Gluglug X60 Guix howto Alex Sassmannshausen
` (2 preceding siblings ...)
2014-11-25 9:56 ` 白熊
@ 2014-11-25 12:42 ` Ludovic Courtès
2014-11-25 13:22 ` Amirouche Boubekki
3 siblings, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2014-11-25 12:42 UTC (permalink / raw)
To: Alex Sassmannshausen; +Cc: Guix-devel
Alex Sassmannshausen <alex.sassmannshausen@gmail.com> skribis:
> I received a request for instructions on how to get Guix running as
> standalone on the Gluglug X60 — 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.
Nice job!
Do you know what WiFi chipset is included? If it’s an Atheros thing,
for which we have the free firmware, it shouldn’t be too hard.
Ludo’.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-25 12:42 ` Ludovic Courtès
@ 2014-11-25 13:22 ` Amirouche Boubekki
2014-11-25 14:40 ` Ludovic Courtès
0 siblings, 1 reply; 9+ messages in thread
From: Amirouche Boubekki @ 2014-11-25 13:22 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: Guix-devel
[-- Attachment #1: Type: text/plain, Size: 822 bytes --]
2014-11-25 13:42 GMT+01:00 Ludovic Courtès <ludo@gnu.org>:
> Alex Sassmannshausen <alex.sassmannshausen@gmail.com> skribis:
>
> > I received a request for instructions on how to get Guix running as
> > standalone on the Gluglug X60 — 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.
>
> Nice job!
>
> Do you know what WiFi chipset is included? If it’s an Atheros thing,
> for which we have the free firmware, it shouldn’t be too hard.
>
I also have a gluglug x60. I'm doing the installation right now.
The wireless card is showing up in iwconfig and lspci (driver ath9k).
Still, I can't connect using it because wpa_supplicant is missing. So it
will wait that the system is finished installing.
[-- Attachment #2: Type: text/html, Size: 1262 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Gluglug X60 Guix howto
2014-11-25 13:22 ` Amirouche Boubekki
@ 2014-11-25 14:40 ` Ludovic Courtès
0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2014-11-25 14:40 UTC (permalink / raw)
To: Amirouche Boubekki; +Cc: Guix-devel
Amirouche Boubekki <amirouche.boubekki@gmail.com> skribis:
> The wireless card is showing up in iwconfig and lspci (driver ath9k).
> Still, I can't connect using it because wpa_supplicant is missing. So it
> will wait that the system is finished installing.
Indeed. I’ve just added wpa-supplicant to the image, so that’ll be
doable on the next release.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-12-03 16:48 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-23 17:22 Gluglug X60 Guix howto Alex Sassmannshausen
2014-11-23 18:36 ` David Thompson
2014-11-25 3:58 ` Jason Self
2014-11-25 9:56 ` 白熊
2014-12-03 5:00 ` Mark H Weaver
2014-12-03 16:48 ` Ludovic Courtès
2014-11-25 12:42 ` Ludovic Courtès
2014-11-25 13:22 ` Amirouche Boubekki
2014-11-25 14:40 ` Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.