X-Git-Url: http://pere.pagekite.me/gitweb/homepage.git/blobdiff_plain/4670db8c493b13f0e5943bbd89757deb459a997a..fb110c9c7a80d9cb19a636189067b9a60d6f146d:/blog/archive/2012/02/index.html diff --git a/blog/archive/2012/02/index.html b/blog/archive/2012/02/index.html index 87c4702880..1446914643 100644 --- a/blog/archive/2012/02/index.html +++ b/blog/archive/2012/02/index.html @@ -102,7 +102,7 @@ in the morning. This is done using the shutdown-at-night Debian package.

To enable this feature on a client, the machine need to be added to -the netgroup shutdown-at-night-hosts. For Debian Edu, This is done in +the netgroup shutdown-at-night-hosts. For Debian Edu, this is done in LDAP, and once this is in place, the machine in question will check every hour from 16:00 until 06:00 to see if the machine is unused, and shut it down if it is. If the hardware in question is supported by @@ -138,6 +138,259 @@ Perhaps you too can use it to save some power?

+
+
+ Skolelinux-intervju: Axel Bojer +
+
+ 7th February 2012 +
+
+

I serien med intervjuer av folk i +Skolelinux-miljøet har jeg +fått en av oversetterne som har vært med siden starten i tale.

+ +

Hvem er du, og hva driver du med til daglig?

+ +

Jeg heter Axel Bojer og er datalærer, tysklærer, oversetter med +mere.

+ +

Hvordan kom du i kontakt med Skolelinux-prosjektet?

+ +

Tror jeg så en annonsering på nettet i slutten av 2001 og ville +være med som oversetter. Jeg kom med på en utviklersamling og +prosjektet var da helt i starten. Det var spennende å være med mens +prosjektet vokste til og utviklet seg.

+ +

Jeg har «alltid» vært språkinteressert og hadde nettopp startet med +Linux og tror jeg tenkte det passet å bidra. Var også glad for å få +en Debian-distribusjon, og ville gjerne bruke den selv. Til å begynne +med brukte jeg først Mandrake og så Debian. Og siden jeg oppdaget at +det ikke var noen mulighet for å bruke den som enkeltstående i lang +tid, så gikk jeg etterhvert over til Kubuntu

+ +

Hva er fordelene med Skolelinux slik du ser det?

+ +

Løsningen er forholdsvis lett å sette opp, gratis, fri programvare +og gjør det mulig å gjenbruke eldre maskiner. Det fine med Debian er +at det er stabilt og har en veldig stor mengde programmer. Jeg liker +også apt. :-) Jeg liker også friheten ved Linux og muligheten til å +delta og forme sin egen datahverdag.

+ +

Hva er ulempene med Skolelinux slik du ser det?

+ +

Skolelinux er for lite kjent og for sent ute med å gi ut nye +versjoner.

+ +

Da jeg selv i hovedsak bruker Kubuntu, så kan jeg egentlig ikke +svare så detaljert rundt ulempene med Skolelinux. Hovedårsaken til at +jeg bruker Kubuntu er nok at da vi begynte med det mener jeg det ikke +var noen annen løsning. «Vandrende arbeidsstasjon» mener jeg ikke +fantes da. Dessuten ville jeg ha siste versjon, da den KDE-versjonen +som var i Skolelinux den gangen var en god del enklere (tror det var +KDE 2) var dårligere i mine øyne enn versjon 3.

+ +

Hvilken fri programvare bruker du til daglig?

+ +

Jeg bruker blant annet Kubuntu, LibreOffice, Thunderbird, Firefox, +Kate, Comix og Konsole. Og +en hel haug andre ved behov :-)

+ +

Har oversatt Comix selv, men det er jo ikke skjedd noe med Comix +siden 2009, så den er det nok bare jeg som har. Om andre vil ha den +gir jeg den gjerne videre. Ser at noen har startet på +MComix siden jeg så på så +på dette sist, så nå er jeg igang med å teste og oversette den +også.

+ +

Hvilken strategi tror du er den rette å bruke for å få +skoler til å ta i bruk fri programvare?

+ +

Det viktigste er å forankre beslutningen i kollegiet og med de som +er ansvarlige for å vedlikeholde og bruke datamaskinene. Flest mulig +bør være med på å holde det (sosialt) vedlike, kjenne og støtte +prinsippene. Som enkeltmannsprosjekt blir det lett veldig sårbart, +særlig når (Skole)linux ennå i stor grad er en motkultur og ikke noe +en stor nok andel av beslutningstakere, brukere osv kjenner til og +bruker.

+ +

Jeg tror det viktigste er å fortsette å holde fri programvare godt, +oppdatert, minimere antall feil, ha en god kontakt med brukerne og +attraktivt og spennende programmer. Beholde alt som er bra og ha det +tilgjengelig samtidig som man tilbyr det nyeste og rareste for de som +vil ha det.

