A few days ago, during a discussion in -EFN about interesting books to read -about copyright and the data retention directive, a suggestion to read -the 1968 short story Kodémus by -Tore à ge Bringsværd -came up. The text was only available in old paper books, and thus not -easily available for current and future generations. Some of the -people participating in the discussion contacted the author, and -reported back 2013-03-19 that the author was OK with releasing the -short story using a Creative -Commons license. The text was quickly scanned and OCR-ed, and we -were ready to start on the editing and typesetting.
- -As I already had some experience formatting text in my project to -provide a Norwegian version of the Free Culture book by Lawrence -Lessig, I chipped in and set up a -DocBook processing framework to -generate PDF, HTML and EPUB version of the short story. The tools to -transform DocBook to different formats are already in my Linux -distribution of choice, Debian, so -all I had to do was to use the -dblatex, -dbtoepub -and xmlto tools to do the -conversion. After a few days, we decided to replace dblatex with -xsltproc/fop (aka -docbook-xsl), -to get the copyright information to show up in the PDF and to get a -nicer <variablelist> typesetting, but that is just a minor -technical detail.
- -There were a few challenges, of course. We want to typeset the -short story to look like the original, and that require fairly good -control over the layout. The original short story have three -parts/scenes separated by a single horizontally centred star (*), and -the paragraphs do not contain only flowing text, but dialogs and text -that started on a new line in the middle of the paragraph.
- -I initially solved the first challenge by using a paragraph with a -single star in it, ie <para>*</para>, but it made sure a -placeholder indicated where the scene shifted. This did not look too -good without the centring. The next approach was to create a new -preprocessor directive <?newscene?>, mapping to "<hr/>" -for HTML and "<fo:block text-align="center"><fo:leader -leader-pattern="rule" rule-thickness="0.5pt"/></fo:block>" -for FO/PDF output (did not try to implement this in dblatex, as we had -switched at this time). The HTML XSL file looked like this:
- -- --<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> - <xsl:template match="processing-instruction('newscene')"> - <hr/> - </xsl:template> -</xsl:stylesheet> -
And the FO/PDF XSL file looked like this:
- -- --<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> - <xsl:template match="processing-instruction('newscene')"> - <fo:block text-align="center"> - <fo:leader leader-pattern="rule" rule-thickness="0.5pt"/> - </fo:block> - </xsl:template> -</xsl:stylesheet> -
Finally, I came across the <bridgehead> tag, which seem to be -a good fit for the task at hand, and I replaced <?newscene?> -with <bridgehead>*</bridgehead>. It isn't centred, but we -can fix it with some XSL rule if the current visual layout isn't -enough.
- -I did not find a good DocBook compliant way to solve the -linebreak/paragraph challenge, so I ended up creating a new processor -directive <?linebreak?>, mapping to <br/> in HTML, and -<fo:block/> in FO/PDF. I suspect there are better ways to do -this, and welcome ideas and patches on github. The HTML XSL file now -look like this:
- -- --<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> - <xsl:template match="processing-instruction('linebreak)"> - <br/> - </xsl:template> -</xsl:stylesheet> -
And the FO/PDF XSL file looked like this:
- -- --<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0' - xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:template match="processing-instruction('linebreak)"> - <fo:block/> - </xsl:template> -</xsl:stylesheet> -
One unsolved challenge is our wish to expose different ISBN numbers -per publication format, while keeping all of them in some conditional -structure in the DocBook source. No idea how to do this, so we ended -up listing all the ISBN numbers next to their format in the colophon -page.
- -If you want to check out the finished result, check out the -source repository at -github -(future/new/official -repository). We expect it to be ready and announced in a few -days.
+ +Today I switched to +my +new laptop. I've previously written about the problems I had with +my new Thinkpad X230, which was delivered with an +180 +GB Intel SSD disk with Lenovo firmware that did not handle +sustained writes. My hardware supplier have been very forthcoming in +trying to find a solution, and after first trying with another +identical 180 GB disks they decided to send me a 256 GB Samsung SSD +disk instead to fix it once and for all. The Samsung disk survived +the installation of Debian with encrypted disks (filling the disk with +random data during installation killed the first two), and I thus +decided to trust it with my data. I have installed it as a Debian Edu +Wheezy roaming workstation hooked up with my Debian Edu Squeeze main +server at home using Kerberos and LDAP, and will use it as my work +station from now on.
+ +As this is a solid state disk with no moving parts, I believe the +Debian Wheezy default installation need to be tuned a bit to increase +performance and increase life time of the disk. The Linux kernel and +user space applications do not yet adjust automatically to such +environment. To make it easier for my self, I created a draft Debian +package ssd-setup to handle this tuning. The +source +for the ssd-setup package is available from collab-maint, and it +is set up to adjust the setup of the machine by just installing the +package. If there is any non-SSD disk in the machine, the package +will refuse to install, as I did not try to write any logic to sort +file systems in SSD and non-SSD file systems.
+ +I consider the package a draft, as I am a bit unsure how to best +set up Debian Wheezy with an SSD. It is adjusted to my use case, +where I set up the machine with one large encrypted partition (in +addition to /boot), put LVM on top of this and set up partitions on +top of this again. See the README file in the package source for the +references I used to pick the settings. At the moment these +parameters are tuned:
+ +-
+
+
- Set up cryptsetup to pass TRIM commands to the physical disk + (adding discard to /etc/crypttab) + +
- Set up LVM to pass on TRIM commands to the underlying device (in + this case a cryptsetup partition) by changing issue_discards from + 0 to 1 in /etc/lvm/lvm.conf. + +
- Set relatime as a file system option for ext3 and ext4 file + systems. + +
- Tell swap to use TRIM commands by adding 'discard' to + /etc/fstab. + +
- Change I/O scheduler from cfq to deadline using a udev rule. + +
- Run fstrim on every ext3 and ext4 file system every night (from + cron.daily). + +
- Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure + to 50 to reduce the kernel eagerness to swap out processes. + +
During installation, I cancelled the part where the installer fill +the disk with random data, as this would kill the SSD performance for +little gain. My goal with the encrypted file system is to ensure +those stealing my laptop end up with a brick and not a working +computer. I have no hope in keeping the really resourceful people +from getting the data on the disk (see +XKCD #538 for an explanation why). +Thus I concluded that adding the discard option to crypttab is the +right thing to do.
+ +I considered using the noop I/O scheduler, as several recommended +it for SSD, but others recommended deadline and a benchmark I found +indicated that deadline might be better for interactive use.
+ +I also considered using the 'discard' file system option for ext3 +and ext4, but read that it would give a performance hit ever time a +file is removed, and thought it best to that that slowdown once a day +instead of during my work.
+ +My package do not set up tmpfs on /var/run, /var/lock and /tmp, as +this is already done by Debian Edu.
+ +I have not yet started on the user space tuning. I expect +iceweasel need some tuning, and perhaps other applications too, but +have not yet had time to investigate those parts.
+ +The package should work on Ubuntu too, but I have not yet tested it +there.
+ +As for the answer to the question in the title of this blog post, +as far as I know, the only solution I know about is to replace the +disk. It might be possible to flash it with Intel firmware instead of +the Lenovo firmware. But I have not tried and did not want to do so +without approval from Lenovo as I wanted to keep the warranty on the +disk until a solution was found and they wanted the broken disks +back.
I -siste -høring om -referansekatalogen -for IT-standarder i offentlig sektor, med høringsfrist 2012-09-30 -(DIFI-sak 2012/498), ble det foreslått å fjerne ODF som obligatorisk -standard når en publiserte dokumenter som skulle kunne redigeres -videre av mottaker. NUUG og andre protesterte på forslaget, som er et -langt steg tilbake når det gjelder å sikre like rettigheter for alle -når en kommuniserer med det offentlige. For noen dager siden ble jeg -oppmerksom på at Direktoratet for forvaltning og IKT (DIFI) og -Fornyings-,administrasjons- og kirkedepartementet (FAD) har -konkludert, og oversendt forslag til regjeringen i saken. FADs -dokument -2012/2168-8, -«Utkast til endring av standardiseringsforskriften» datert 2013-02-06 -har følgende triste oppsummering fra høringen i saken:
- --Det kom noen innvendinger på forslaget om å fjerne ODF som -obligatorisk standard for redigerbare dokumenter. Innvendingene har -ikke blitt ilagt avgjørende vekt. -- -
Ved å fjerne ODF som obligatorisk format ved publisering av -redigerbare dokumenter setter en Norge tiår tilbake. Det som vil skje -er at offentlige etater går tilbake til kun å publisere dokumenter på -et av de mange formatene til Microsoft Office, og alle som ikke -aksepterer bruksvilkårene til Microsoft eller ikke har råd til å bruke -penger på å få tilgang til Microsoft Office må igjen basere seg på -verktøy fra utviklerne som er avhengig av å reversutvikle disse -formatene. I og med at ISO-spesifikasjonen for OOXML ikke komplett og -korrekt spesifiserer formatene til MS Office (men er nyttige å titte i -når en reversutvikler), er en tilbake til en situasjon der en ikke har -en -fri og åpen standard å forholde seg til, men i stedet må springe -etter Microsoft. Alle andre leverandører enn Microsoft vil dermed ha -en seriøs ulempe. Det er som å fjerne krav om bruk av meter som -måleenhet, og heretter aksepterer alle måleenheter som like gyldige, -når en vet at den mest brukte enheten vil være armlengden til Steve -Ballmer slik Microsoft måler den.
- -Jeg er ikke sikker på om forslaget er vedtatt av regjeringen ennå. -Kristian Bergem hos DIFI nevnte på et møte forrige tirsdag at han -trodde det var vedtatt i statsråd 8. mars, men jeg har ikke klart å -finne en skriftlig kilde på regjeringen.no som bekrefter dette. -Kanskje det ennå ikke er for sent...
- -Jeg ba i forrige uke om innsyn i dokument 6, 7 og 8 i FAD-saken, og -har i dag fått innsyn i dokument 7 og 8. Ble nektet innsyn i -dokumentet med tittelen «Oppsummering av høring om endringer i -forskrift om IT-standarder i offentlig forvaltning» med hjemmel i -off. lovens §15.1, så det er vanskelig å vite hvordan argumentene fra -høringen ble mottatt og forstått av saksbehandleren hos DIFI. Lurer -på hvordan jeg kan klage på at jeg ikke fikk se oppsummeringen. Fikk -tre PDFer tilsendt fra FAD, -Endring av underversjon i EHF, -Bakgrunnsnotat knyttet til versjon av EHF standarden i Forskrift om IT-standarder i offentlig sektor og -Utkast til endring av standardiseringsforskriften, hvis du vil ta en titt.
+ +A few days ago, I wrote about +the +problems I experienced with my new X230 and its SSD disk, which +was dying during installation because it is unable to cope with +sustained write. My supplier is in contact with +Lenovo, and they wanted to send a +replacement disk to try to fix the problem. They decided to send an +identical model, so my hopes for a permanent fix was slim.
+ +Anyway, today I got the replacement disk and tried to install +Debian Edu Wheezy with encrypted disk on it. The new disk have the +same firmware version as the original. This time my hope raised +slightly as the installation progressed, as the original disk used to +die after 4-7% of the disk was written to, while this time it kept +going past 10%, 20%, 40% and even past 50%. But around 60%, the disk +died again and I was back on square one. I still do not have a new +laptop with a disk I can trust. I can not live with a disk that might +lock up when I download a new +Debian Edu / Skolelinux ISO or +other large files. I look forward to hearing from my supplier with +the next proposal from Lenovo.
+ +The original disk is marked Intel SSD 520 Series 180 GB, +11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW: +LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722, +Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model: +SSDSC2BW180A3L 2.5" 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU +P/N 45N8295, P0C38732.
+ +The replacement disk is marked Intel SSD 520 Series 180 GB, +11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW: +LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722, +Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model: +SSDSC2BW180A3L 2.5" 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU +P/N 45N8295, P0C38732.
+ +The only difference is in the first number (serial number?), ISN, +SA, date and WNPP values. Mentioning all the details here in case +someone is able to use the information to find a way to identify the +failing disk among working ones (if any such working disk actually +exist).
Via -twitter -I just discovered that Pcwizz have -done a video -review on Youtube of Skolelinux -/ Debian Edu version 6. He installed the standalone profile and -the video show a walk-through of of the menu content, demonstration of -a few programs and his view of our distribution.
- -There is also some really nice quotes (transcribed by me, might -have heard wrong). While looking thought the Graphics menu:
- --"Basically everything you ever need in a school environment." -- -
And as a general evaluation of the entire distribution:
- --"So, yeah, a bit bloated. It kept all the Debian stuff in there, just -to keep it nice and GNU. So, I do not want to go on about it, but -lets give it 7 out of 10. I am not going to use it. That is because -I am not deploying a school network. There may be some mythical -feature to help you deploy Skolelinux on a school network." -- -
To bad he did not test the server profile, and discovered the PXE -installation option. It make it possible to install only the main -server from CD, and the rest of the machines via the net, and might be -considered the mythical feature he talk about. :)
- -While looking through the menus, there is also this funny comment -about the part of the K menu generated from the Debian menu subsystem: - -
-"[The K menu] have a special Debian section for software that no-one -is going to look at, because it contain lots of junky stuff that you -actually don't need in the education distribution, but have just been -included because it isn't stripped out for some reason." -- -
I guess it is yet another argument for merging the Debian menu and -Gnome/KDE desktop menu entries into -one -consistent menu system instead of two incomplete and partly -inconsistent menu systems.
- -The entire video is available below for those accepting iframe -embedding:
- - + +The upcoming Saturday, 2013-07-13, we are organising a combined +Debian Edu developer gathering and Debian and Ubuntu bug squashing +party in Oslo. It is organised by the +member assosiation NUUG and +the Debian Edu / Skolelinux +project together with the hack space +Bitraf.
+ +It starts 10:00 and continue until late evening. Everyone is +welcome, and there is no fee to participate. There is on the other +hand limited space, and only room for 30 people. Please put your name +on the event +wiki page if you plan to join us.
Min venn Erik Vold har på vegne av styret i -Frikanalen sendt ut -følgende -epost til alle kanalens medlemmer og støttespillere, i et forsøk -på å redde kanalen etter at kulturdepartementet kuttet all -finansiering i fjor høst. Jeg fikk meldingen som -NUUG-styremedlem, og mener den -trenger et større publikum. Jeg gjengir den derfor i sin helhet, -inkludert lenken til budsjett og regnskapsutkast, etter -avtale -med Erik.
- --- -Til Frikanalens støttespillere
- -Frivillighetens TV kanal har med minimal støtte avviklet daglige -sendinger siden 2009 og til tross for at statsstøtten uteble i år, er -vi nå i full gang med å utvikle et nytt TV system som foreningen selv -vil eie. Departementet fikk dessverre ikke med seg at nettet vil -berike TV sendingen fremfor å gjøre den overflødig. De har nå overlatt -finansieringen av videre drift til frivilligheten og vi håper derfor -på deres hjelp til å søke om midler. På kjøpet får dere langt flere -muligheter til å nå ut med deres budskap og med utbyggingen av Hybrid -TV (nett på TV) kan vi sammen motbevise departementets påstand.
- -Kostnaden med denne utviklingen er svært lav ettersom de fleste -programmererne jobber gratis og alt er basert på åpen kildekode der -man deler hverandres bidrag til kringkastingsorienterte systemer. I -samarbeid med flere europeiske kanaler i EBU (SVT, BBC, NRK, ZDF, ARD, -France Televisions etc) ønsker vi å bygge opp et nettverk for delt -support og åpen kildekode der Frikanalen er den eneste sandkassen hvor -ny teknologi kan testes på luft. Riks TV åpner for annonsering av -nettinnhold relatert til det du ser på TV (streamevents i HbbTV) -allerede i sommer. Med støtte fra Media Netwerk som drifter Frikanalen -samt Sofia Digital som stiller med Hybrid TV server er vi & NRK sikret -en sentral rolle i utprøvingen. Det vil da bli mulig og streame -direkte til Riks TV sine nye mottakere (og nye IDTV'er) i HD samt at -TV'n kan annonsere en link til deres organisasjonssider, med -oppdaterte nyheter (RSS feeds), relaterte videoer etc., under -avviklingen av deres innslag.
- -Vi tror sendingene på den nye nettstyrte TV-kanalen vil bli rikere enn -på den kommersielle plattformen vi har vært på så langt. Brukerne vil -nå få en tettere integrasjon med sosiale medier samt at innholdet -etterhvert kommer ut på Hybrid TV og mobile enheter. Teknisk ansvarlig -i Frikanalen, Erik Vold, er sentral i utviklingen av streamingdelen -for tv.nrk.no (årets produkt i PC World) og erfaringen NRK har gjort -på mobile enheter kan videreføres til oss. Det er heller ingen tvil om -at Hybrid TV vil bli en suksess også i Norge. Erik sitter i Nordig som -har vedtatt en felles standard for de nordiske kringkasterne basert på -HbbTV. Denne standarden bruker web-protokoller som gjør det like -enkelt og billig å utvikle tjenester for Hybrid TV som å lage en -nettside. Samtlige nye TV apparater solgt i Norden vil ha støtte for -HbbTV og med det tror vi oppslutningen vil bli like stor som ellers i -Europa (Tyskland og Frankrike tredoblet antall HbbTV-brukere i -fjor). Vi forventer også mye d rahjelp fra disse foregangslandene. Vår -utvikler Tore Sinding Bekkedal er i skriv ende stund på en HbbTV -workshop med EBU-medlemmer hos IRT i München der han på vegne av NRK -tester og utvikler ny stremingteknologi (MPEG- DASH) for -mobile enheter og hybrid TV.
- -Frikanalen har forøvrig flyttet inn i nye kostnadsfrie lokaler på -Chateau Neuf. Med massiv hjelp fra frivillige får vi der en -flerkameraregi i egnede lokaler. Dette åpner for debatter, konserter, -events og mye spennende innhold i samarbeid med Student TV'ene.
- -Med hjelp fra NUUG har også streamingdelen av systemet fått plass på -Uninett (Forskningsparken) og dermed er vi på Norges beste -internettlinjer. Vi åpner med dette for live mottak fra samtlige -medlemmer og på sikt kan vi tilby HD på hybrid TV og PC / MAC / mobil.
- -Avvikling på luft skjer allerede med egenutviklede løsninger i åpen -kildekode (playout og live-koding). Det er også mulig å se første -byggetrinn med programoversikt og videoer på nett, men foreløpig kun -for nettleserne Opera, Chrome og Firefox: -http://beta.frikanalen.tv/guide/ -og -http://beta.frikanalen.tv/video/. Kom -gjerne med ønsker og tilbakemeldinger til vår hovedutvikler Benjamin -Bruheim: grolgh (at) gmail.com
- -Med en tettere tilknytning til Akademia og NRK, er det god grunn til å -tro at utviklingen vil skyte fart og at vi raskere kommer ut med -dagsaktuelt innhold.
- -Vi sender i dag på Riks TV og Altibox, men ikke lenger på TV8. Det er -viktig for våre brukere igjen å komme ut på Get og Canal Digital, -dermed er det svært heldig at vi nå har formidlingsplikt på kabel. Til -tross for at det tar noe tid å få nye avtaler på plass, med frivillig -juridisk bistand, vil vi sannsynligvis komme bedre ut i andre enden -også her. Formidlingsplikten gjelder samtlige kabeldistribusjoner i -Norge, ikke bare de regionene TV8 hadde avtale med.
- -Om alt dette skal se dagens lys er vi avhengig av en -grunnfinansiering. Deres medlemsavgifter er i så måte et svært viktig -bidrag som vi er veldig takknemlige for. Vi ser oss likevel nødt til -å be dere om å delta i arbeidet med å dekke de resterende -driftskostnader. Frikanalen sin arbeidskapasitet er betydelig redusert -etter at foreningen ikke lenger kunne finansiere en daglig leder, men -allmøtet kan åpne for at flere bidrar til inntjening (Ekstraordinær -generalforsamling foreslo å tillate sponsorplakater på sendeflaten og -deler av disse inntektene kan tilfalle kanalen). Håper alle -medlemmene kan hjelpe oss med å skrive søknader og skaffe sponsorer, -eller i det minste komme med gode forslag til inntjening. Det er ikke -mye som skal til for å klare videre drift, kun 0,5 mill. pr år.
- -Med en støtte som tilsvarer en norsk kortfilm vil vi kunne redde -sendearkivet for flere tusen videoer bygget opp av frivilligheten -gjennom 5 år og vi dobler kapasiteten for å ta imot nye (De som -leverer HD vil for øvrig kunne få HD på nett, mobil og hybrid TV).
- -Vi vil også kunne videreføre konsesjonen på Riks TV og realisere en -formidlingsplikt på kabel som har en årlig verdi på ca. 5 millioner -kroner (når over 2/3 av Norges befolkning).
- -Uten støtte står verdens eneste nasjonale nettstyrte åpne TV kanal i -fare for å forsvinne. En konkursbegjæring vil gjøre at utstyrsparken -går til advokatsalærer i behandling av boet og kreditorene vil ikke -kunne få dekket sine krav. Det mener vi ikke bare er urett ovenfor -långiverne, men det er urett mot alle de som har bidratt med å bygge -opp frivillighetens eneste sendearkiv og ikke minst alle de som i dag -jobber frivillig med å videreutvikle TV-systemet.
- -Håper dere i likhet med styret ser verdien i videre drift og kan melde -tilbake innen årsmøtet (Kontaktinformasjon til styret og frivillige -utviklere er i kopifeltet).
- -Vennligst fyll ut det blå feltet i regnearket under med det dere tror -er mulig å få inn. Det dere skriver her er ikke bindende, men gir -styret en indikasjon på om videre drift er mulig. Det blir tatt -stilling til av generalforsamlingen medio mars. Setter derfor pris på -om alle kan bidra med forslag til støtte eller antatte verdier fra -søknad/spons innen det.
- -Forhåpentligvis når vi også ønsket budsjett på 1 mill. pr år. Med det -kan vi nedbetale gjelden raskere og sørge for en bedre -tilgjengelighet, samt raskere utvikling:
- - - -Med vennlig hilsen -
-
Styret i Frikanalen
Jeg håper noen av mine lesere med dette ser verdien av Frikanalen -og melder seg inn for å sende sine videoer ut på TV til RiksTV og -Altibox-seerne. Det haster. à rsmøtet i foreningen Frikanalen skal -straks avholdes, og innen den tid må en redningsplan være på plass. -NUUG bidrar allerede litt ved å organisere utviklersamlinger og -finansiere litt mat og drikke til de frivillige som stiller opp på -dugnadsbasis for å utvikle den tekniske løsningen. Det er ikke nok -til å redde kanalen, men gir et lite steg i riktig retning.
- -Update 2013-03-13 13:00: Epostlistelenkene -fungerer ikke lenger, da epostarkivet nå ikke lenger er tilgjengelig -for ikke-abonnenter. Korrigerte teksten fra styret litt etter -oppfordring fra Frikanalen-styret.
+ +Half a year ago, I reported that I had to find a +replacement +for my trusty old Thinkpad X41. Unfortunately I did not have much +time to spend on it, and it took a while to find a model I believe +will do the job, but two days ago the replacement finally arrived. I +ended up picking a +Thinkpad X230 +with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as +a roaming workstation, and it seemed to work flawlessly. But my +second installation with encrypted disk was not as successful. More +on that below.
+ +I had a hard time trying to track down a good laptop, as my most +important requirements (robust and with a good keyboard) are never +listed in the feature list. But I did get good help from the search +feature at Prisjakt, which +allowed me to limit the list of interesting laptops based on my other +requirements. A bit surprising that SSD disk are not disks according +to that search interface, so I had to drop specifying the number of +disks from my search parameters. I also asked around among friends to +get their impression on keyboards and robustness.
+ +So the new laptop arrived, and it is quite a lot wider than the +X41. I am not quite convinced about the keyboard, as it is +significantly wider than my old keyboard, and I have to stretch my +hand a lot more to reach the edges. But the key response is fairly +good and the individual key shape is fairly easy to handle, so I hope +I will get used to it. My old X40 was starting to fail, and I really +needed a new laptop now. :)
+ +Turning off the touch pad was simple. All it took was a quick +visit to the BIOS during boot it disable it.
+ +But there is a fatal problem with the laptop. The 180 GB SSD disk +lock up during load. And this happen when installing Debian Wheezy +with encrypted disk, while the disk is being filled with random data. +I also tested to install Ubuntu Raring, and it happen there too if I +reenable the code to fill the disk with random data (it is disabled by +default in Ubuntu). And the bug with is already known. It was +reported to Debian as BTS +report #691427 2012-10-25 (journal commit I/O error on brand-new +Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux +kernel developers as +Kernel bugzilla +report #51861 2012-12-20 (Intel SSD 520 stops working under load +(SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the +Lenovo forums, both for +T430 +2012-11-10 and for +X230 +03-20-2013. The problem do not only affect installation. The +reports state that the disk lock up during use if many writes are done +on the disk, so it is much no use to work around the installation +problem and end up with a computer that can lock up at any moment. +There is even a +small C program +available that will lock up the hard drive after running a few +minutes by writing to a file.
+ +I've contacted my supplier and asked how to handle this, and after +contacting PCHELP Norway (request 01D1FDP) which handle support +requests for Lenovo, his first suggestion was to upgrade the disk +firmware. Unfortunately there is no newer firmware available from +Lenovo, as my disk already have the most recent one (version LF1i). I +hope to hear more from him today and hope the problem can be +fixed. :)
Om noen år skal mine barn antagelig begynne på skolen i Oslo. Der -skal de blant annet lære seg å verdsette og håndheve sine egne grenser -og beskytte sin personlige integritet og privatsfære. Det blir ikke -enkelt når ledelsen i Osloskolen med vitende og vilje legger opp til å -krenke elevenes privatsfære ved å la politiet ransake elevene med -narkohund i klasserommet. Jon Wessel-Aas har publisert noen -interessante kommentarer om hvorfor dette er ulovlig. - -
-
-
-
- Bruk av narkohund i - klasserom â fra vondt til verre (2013-03-09) - -
- Ulovlig og - menneskerettsstridig bruk av narkohund i klasserom - (2012-03-12) - -
Jeg er veldig glad for at han bidrar med argumenter og forklaringer -vi foreldre kan ta med oss når vi skal protestere på og få en slutt på -denne forkastelige praksisen. Narkotikaproblemet må adresseres på -andre måter som ikke krenker barn og ungdoms integritet. Jeg ønsker -ikke at mine barn skal læres opp til å akseptere radering av -privatlivets fred, men heller at de skal læres opp til å sloss imot -den innføringen av stadig mer totalitær overvåkning som har pågått -over mange år i Norge.
+ +Half a year ago, I reported that I had to find a replacement for my +trusty old Thinkpad X41. Unfortunately I did not have much time to +spend on it, but today the replacement finally arrived. I ended up +picking a Thinkpad +X230 with SSD disk (NZDAJMN). I first test installed Debian Edu +Wheezy as a roaming workstation, and it worked flawlessly. As I write +this, it is installing what I hope will be a more final installation, +with a encrypted hard drive to ensure any dope head stealing it end up +with an expencive door stop.
+ +I had a hard time trying to track down a good laptop, as my most
+important requirements (robust and with a good keyboard) are never
+listed in the feature list. But I did get good help from the search
+feature at
I am not quite convinced about the keyboard, as it is significantly +wider than my old keyboard, and I have to stretch my hand a lot more +to reach the edges. But the key response is fairly good and the +individual key shape is fairly easy to handle, so I hope I will get +used to it. My old X40 was starting to fail, and I really needed a +new laptop now. :)
+ +I look forward to figuring out how to turn off the touch pad.
Last Sunday, 2013-03-03,, Holger Levsen announced the first update -of Skolelinux / Debian Edu -based on Debian Squeeze. This is the first update since -the -initial release 2012-03-11. This is the -release -announcement email from Holger:
- -Hi,
- -it's my pleasure to announce the immediate availability of Debian -Edu 6.0.7+r1 ("Debian Edu Squeeze").
- -Debian Edu 6.0.7+r1 is an incremental update to Debian Edu -6.0.4+r0, containing all the changes between Debian 6.0.4 and 6.0.7 as -well Debian Edu specific bugfixes and enhancements. See below (in this -mail) for the full list of (edu) changes. Please see -http://www.debian.org/News/2012/20120311 -for more information on "Debian Edu Squeeze".
- -Images are available for download at -http://ftp.skolelinux.org/skolelinux-cd/
- -md5sums: -
- -
1fe79eb4f0f9ae1c58fc318e26cc1e2e debian-edu-6.0.7+r1-CD.iso -
a6ddd924a8bd9a1b5ca122e8fe1c34ec debian-edu-6.0.7+r1-DVD.iso -
ac6c72cd7925ccec51bfbf58e2a7c69c debian-edu-6.0.7+r1-source-DVD.isosha1sums: -
- -
a4b58233b672a99c7df8dc24fb6de3327654a5c3 debian-edu-6.0.7+r1-CD.iso -
9b524915e0ff2aa793f13d93123e5bd2bab2dbaa debian-edu-6.0.7+r1-DVD.iso -
43997614893fc5e9e59ad6ce066b05d07fd836fa debian-edu-6.0.7+r1-source-DVD.isoThese images are suitable for amd64+i386.
- -Changes for Debian Edu 6.0.7+r1 Codename "Squeeze", released -2013-03-03:
+ +3rd July 2013+The fourth wheezy based alpha release of Debian Edu was wrapped up +today. This is the release announcement:
+ +New features for Debian Edu 7.1+edu0~alpha3 released +2013-07-03
+ +These are the release notes for for Debian Edu / Skolelinux +7.1+edu0~alpha3, based on Debian with codename "Wheezy".
+ +About Debian Edu and Skolelinux
+ +Debian Edu, also known as +Skolelinux, is a Linux distribution based on Debian providing an +out-of-the box environment of a completely configured school +network. Immediately after installation a school server running all +services needed for a school network is set up just waiting for users +and machines being added via GOsa², a comfortable Web-UI. A netbooting +environment is prepared using PXE, so after initial installation of +the main server from CD, DVD or USB stick all other machines can be +installed via the network. The provided school server provides LDAP +database and Kerberos authentication service, centralized home +directories, DHCP server, web proxy and many other services. The +desktop contains +more +than 60 educational software packages and more are available from +the Debian archive, and schools can choose between KDE, Gnome, LXDE +and Xfce desktop environment.
+ +This is the fourth test release based on Debian Wheezy. Basically +this is an updated and slightly improved version compared to the +Squeeze release.
+ +Software updates
++
+- Dropped ispell dictionaries from our default installation.
+- Dropped menu-xdg from the KDE desktop option, to drop the Debian + submenu. It was not included with Gnome, LXDE or Xfce, so this + brings KDE in line with the others.
+- Dropped xdrawchem, xjig and xsok from our default installation as + they don't have a desktop menu entry and thus won't show up in the + menu now that menu-xdg was removed.
+- Removed the killer system to kill left behind processes on + multi-user machines, as it was no longer able to understand when a + X display was in use and killed the processes of the active users + too.
+- Dropped the golearn (from goplay) package as the debtags in wheezy + are too few to make the package useful.
+Other changes
++
+- Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy +
- Multi-arch i386/amd64 USB stick ISO available.
+- Got rid of ispell/wordlist related debconf questions that showed + up for some language options.
+- Switched to using http.debian.net as APT source by default.
+- Fixed proxy configuration on Main Server installations.
+- Changed LTSP setup to ask dpkg to use force-unsafe-io the same way + d-i is doing it.
+- Made sure root and user passwords were not left behind in the + debconf database after installation on Main Server installations.
+- Made Roaming Workstation dynamic setup more robust and added draft + script setup-ad-client to hook a Roaming Workstation up to a + Active Directory server instead of a Debian Edu Main Server.
+- Update system to install needed firmware packages during + installation, to work properly in Wheezy.
+- Update system to handle hardware quirks (debian-edu-hwsetup).
+- Corrected PXE installation setup to properly pass selected desktop + and keymap settings to PXE installation clients.
+- LTSP diskless workstations use sshfs by default, allowing them to + work without adding them to DNS and NIS netgroups for NFS access.
+Known issues
++
+- No mass import of user account data in GOsa (ldif or csv) + available yet (698840).
+- Artwork not enabled for all desktops.
+Where to get it
+To download the multiarch netinstall CD release you can use
-
- -- sitesummary was updated from 0.1.3 to 0.1.8 -
--
- Make Nagios configuration more robust and efficient
-- Comply with 3.X kernel
-- debian-edu-doc from 1.4~20120310~6.0.4+r0 to 1.4~20130228~6.0.7+r1 -
--
- Minor updates from the wiki
-- Danish translation now complete
-- debian-edu-config from 1.453 to 1.455 -
-
-- Fix /etc/hosts for LTSP diskless workstations. Closes: #699880
-- Make ltsp_local_mount script work for multiple devices.
-- Correct Kerberos user policy: don't expire password after 2 days. - Closes: #664596
-- Handle '#' characters in the root or first users password. - Closes: #664976
-- Fixes for gosa-sync: -
--
- Don't fail if password contains "
-- Don't disclose new password string in syslog
-- Fixes for gosa-create: -
--
- Invalidate libnss cache before applying changes
-- Multiple failures during mass user import into GOsa²
-- gosa-netgroups plugin: don't erase entries of attribute type - "memberNisNetgroup". Closes: #687256
-- First user now uses the same Kerberos policy as all other users
-- Add Danish web page
-- debian-edu-install from 1.528 to 1.530 -
+-
- Improve preseeding support and documentation
-- ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso
+- http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso
+- rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .
End-user documentation in English is available at -http://wiki.debian.org/DebianEdu/Documentation/Squeeze/ -- translations to French, Italian, Danish and German are available in -the debian-edu-doc package. (Other languages could use your help!)
-If you want to contribute to Debian Edu, please join our -mailinglist -debian-edu@lists.debian.org! -
+The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c +
+ +
The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8To download the multiarch USB stick ISO release you can use
++
-- ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso
+- http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso
+- rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .
+I am very happy to see the fruits of a year of hard work. :)
+The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac +
+ +
The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721How to report bugs
+ +