I år igjen er Microsoft-politiet BSA ute med løgnpropagandaen sin. -Hvert år de siste årene har BSA, lobbyfronten til de store -programvareselskapene som Microsoft og Apple, publisert en rapport der -de gjetter på hvor mye piratkopiering påfører i tapte inntekter i -ulike land rundt om i verden. Resultatene er alltid tendensiøse. -Den siste rapporten er tilgjengelig fra -deres -nettsted.
- -Den har fått endel dekning av journalister som åpenbart ikke har -tenkt på å stille kritiske spørsmål om resultatene. Se f.eks. -digi.no, -hardware.no -og -aftenposten.no.
- -BSA-undersøkelsene er søppel som inneholder oppblåste tall, og -har gjentatte ganger blitt tatt for dette. Her er noen interessante -referanser med bakgrunnsinformasjon.
- --
+
- Fnyser av - nye pirattall fra BSA Computerworld Norge 2011. +
- BSA -höftade Sverigesiffror Computerworld Sverige 2009. +
- BSA - piracy figures need a shot of reality v3.co.uk 2009 +
- Does The WIPO Copyright Treaty Work? The Business Software Association Piracy Data Michael Geist blogg 2009 +
- Australian - govt draft says piracy stats are made up Torrentfreak 2006. +
- Is - one month's piracy worth more than France's GDP? Boing Boing - 2006. +
- Sviende - kritikk mot pirat-tall Computerworld Norge 2005. +
For convenience, I want to store copies of all my DVDs on my file +server. It allow me to save shelf space flat while still having my +movie collection easily available. It also make it possible to let +the kids see their favourite DVDs without wearing the physical copies +down. I prefer to store the DVDs as ISOs to keep the DVD menu and +subtitle options intact. It also ensure that the entire film is one +file on the disk. As this is for personal use, the ripping is +perfectly legal here in Norway.
-Normally I rip the DVDs using dd like this:
--+#!/bin/sh +# apt-get install lsdvd +title=$(lsdvd 2>/dev/null|awk '/Disc Title: / {print $3}') +dd if=/dev/dvd of=/storage/dvds/$title.iso bs=1M +
But some DVDs give a input/output error when I read it, and I have +been looking for a better alternative. I have no idea why this I/O +error occur, but suspect my DVD drive, the Linux kernel driver or +something fishy with the DVDs in question. Or perhaps all three.
-Anyway, I believe I found a solution today using dvdbackup and +genisoimage. This script gave me a working ISO for a problematic +movie by first extracting the DVD file system and then re-packing it +back as an ISO. -
-+#!/bin/sh +# apt-get install lsdvd dvdbackup genisoimage +set -e +tmpdir=/storage/dvds/ +title=$(lsdvd 2>/dev/null|awk '/Disc Title: / {print $3}') +dvdbackup -i /dev/dvd -M -o $tmpdir -n$title +genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title +rm -rf $tmpdir/$title +
Anyone know of a better way available in Debian/Squeeze?
-Update 2011-09-18: I got a tip from Konstantin Khomoutov about the +readom program from the wodim package. It is specially written to +read optical media, and is called like this: readom dev=/dev/dvd +f=image.iso. It got 6 GB along with the problematic Cars DVD +before it failed, and failed right away with a Timmy Time DVD.
-Next, I got a tip from Bastian Blank about +his +program python-dvdvideo, which seem to be just what I am looking +for. Tested it with my problematic Timmy Time DVD, and it succeeded +creating a ISO image. The git source built and installed just fine in +Squeeze, so I guess this will be my tool of choice in the future.
-Personlig skulle jeg ønske BSA var enda mer ivrig og mer hardhendt -i å håndheve de ikke-frie programvarelisensene (og de er ganske ivrige -allerede), slik at brukerne av disse forsto vilkårene bedre. Jeg tror -nemlig ingen som forstår vilkårene vil akseptere dem og at det vil -føre til at flere tar i bruk fri programvare.
+