+ +
+
+ + + Tags: debian edu, intervju, norsk. + + +
+
+
+ +
+
+ Automatic proxy configuration with Debian Edu / Skolelinux +
+
+ 13th February 2012 +
+
+

New in the Squeeze version of +Debian Edu / Skolelinux is the +ability for clients to automatically configure their proxy settings +based on their environment. We want all systems on the client to use +the WPAD based proxy definition fetched from http://wpad/wpad.dat, to +allow sites to control the proxy setting from a central place and make +sure clients do not have hard coded proxy settings. The schools can +change the global proxy setting by editing +tjener:/etc/debian-edu/www/wpad.dat and the change propagate +to all Debian Edu clients in the network.

+ +

The problem is that some systems do not understand the WPAD system. +In other words, how do one get from a WPAD file like this (this is a +simple one, they can run arbitrary code):

+ +
+function FindProxyForURL(url, host)
+{
+   if (!isResolvable(host) ||
+       isPlainHostName(host) ||
+       dnsDomainIs(host, ".intern"))
+      return "DIRECT";
+   else
+      return "PROXY webcache:3128; DIRECT";
+}
+
+ +

to a proxy setting in the process environment looking like this:

+ +
+http_proxy=http://webcache:3128/
+ftp_proxy=http://webcache:3128/
+
+ +

To do this conversion I developed a perl script that will execute +the javascript fragment in the WPAD file and return the proxy that +would be used for +http://www.debian.org/, +and insert this extracted proxy URL in /etc/environment and +/etc/apt/apt.conf. The perl script wpad-extract work just +fine in Squeeze, but in Wheezy the library it need to run the +javascript code is no longer +able to build because the C library it depended on is now a C++ +library. I hope someone find a solution to that problem before Wheezy +is frozen. An alternative would be for us to rewrite wpad-extract to +use some other javascript library currently working in Wheezy, but no +known alternative is known at the moment.

+ +

This automatic proxy system allow the roaming workstation (aka +laptop) setup in Debian Edu/Squeeze to use the proxy when the laptop +is connected to the backbone network in a Debian Edu setup, and to +automatically use any proxy present and announced using the WPAD +feature when it is connected to other networks. And if no proxy is +announced, direct connections will be used instead.

+ +

Silently using a proxy announced on the network might be a privacy +or security problem. But those controlling DHCP and DNS on a network +could just as easily set up a transparent proxy, and force all HTTP +and FTP connections to use a proxy anyway, so I consider that +distinction to be academic. If you are afraid of using the wrong +proxy, you should avoid connecting to the network in question in the +first place. In Debian Edu, the proxy setup is updated using dhcp and +ifupdown hooks, to make sure the configuration is updated every time +the network setup changes.

+ +

The WPAD system is documented in a +IETF +draft and a +Wikipedia +page for those that want to learn more.

+ +
+
+ + + Tags: debian edu, english. + + +
+
+
+ +
+
+ How to figure out which RAID disk to replace when it fail +
+
+ 14th February 2012 +
+
+

Once in a while my home server have disk problems. Thanks to Linux +Software RAID, I have not lost data yet (but +I was +close this summer :). But once a disk is starting to behave +funny, a practical problem present itself. How to get from the Linux +device name (like /dev/sdd) to something that can be used to identify +the disk when the computer is turned off? In my case I have SATA +disks with a unique ID printed on the label. All I need is a way to +figure out how to query the disk to get the ID out.

+ +

After fumbling a bit, I +found +that hdparm -I will report the disk serial number, which is +printed on the disk label. The following (almost) one-liner can be +used to look up the ID of all the failed disks:

+ +
+for d in $(cat /proc/mdstat |grep '(F)'|tr ' ' "\n"|grep '(F)'|cut -d\[ -f1|sort -u);
+do
+    printf "Failed disk $d: "
+    hdparm -I /dev/$d |grep 'Serial Num'
+done
+
+ +

Putting it here to make sure I do not have to search for it the +next time, and in case other find it useful.

+ +

At the moment I have two failing disk. :(

+ +
+Failed disk sdd1:       Serial Number:      WD-WCASJ1860823
+Failed disk sdd2:       Serial Number:      WD-WCASJ1860823
+Failed disk sde2:       Serial Number:      WD-WCASJ1840589
+
+ +

The last time I had failing disks, I added the serial number on +labels I printed and stuck on the short sides of each disk, to be able +to figure out which disk to take out of the box without having to +remove each disk to look at the physical vendor label. The vendor +label is at the top of the disk, which is hidden when the disks are +mounted inside my box.

+ +

I really wish the check_linux_raid Nagios plugin for checking Linux +Software RAID in the +nagios-plugins-standard +debian package would look up this value automatically, as it would +make the plugin a lot more useful when my disks fail. At the moment +it only report a failure when there are no more spares left (it really +should warn as soon as a disk is failing), and it do not tell me which +disk(s) is failing when the RAID is running short on disks.

+ +
+
+ + + Tags: english, raid. + + +
+
+
+

RSS Feed