1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml" dir=
"ltr">
5 <meta http-equiv=
"Content-Type" content=
"text/html;charset=utf-8" />
6 <title>Petter Reinholdtsen: entries from July
2018</title>
7 <link rel=
"stylesheet" type=
"text/css" media=
"screen" href=
"http://people.skolelinux.org/pere/blog/style.css" />
8 <link rel=
"stylesheet" type=
"text/css" media=
"screen" href=
"http://people.skolelinux.org/pere/blog/vim.css" />
9 <link rel=
"alternate" title=
"RSS Feed" href=
"07.rss" type=
"application/rss+xml" />
15 <a href=
"http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen
</a>
22 <h3>Entries from July
2018.
</h3>
26 <a href=
"http://people.skolelinux.org/pere/blog/Simple_streaming_the_Linux_desktop_to_Kodi_using_GStreamer_and_RTP.html">Simple streaming the Linux desktop to Kodi using GStreamer and RTP
</a>
32 <p>Last night, I wrote
33 <a href=
"http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html">a
34 recipe to stream a Linux desktop using VLC to a instance of Kodi
</a>.
35 During the day I received valuable feedback, and thanks to the
36 suggestions I have been able to rewrite the recipe into a much simpler
37 approach requiring no setup at all. It is a single script that take
40 <p>This new script uses GStreamer instead of VLC to capture the
41 desktop and stream it to Kodi. This fixed the video quality issue I
42 saw initially. It further removes the need to add a m3u file on the
43 Kodi machine, as it instead connects to
44 <a href=
"https://kodi.wiki/view/JSON-RPC_API/v8">the JSON-RPC API in
45 Kodi
</a> and simply ask Kodi to play from the stream created using
46 GStreamer. Streaming the desktop to Kodi now become trivial. Copy
47 the script below, run it with the DNS name or IP address of the kodi
48 server to stream to as the only argument, and watch your screen show
49 up on the Kodi screen. Note, it depend on multicast on the local
50 network, so if you need to stream outside the local network, the
51 script must be modified. Also note, I have no idea if audio work, as
52 I only care about the picture part.
</p>
57 # Stream the Linux desktop view to Kodi. See
58 # http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html
59 # for backgorund information.
61 # Make sure the stream is stopped in Kodi and the gstreamer process is
62 # killed if something go wrong (for example if curl is unable to find the
63 # kodi server). Do the same when interrupting this script.
68 curl --silent --header 'Content-Type: application/json' \
69 --data-binary "{ \"id\":
1, \"jsonrpc\": \"
2.0\", \"method\": \"$cmd\", \"params\": $params }" \
70 "http://$host/jsonrpc"
73 if [ -n "$kodihost" ] ; then
74 # Stop the playing when we end
75 playerid=$(kodicmd "$kodihost" Player.GetActivePlayers "{}" |
76 jq .result[].playerid)
77 kodicmd "$kodihost" Player.Stop "{ \"playerid\" : $playerid }"
> /dev/null
79 if [ "$gstpid" ] && kill -
0 "$gstpid"
>/dev/null
2>&1; then
96 pasrc=$(pactl list | grep -A2 'Source #' | grep 'Name: .*\.monitor$' | \
97 cut -d" " -f2|head -
1)
98 gst-launch-
1.0 ximagesrc use-damage=
0 ! video/x-raw,framerate=
30/
1 ! \
99 videoconvert ! queue2 ! \
100 x264enc bitrate=
8000 speed-preset=superfast tune=zerolatency qp-min=
30 \
101 key-int-max=
15 bframes=
2 ! video/x-h264,profile=high ! queue2 ! \
102 mpegtsmux alignment=
7 name=mux ! rndbuffersize max=
1316 min=
1316 ! \
103 udpsink host=$mcast port=$mcastport ttl-mc=$mcastttl auto-multicast=
1 sync=
0 \
104 pulsesrc device=$pasrc ! audioconvert ! queue2 ! avenc_aac ! queue2 ! mux. \
108 # Give stream a second to get going
111 # Ask kodi to start streaming using its JSON-RPC API
112 kodicmd "$kodihost" Player.Open \
113 "{\"item\": { \"file\": \"udp://@$mcast:$mcastport\" } }"
> /dev/null
115 # wait for gst to end
119 <p>I hope you find the approach useful. I know I do.
</p>
121 <p>As usual, if you use Bitcoin and want to show your support of my
122 activities, please send Bitcoin donations to my address
123 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
129 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/video">video
</a>.
134 <div class=
"padding"></div>
138 <a href=
"http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html">Streaming the Linux desktop to Kodi using VLC and RTSP
</a>
145 <ahref=
"http://people.skolelinux.org/pere/blog/Simple_streaming_the_Linux_desktop_to_Kodi_using_GStreamer_and_RTP.html">the
146 followup post
</a> for a even better approach.
</p>
148 <p>A while back, I was asked by a friend how to stream the desktop to
149 my projector connected to Kodi. I sadly had to admit that I had no
150 idea, as it was a task I never had tried. Since then, I have been
151 looking for a way to do so, preferable without much extra software to
152 install on either side. Today I found a way that seem to kind of
153 work. Not great, but it is a start.
</p>
155 <p>I had a look at several approaches, for example
156 <a href=
"https://github.com/mfoetsch/dlna_live_streaming">using uPnP
157 DLNA as described in
2011</a>, but it required a uPnP server, fuse and
158 local storage enough to store the stream locally. This is not going
159 to work well for me, lacking enough free space, and it would
160 impossible for my friend to get working.
</p>
162 <p>Next, it occurred to me that perhaps I could use VLC to create a
163 video stream that Kodi could play. Preferably using
164 broadcast/multicast, to avoid having to change any setup on the Kodi
165 side when starting such stream. Unfortunately, the only recipe I
166 could find using multicast used the rtp protocol, and this protocol
167 seem to not be supported by Kodi.
</p>
169 <p>On the other hand, the rtsp protocol is working! Unfortunately I
170 have to specify the IP address of the streaming machine in both the
171 sending command and the file on the Kodi server. But it is showing my
172 desktop, and thus allow us to have a shared look on the big screen at
173 the programs I work on.
</p>
175 <p>I did not spend much time investigating codeces. I combined the
176 rtp and rtsp recipes from
177 <a href=
"https://wiki.videolan.org/Documentation:Streaming_HowTo/Command_Line_Examples/">the
178 VLC Streaming HowTo/Command Line Examples
</a>, and was able to get
179 this working on the desktop/streaming end.
</p>
182 vlc screen:// --sout \
183 '#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{dst=projector.local,port=
1234,sdp=rtsp://
192.168.11.4:
8080/test.sdp}'
186 <p>I ssh-ed into my Kodi box and created a file like this with the
190 echo rtsp://
192.168.11.4:
8080/test.sdp \
191 > /storage/videos/screenstream.m3u
194 <p>Note the
192.168.11.4 IP address is my desktops IP address. As far
195 as I can tell the IP must be hardcoded for this to work. In other
196 words, if someone elses machine is going to do the steaming, you have
197 to update screenstream.m3u on the Kodi machine and adjust the vlc
198 recipe. To get started, locate the file in Kodi and select the m3u
199 file while the VLC stream is running. The desktop then show up in my
202 <p>When using the same technique to stream a video file with audio,
203 the audio quality is really bad. No idea if the problem is package
204 loss or bad parameters for the transcode. I do not know VLC nor Kodi
207 <p><strong>Update
2018-
07-
12</strong>: Johannes Schauer send me a few
208 succestions and reminded me about an important step. The "screen:"
209 input source is only available once the vlc-plugin-access-extra
210 package is installed on Debian. Without it, you will see this error
211 message: "VLC is unable to open the MRL 'screen://'. Check the log
212 for details." He further found that it is possible to drop some parts
213 of the VLC command line to reduce the amount of hardcoded information.
214 It is also useful to consider using cvlc to avoid having the VLC
215 window in the desktop view. In sum, this give us this command line on
219 cvlc screen:// --sout \
220 '#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{sdp=rtsp://:
8080/}'
223 <p>and this on the Kodi end
<p>
226 echo rtsp://
192.168.11.4:
8080/ \
227 > /storage/videos/screenstream.m3u
230 <p>Still bad image quality, though. But I did discover that streaming
231 a DVD using dvdsimple:///dev/dvd as the source had excellent video and
232 audio quality, so I guess the issue is in the input or transcoding
233 parts, not the rtsp part. I've tried to change the vb and ab
234 parameters to use more bandwidth, but it did not make a
237 <p>I further received a suggestion from Einar Haraldseid to try using
238 gstreamer instead of VLC, and this proved to work great! He also
239 provided me with the trick to get Kodi to use a multicast stream as
240 its source. By using this monstrous oneliner, I can stream my desktop
241 with good video quality in reasonable framerate to the
239.255.0.1
242 multicast address on port
1234:
245 gst-launch-
1.0 ximagesrc use-damage=
0 ! video/x-raw,framerate=
30/
1 ! \
246 videoconvert ! queue2 ! \
247 x264enc bitrate=
8000 speed-preset=superfast tune=zerolatency qp-min=
30 \
248 key-int-max=
15 bframes=
2 ! video/x-h264,profile=high ! queue2 ! \
249 mpegtsmux alignment=
7 name=mux ! rndbuffersize max=
1316 min=
1316 ! \
250 udpsink host=
239.255.0.1 port=
1234 ttl-mc=
1 auto-multicast=
1 sync=
0 \
251 pulsesrc device=$(pactl list | grep -A2 'Source #' | \
252 grep 'Name: .*\.monitor$' | cut -d" " -f2|head -
1) ! \
253 audioconvert ! queue2 ! avenc_aac ! queue2 ! mux.
256 <p>and this on the Kodi end
<p>
259 echo udp://@
239.255.0.1:
1234 \
260 > /storage/videos/screenstream.m3u
263 <p>Note the trick to pick a valid pulseaudio source. It might not
264 pick the one you need. This approach will of course lead to trouble
265 if more than one source uses the same multicast port and address.
266 Note the ttl-mc=
1 setting, which limit the multicast packages to the
267 local network. If the value is increased, your screen will be
268 broadcasted further, one network "hop" for each increase (read up on
269 multicast to learn more. :)!
</p>
271 <p>Having cracked how to get Kodi to receive multicast streams, I
272 could use this VLC command to stream to the same multicast address.
273 The image quality is way better than the rtsp approach, but gstreamer
274 seem to be doing a better job.
</p>
277 cvlc screen:// --sout '#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{mux=ts,dst=
239.255.0.1,port=
1234,sdp=sap}'
280 <p>As usual, if you use Bitcoin and want to show your support of my
281 activities, please send Bitcoin donations to my address
282 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
288 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/video">video
</a>.
293 <div class=
"padding"></div>
297 <a href=
"http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_in_2018_.html">What is the most supported MIME type in Debian in
2018?
</a>
304 <a href=
"http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html">I
305 measured what the most supported MIME type in Debian was
</a>, by
306 analysing the desktop files in all packages in the archive. Since
307 then, the DEP-
11 AppStream system has been put into production, making
308 the task a lot easier. This made me want to repeat the measurement,
309 to see how much things changed. Here are the new numbers, for
310 unstable only this time:
312 <p><strong>Debian Unstable:
</strong></p>
316 ----- -----------------------
328 30 audio/x-vorbis+ogg
329 29 image/x-portable-pixmap
331 27 image/x-portable-bitmap
339 <p>The list was created like this using a sid chroot: "cat
340 /var/lib/apt/lists/*sid*_dep11_Components-amd64.yml.gz| zcat | awk '/^
341 - \S+\/\S+$/ {print $
2 }' | sort | uniq -c | sort -nr | head -
20"
</p>
343 <p>It is interesting to see how image formats have passed text/plain
344 as the most announced supported MIME type. These days, thanks to the
345 AppStream system, if you run into a file format you do not know, and
346 want to figure out which packages support the format, you can find the
347 MIME type of the file using "file --mime
<filename
>", and then
348 look up all packages announcing support for this format in their
349 AppStream metadata (XML or .desktop file) using "appstreamcli
350 what-provides mimetype
<mime-type
>. For example if you, like
351 me, want to know which packages support inode/directory, you can get a
355 % appstreamcli what-provides mimetype inode/directory | grep Package: | sort
362 Package: doublecmd-common
364 Package: enlightenment
384 </pre></blockquote></p>
386 <p>Using the same method, I can quickly discover that the Sketchup file
387 format is not yet supported by any package in Debian:
</p>
390 % appstreamcli what-provides mimetype application/vnd.sketchup.skp
391 Could not find component providing 'mimetype::application/vnd.sketchup.skp'.
393 </pre></blockquote></p>
395 <p>Yesterday I used it to figure out which packages support the STL
3D
399 % appstreamcli what-provides mimetype application/sla|grep Package
404 </pre></blockquote></p>
406 <p>PS: A new version of Cura was uploaded to Debian yesterday.
</p>
408 <p>As usual, if you use Bitcoin and want to show your support of my
409 activities, please send Bitcoin donations to my address
410 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
416 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram
</a>.
421 <div class=
"padding"></div>
425 <a href=
"http://people.skolelinux.org/pere/blog/Debian_APT_upgrade_without_enough_free_space_on_the_disk___.html">Debian APT upgrade without enough free space on the disk...
</a>
431 <p>Quite regularly, I let my Debian Sid/Unstable chroot stay untouch
432 for a while, and when I need to update it there is not enough free
433 space on the disk for apt to do a normal 'apt upgrade'. I normally
434 would resolve the issue by doing 'apt install
<somepackages
>' to
435 upgrade only some of the packages in one batch, until the amount of
436 packages to download fall below the amount of free space available.
437 Today, I had about
500 packages to upgrade, and after a while I got
438 tired of trying to install chunks of packages manually. I concluded
439 that I did not have the spare hours required to complete the task, and
440 decided to see if I could automate it. I came up with this small
441 script which I call 'apt-in-chunks':
</p>
446 # Upgrade packages when the disk is too full to upgrade every
447 # upgradable package in one lump. Fetching packages to upgrade using
448 # apt, and then installing using dpkg, to avoid changing the package
449 # flag for manual/automatic.
461 for p in $(apt list --upgradable | ignore "$@" |cut -d/ -f1 | grep -v '^Listing...'); do
464 apt install --download-only -y $p
465 for f in /var/cache/apt/archives/*.deb; do
467 dpkg -i /var/cache/apt/archives/*.deb
472 </pre></blockquote></p>
474 <p>The script will extract the list of packages to upgrade, try to
475 download the packages needed to upgrade one package, install the
476 downloaded packages using dpkg. The idea is to upgrade packages
477 without changing the APT mark for the package (ie the one recording of
478 the package was manually requested or pulled in as a dependency). To
479 use it, simply run it as root from the command line. If it fail, try
480 'apt install -f' to clean up the mess and run the script again. This
481 might happen if the new packages conflict with one of the old
482 packages. dpkg is unable to remove, while apt can do this.
</p>
484 <p>It take one option, a package to ignore in the list of packages to
485 upgrade. The option to ignore a package is there to be able to skip
486 the packages that are simply too large to unpack. Today this was
487 'ghc', but I have run into other large packages causing similar
488 problems earlier (like TeX).
</p>
490 <p>Update
2018-
07-
08: Thanks to Paul Wise, I am aware of two
491 alternative ways to handle this. The "unattended-upgrades
492 --minimal-upgrade-steps" option will try to calculate upgrade sets for
493 each package to upgrade, and then upgrade them in order, smallest set
494 first. It might be a better option than my above mentioned script.
495 Also, "aptutude upgrade" can upgrade single packages, thus avoiding
496 the need for using "dpkg -i" in the script above.
</p>
498 <p>As usual, if you use Bitcoin and want to show your support of my
499 activities, please send Bitcoin donations to my address
500 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
506 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>.
511 <div class=
"padding"></div>
513 <p style=
"text-align: right;"><a href=
"07.rss"><img src=
"http://people.skolelinux.org/pere/blog/xml.gif" alt=
"RSS Feed" width=
"36" height=
"14" /></a></p>
524 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/01/">January (
1)
</a></li>
526 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/02/">February (
5)
</a></li>
528 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/03/">March (
5)
</a></li>
530 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/04/">April (
3)
</a></li>
532 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/06/">June (
2)
</a></li>
534 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2018/07/">July (
4)
</a></li>
541 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/01/">January (
4)
</a></li>
543 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/02/">February (
3)
</a></li>
545 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/03/">March (
5)
</a></li>
547 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/04/">April (
2)
</a></li>
549 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/06/">June (
5)
</a></li>
551 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/07/">July (
1)
</a></li>
553 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/08/">August (
1)
</a></li>
555 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/09/">September (
3)
</a></li>
557 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/10/">October (
5)
</a></li>
559 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/11/">November (
3)
</a></li>
561 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/12/">December (
4)
</a></li>
568 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/01/">January (
3)
</a></li>
570 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/02/">February (
2)
</a></li>
572 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/03/">March (
3)
</a></li>
574 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/04/">April (
8)
</a></li>
576 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/05/">May (
8)
</a></li>
578 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/06/">June (
2)
</a></li>
580 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/07/">July (
2)
</a></li>
582 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/08/">August (
5)
</a></li>
584 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/09/">September (
2)
</a></li>
586 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/10/">October (
3)
</a></li>
588 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/11/">November (
8)
</a></li>
590 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/12/">December (
5)
</a></li>
597 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/01/">January (
7)
</a></li>
599 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/02/">February (
6)
</a></li>
601 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/03/">March (
1)
</a></li>
603 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/04/">April (
4)
</a></li>
605 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/05/">May (
3)
</a></li>
607 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/06/">June (
4)
</a></li>
609 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/07/">July (
6)
</a></li>
611 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/08/">August (
2)
</a></li>
613 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/09/">September (
2)
</a></li>
615 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/10/">October (
9)
</a></li>
617 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/11/">November (
6)
</a></li>
619 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/12/">December (
3)
</a></li>
626 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/01/">January (
2)
</a></li>
628 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/02/">February (
3)
</a></li>
630 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/03/">March (
8)
</a></li>
632 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/04/">April (
7)
</a></li>
634 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/05/">May (
1)
</a></li>
636 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/06/">June (
2)
</a></li>
638 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/07/">July (
2)
</a></li>
640 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/08/">August (
2)
</a></li>
642 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/09/">September (
5)
</a></li>
644 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/10/">October (
6)
</a></li>
646 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/11/">November (
3)
</a></li>
648 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/12/">December (
5)
</a></li>
655 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/01/">January (
11)
</a></li>
657 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/02/">February (
9)
</a></li>
659 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/03/">March (
9)
</a></li>
661 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/04/">April (
6)
</a></li>
663 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/05/">May (
9)
</a></li>
665 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/06/">June (
10)
</a></li>
667 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/07/">July (
7)
</a></li>
669 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/08/">August (
3)
</a></li>
671 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/09/">September (
5)
</a></li>
673 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/10/">October (
7)
</a></li>
675 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/11/">November (
9)
</a></li>
677 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/12/">December (
3)
</a></li>
684 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/01/">January (
7)
</a></li>
686 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/02/">February (
10)
</a></li>
688 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/03/">March (
17)
</a></li>
690 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/04/">April (
12)
</a></li>
692 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/05/">May (
12)
</a></li>
694 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/06/">June (
20)
</a></li>
696 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/07/">July (
17)
</a></li>
698 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/08/">August (
6)
</a></li>
700 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/09/">September (
9)
</a></li>
702 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/10/">October (
17)
</a></li>
704 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/11/">November (
10)
</a></li>
706 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/12/">December (
7)
</a></li>
713 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/01/">January (
16)
</a></li>
715 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/02/">February (
6)
</a></li>
717 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/03/">March (
6)
</a></li>
719 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/04/">April (
7)
</a></li>
721 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/05/">May (
3)
</a></li>
723 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/06/">June (
2)
</a></li>
725 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/07/">July (
7)
</a></li>
727 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/08/">August (
6)
</a></li>
729 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/09/">September (
4)
</a></li>
731 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/10/">October (
2)
</a></li>
733 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/11/">November (
3)
</a></li>
735 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/12/">December (
1)
</a></li>
742 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/01/">January (
2)
</a></li>
744 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/02/">February (
1)
</a></li>
746 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/03/">March (
3)
</a></li>
748 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/04/">April (
3)
</a></li>
750 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/05/">May (
9)
</a></li>
752 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/06/">June (
14)
</a></li>
754 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/07/">July (
12)
</a></li>
756 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/08/">August (
13)
</a></li>
758 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/09/">September (
7)
</a></li>
760 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/10/">October (
9)
</a></li>
762 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/11/">November (
13)
</a></li>
764 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/12/">December (
12)
</a></li>
771 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/01/">January (
8)
</a></li>
773 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/02/">February (
8)
</a></li>
775 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/03/">March (
12)
</a></li>
777 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/04/">April (
10)
</a></li>
779 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/05/">May (
9)
</a></li>
781 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/06/">June (
3)
</a></li>
783 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/07/">July (
4)
</a></li>
785 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/08/">August (
3)
</a></li>
787 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/09/">September (
1)
</a></li>
789 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/10/">October (
2)
</a></li>
791 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/11/">November (
3)
</a></li>
793 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/12/">December (
3)
</a></li>
800 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/11/">November (
5)
</a></li>
802 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/12/">December (
7)
</a></li>
813 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (
16)
</a></li>
815 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/amiga">amiga (
1)
</a></li>
817 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/aros">aros (
1)
</a></li>
819 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bankid">bankid (
4)
</a></li>
821 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (
9)
</a></li>
823 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (
17)
</a></li>
825 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bsa">bsa (
2)
</a></li>
827 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (
2)
</a></li>
829 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian (
160)
</a></li>
831 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (
158)
</a></li>
833 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian-handbook">debian-handbook (
4)
</a></li>
835 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/digistan">digistan (
10)
</a></li>
837 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/dld">dld (
17)
</a></li>
839 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/docbook">docbook (
25)
</a></li>
841 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (
4)
</a></li>
843 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/english">english (
378)
</a></li>
845 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (
23)
</a></li>
847 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (
13)
</a></li>
849 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (
32)
</a></li>
851 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/freedombox">freedombox (
9)
</a></li>
853 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (
18)
</a></li>
855 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/h264">h264 (
20)
</a></li>
857 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/intervju">intervju (
42)
</a></li>
859 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (
16)
</a></li>
861 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/kart">kart (
20)
</a></li>
863 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ldap">ldap (
9)
</a></li>
865 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lego">lego (
4)
</a></li>
867 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lenker">lenker (
8)
</a></li>
869 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd (
2)
</a></li>
871 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (
1)
</a></li>
873 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/mesh network">mesh network (
8)
</a></li>
875 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (
41)
</a></li>
877 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/nice free software">nice free software (
10)
</a></li>
879 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/norsk">norsk (
299)
</a></li>
881 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/nuug">nuug (
190)
</a></li>
883 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (
33)
</a></li>
885 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/open311">open311 (
2)
</a></li>
887 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (
71)
</a></li>
889 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/personvern">personvern (
107)
</a></li>
891 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/raid">raid (
2)
</a></li>
893 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/reactos">reactos (
1)
</a></li>
895 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/reprap">reprap (
11)
</a></li>
897 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rfid">rfid (
3)
</a></li>
899 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/robot">robot (
10)
</a></li>
901 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rss">rss (
1)
</a></li>
903 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ruter">ruter (
6)
</a></li>
905 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (
2)
</a></li>
907 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (
54)
</a></li>
909 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (
4)
</a></li>
911 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (
5)
</a></li>
913 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/standard">standard (
55)
</a></li>
915 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (
6)
</a></li>
917 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (
12)
</a></li>
919 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (
55)
</a></li>
921 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (
4)
</a></li>
923 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/usenix">usenix (
2)
</a></li>
925 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/valg">valg (
9)
</a></li>
927 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/verkidetfri">verkidetfri (
11)
</a></li>
929 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/video">video (
66)
</a></li>
931 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (
4)
</a></li>
933 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/web">web (
41)
</a></li>
939 <p style=
"text-align: right">
940 Created by
<a href=
"http://steve.org.uk/Software/chronicle">Chronicle v4.6
</a>