Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#276 Le 24/04/2007, à 10:50

adam070

Re : Décodeur TNT Intuix S800

Bonjour, je me pose tellement des questions au sujet des programmes des TV sur le sattelite que je ne sais par ou commencer. En effet j'ai un décodeur numérique de la marque koreene "NEOSAT SX-9600" et je vis en Afrique de l'Est « DJIBOUTI » exactement et je voudrais 1erment mettre à jour le software et comment? 2ément  comment capter à partir de l'afrique de l'est "DJIBOUTI" les programmes tv sur les divers satellites comme ASIASAT2/C: ASIASAT3S/C: EUTELSAT II  F1 à F4:
EUTELSAT W3: HOTBIRD: PAS4_C: PAS4_KU: TURKSAT 1B,1C: AMOSI et comment faire merci d'avance frere je ne demande qu'à etre informer.

#277 Le 01/05/2007, à 12:24

Markuso

Re : Décodeur TNT Intuix S800

Salut à tous !

Bon voilà j'ai réussi à avoir la télé avec l'intuix s 800 sous feisty avec le noyau 2.6.20-15-generic.

Voici la procédure à suivre :

1- télécharger

wget http://linuxtv.org/hg/~mkrufky/stable?ca=tip;type=bz2

2- décompresser :

cd ~
 tar -jxvf stable-2150917d4cc2.tar.bz2

3- compiler :

sudo make

( vous pouvez compiler uniquement les modules que vous avez besoin en suivant les conseils de lol51 avec sudo make xconfig).

4-installer :

sudo make install

5- Ici j'ai eu le célèbre problème du frontend qui n'apparaît pas, voici la solution
déjà abordée ici :

cd stable-2150917d4cc2/
gedit linux/drivers/media/dvb/frontends/dib3000mc.c &

Dans le code source vous remplacez la fonction static int dib3000mc_identify(struct dib3000mc_state *state) par :

static int dib3000mc_identify(struct dib3000mc_state *state)
{
    u16 value;
    if ((value = dib3000mc_read_word(state, 1025)) != 0x5a00 ) {
        dprintk("-E-  DiB3000MC/P: wrong Vendor ID (read=0x%x)\n",value);
        return -EREMOTEIO;
    }

    value = dib3000mc_read_word(state, 1026);
    if (value != 0x3001 && value != 0x5a00 ) {
        dprintk("-E-  DiB3000MC/P: wrong Device ID (%x)\n",value);
        return -EREMOTEIO;
    }
    state->dev_id = value;

    dprintk("-I-  found DiB3000MC/P: %x\n",state->dev_id);

    return 0;
}

6- vous recompilez et vous réinstallez :

sudo make && sudo make install

7- copier maintenant le firmware qui va bien :

wget http://jeanyves.bossard.free.fr/docs/dvb-usb-dibusb-6.0.0.8.fw && sudo cp dvb-usb-dibusb-6.0.0.8.fw /lib/firmware/2.6.*

8- Rebootez :

sudo init 6

9- Installez les applications et logiciles utiles pour le dvb :

sudo aptitude install dvb-utils dvbsnoop dvbstream dvbtune mplayer

10- Scannez les chaînes environnantes :

sudo scan /usr/share/doc/dvb-utils/examples/scan/dvb-t/fr-"le_nom_de_votre_ville" > /root/.mplayer/channels.conf

Utilisez la touche tab pour connaître les villes disponibles wink

12- Pour regarder la télévision maintenant :

sudo mplayer dvb://TF1

13- Bon je sais il y a un gros problème dans ma manip qui impose de tout faire en root, j'essaye de trouver une solution le plus rapidement possible smile

En espérant que ça puisse aider quelques personnes !

Hors ligne

#278 Le 01/05/2007, à 13:05

Markuso

Re : Décodeur TNT Intuix S800

Resalut,

C'est bon je n'ai plus besoin de passer en root, je ne m'avais pas mis comme user dans le group video.

Si ça arrive à d'autres personnes, il faut se rajouter dans /etc/group à la ligne video.

Voilà @ +

Hors ligne

#279 Le 01/05/2007, à 15:05

beug

Re : Décodeur TNT Intuix S800

salut
ton adresse wget http://linuxtv.org/hg/~mkrufky/stable?ca=tip;type=bz2
ne prend pas un fichier bz2 à décompresser mais "stable?ca=tip" (fichier html) !?

est-ce que tu peux vérifier ta méthode et être un peu plus précis stp, certains points me semble peux détaillés; non?
sinon avant de recompiler, il ne faut pas faire du ménage avant?
je suis plus que méga intéressé par une méthode qui fonctionne tongue
merci
@+

Dernière modification par beug (Le 01/05/2007, à 15:33)


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#280 Le 01/05/2007, à 16:00

beug

Re : Décodeur TNT Intuix S800

en ouvrant un terminal dans le dossier v4l-dvb et en faisant cette commande pour retirer les modules:

sudo make rminstall

ça à l'air de bien faire le ménage....
moi j'ai pas envie de reinstaller ma distrib encore une fois roll car en ayant fait les commandes sur la 2eme partie de ton post = mon system n'a pas aimé au reboot hmm
mais c'est passé quand même, j'ose plus redemarrer, arf

Dernière modification par beug (Le 01/05/2007, à 16:01)


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#281 Le 01/05/2007, à 16:59

Markuso

Re : Décodeur TNT Intuix S800

Salut beug ,

En ce qui concerne le lien http://linuxtv.org/hg/~mkrufky/stable?ca=tip;type=bz2 il fonctionne chez moi, tu obtiens bien un .tar.bz2 quand tu clickes desssus.

Sinon pour les anciens drivers que tu as installé moi j'ai fait un make rminstall et un make clean puis j'ai supprimée tous les fichiers v4l -> rm -rfv v4l*.

Allez courage tu es dans la bonne voie wink

Hors ligne

#282 Le 01/05/2007, à 17:04

beug

Re : Décodeur TNT Intuix S800

ok la je l'ai reçu ce fichier.
bon je vais recompiler alors!
euh je passe directement a la 2eme etapes de ton tuto la je presume?
5- Ici j'ai eu le célèbre problème du frontend qui n'apparaît pas, voici la solution
déjà abordée ici :

puisque ce qui est fait avant ne sert à rien finalement, je me trompe?
bon j'essai ça et je te tiens au courant...
@+


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#283 Le 01/05/2007, à 17:10

Markuso

Re : Décodeur TNT Intuix S800

Non suis à la lettre mon tuto, tu dois avoir aussi le problème de frontend ( regarde ton dmesg) après avoir simplement compilé le driver ...

Enfin je sais qu'il y a un bug dans le 2.6.20, il a été corrigé dans le 2.6.21 http://linuxfr.org/2007/04/26/22398.html

Bref suis mon post wink

Hors ligne

#284 Le 01/05/2007, à 17:33

beug

Re : Décodeur TNT Intuix S800

bah je m'en sortirai jamais yikes
suis bon pour garder windows pendant encore 10 ans tongue

fabien50@maitre:~/stable-2150917d4cc2$ sudo make && sudo make install
make -C /home/fabien50/stable-2150917d4cc2/v4l
make[1]: entrant dans le répertoire « /home/fabien50/stable-2150917d4cc2/v4l »
creating symbolic links...
make -C /lib/modules/2.6.20-15-generic/build SUBDIRS=/home/fabien50/stable-2150917d4cc2/v4l  modules
make[2]: Entering directory `/usr/src/linux-headers-2.6.20-15-generic'
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-pci.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-usb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-fe-tuner.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-sram.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-eeprom.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-misc.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-hw-filter.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/flexcop-dma.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-driver.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-if.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-risc.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-gpio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bttv-input.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cpia2_v4l.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cpia2_usb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cpia2_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx25840-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx25840-audio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx25840-firmware.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx25840-vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-mpeg.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-tvaudio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cx88-input.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvbdev.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dmxdev.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_demux.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_filter.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_ca_en50221.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_frontend.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_net.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_ringbuffer.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb_math.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_hw.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_v4l.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_av.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_ca.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_ipack.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/av7110_ir.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/a800.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/au6610.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/cxusb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dib0700_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dib0700_devices.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dibusb-common.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dibusb-mb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dibusb-mc.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/digitv.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dtt200u.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dtt200u-fe.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/gl861.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/gp8psk.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/gp8psk-fe.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/m920x.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/nova-t-usb2.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ttusb2.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/umt-010.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/vp702x.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/vp702x-fe.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/vp7045.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/vp7045-fe.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-firmware.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-init.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-urb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-dvb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/dvb-usb-remote.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/usb-urb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/em28xx-video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/em28xx-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/em28xx-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/em28xx-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/em28xx-input.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/et61x251_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/et61x251_tas5130d1b.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ir-functions.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ir-keymaps.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-audio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-controls.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-driver.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-fileops.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-firmware.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-gpio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-ioctl.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-irq.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-mailbox.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-queue.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-streams.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-udma.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ivtv-yuv.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/msp3400-driver.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/msp3400-kthreads.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ovcamchip_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ov6x20.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ov6x30.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ov7x10.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ov7x20.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/ov76be.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-i2c-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-i2c-cmd-v4l2.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-audio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-i2c-chips-v4l2.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-encoder.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-video-v4l.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-eeprom.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-tuner.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-main.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-hdw.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-v4l2.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-ctrl.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-std.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-context.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-io.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-ioread.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-cx2584x-v4l.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-wm8775.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-sysfs.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pvrusb2-debugifc.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-if.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-misc.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-ctrl.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-v4l.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-uncompress.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-dec1.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-dec23.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-kiara.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/pwc-timon.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-ts.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-tvaudio.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7134-input.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_fops.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_hlp.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_vbi.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_hv7131d.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_mi0343.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_ov7630.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_ov7660.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_pas106b.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_pas202bcb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_tas5110c1b.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/sn9c102_tas5130d1b.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/bt87x.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tea575x-tuner.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tuner-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tuner-types.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tuner-simple.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/mt20xx.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tda8290.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tea5767.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tda9887.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/tea5761.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/usbvision-core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/usbvision-video.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/usbvision-i2c.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/usbvision-cards.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zc0301_core.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zc0301_pb0330.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zc0301_pas202bcb.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zoran_procfs.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zoran_device.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zoran_driver.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/zoran_card.o
  LD [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146.o
  LD [M]  /home/fabien50/stable-2150917d4cc2/v4l/saa7146_vv.o
  LD [M]  /home/fabien50/stable-2150917d4cc2/v4l/ir-common.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/videodev.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/v4l2-common.o
  CC [M]  /home/fabien50/stable-2150917d4cc2/v4l/compat_ioctl32.o
/home/fabien50/stable-2150917d4cc2/v4l/compat_ioctl32.c:16:26: error: linux/compat.h: No such file or directory
make[3]: *** [/home/fabien50/stable-2150917d4cc2/v4l/compat_ioctl32.o] Error 1
make[2]: *** [_module_/home/fabien50/stable-2150917d4cc2/v4l] Error 2
make[2]: Leaving directory `/usr/src/linux-headers-2.6.20-15-generic'
make[1]: *** [default] Erreur 2
make[1]: quittant le répertoire « /home/fabien50/stable-2150917d4cc2/v4l »
make: *** [all] Erreur 2
fabien50@maitre:~/stable-2150917d4cc2$
/home/fabien50/stable-2150917d4cc2/v4l/compat_ioctl32.c:16:26: error: linux/compat.h: No such file or directory
make[3]: *** [/home/fabien50/stable-2150917d4cc2/v4l/compat_ioctl32.o] Error 1
make[2]: *** [_module_/home/fabien50/stable-2150917d4cc2/v4l] Error 2
make[2]: Leaving directory `/usr/src/linux-headers-2.6.20-15-generic'
make[1]: *** [default] Erreur 2
make[1]: quittant le répertoire « /home/fabien50/stable-2150917d4cc2/v4l »
make: *** [all] Erreur 2

!!!!!!!!!!!!!
j'ai modifié le fichier dib3000mc
avec le copié collé, il manque tous les petits points sur le coté mais ça vient quand même pas ça !
ouarf c'est de la folie ce truc hmm


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#285 Le 01/05/2007, à 17:36

Markuso

Re : Décodeur TNT Intuix S800

ça a compilé sa

Hors ligne

#286 Le 01/05/2007, à 17:37

Markuso

Re : Décodeur TNT Intuix S800

bog ! Non mais ça compilait sans modifier le dib3000mc.c ?

Hors ligne

#287 Le 01/05/2007, à 21:17

beug

Re : Décodeur TNT Intuix S800

quoi? je comrpends rien a ce que tu dis!
fallait compiler sans modifier dib3000 c'est ça?
je sais pas si ça a compilé ou quoi mais ça fonctionne pas, y'a une erreur a la fin du make..
arf , et en plus j'ai une grosse erreur au demarrage de ubuntu, en rapport avec /var/run/hplip !!


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#288 Le 01/05/2007, à 21:19

beug

Re : Décodeur TNT Intuix S800

Markuso a écrit :

bog ! Non mais ça compilait sans modifier le dib3000mc.c ?

en fait j'ai pas essayé sans modifier, poufff mad


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#289 Le 01/05/2007, à 22:40

Markuso

Re : Décodeur TNT Intuix S800

Ouais en fait il faut compiler le driver sans modifiler le dib3000mc.c .

J'ai modifié le dib3000mc.c parce que je n'avais pas de frontend dans /dev/dvb/adpater0 . Regarde ton dmesg : no frontend attached ...

Si tu as ce message d'erreur tu dois modifier le dib3000mc.c ( voir 5- de mon post )

Voilà !

Hors ligne

#290 Le 01/05/2007, à 23:04

beug

Re : Décodeur TNT Intuix S800

bah avec ou sans modif, meme probleme, meme erreur hmm
j'ai un kernel pas comme les autres, faut croire lol
je vais encore bousiller ma distrib a ce rythme là, arf hmm


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#291 Le 01/05/2007, à 23:14

beug

Re : Décodeur TNT Intuix S800

ben en fait le dossier v4l que je prend ici:
http://www.linuxtv.org/hg/
http://linuxtv.org/hg/v4l-dvb?ca=tip;type=bz2
fonctionne, make et make install = ok
par contre je n'ai pas de /dev/dvb/adapter0
j'ai mis un poste pour ça:
http://forum.kubuntu-fr.org/viewtopic.php?id=115060

un trcu de ouf cette histoire tongue


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#292 Le 02/05/2007, à 18:34

Markuso

Re : Décodeur TNT Intuix S800

Salut beug,

Tu as bien installé les headers du noyau, les sources de celui-ci, le paquet build-essential ? A ce que j'ai vu oui...

Sinon je vois pas trop d'ou vient l'erreur ... J'aime le même noyau que toi en théorie ça doit fonctionner. Si c'est le cas je ne vois pas trop d'autres moyens que de réinstaller si tu as bidouillé ton noyau ...

La version que tu as posté du driver ne marche pas chez moi, il faut prendre la stable que je t'ai proposé.

@ + pour de nouvelles "errors" tongue

Voilà @ +

Hors ligne

#293 Le 02/05/2007, à 22:56

beug

Re : Décodeur TNT Intuix S800

bah écoute je ne sais pas non plus pourquoi ça marche pas... bon d'un autre coté c'est pas vital vu que j'ai encore windows en dual et qu'il est fort probable que je change de pc cet été ainsi que d'écran, je vais surement prendre un écran avec un
capteur tnt incorporé à moins aussi que ma femme décide d'acheter également un televiseur, d'ici là, je verrai bien ce que ça donne...
merci pour ton aide en attendant.
@+
beug


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#294 Le 05/05/2007, à 18:16

hfdragon@wanda

Re : Décodeur TNT Intuix S800

En ce qui me concerne, voila comment je l'ai fait fonctionner avec feisty :

1-branchement de la clef : pas de problème de détection de la clef sauf qu'il me manque le frontend :

dvb-usb: no frontend was attached by 'LITE-ON USB2.0 DVB-T Tuner'

2-J'ai fait :

sudo modprobe -r dvb_usb_dibusb_mc

la la clef s'est éteinte.

3-J'ai fait :

sudo modprobe dvb_usb_dibusb_mc

Et hop, la la clef s'est réactivée AVEC le frontend big_smile

Dernière modification par hfdragon@wanda (Le 05/05/2007, à 18:23)

Hors ligne

#295 Le 07/05/2007, à 22:48

beug

Re : Décodeur TNT Intuix S800

moi j'en suis toujours au point ou ma clé n'est même pas reconnue sad


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#296 Le 07/05/2007, à 23:00

beug

Re : Décodeur TNT Intuix S800

Markuso a écrit :

Non suis à la lettre mon tuto, tu dois avoir aussi le problème de frontend ( regarde ton dmesg) après avoir simplement compilé le driver ...

Enfin je sais qu'il y a un bug dans le 2.6.20, il a été corrigé dans le 2.6.21 http://linuxfr.org/2007/04/26/22398.html

Bref suis mon post wink

au fait, comment on fait éventuellement pour passer sur le 2.6.21?
faut passer a gusty en fait?

Dernière modification par beug (Le 07/05/2007, à 23:06)


Si un jour, on te reproche que ton travail n'est pas un travail de professionnel, dis-toi bien que :
Des amateurs ont construit l'arche de Noé, et des professionnels le Titanic.!
Kub8.10 Kde4 Intel dual E2200, 4Go Ram, Ati HD3650 512mo, DD 640go, CM Msi

Hors ligne

#297 Le 08/05/2007, à 23:01

dydge

Re : Décodeur TNT Intuix S800

big_smile
Merci a vous tous pour votre travail, grace a vous il y a 10 mois g fait tourner ma clé sous Dapper , et maintenant elle tourne sous Feisty !! big_smile big_smile
Voilà je tenais a vous le dire....Encorte merci wink

Dydge

Hors ligne

#298 Le 18/05/2007, à 22:55

revilo78

Re : Décodeur TNT Intuix S800

euh c'est moi ou la clé marche mieux avec kaffeine qu'avec le lecteur savvy tv livré avec la clé??
sous windows apres un déménagement je n'arrivais pas a retrouver certaines chaines type direct8, etc, or la je lance kaffeine et du premier coup il me trouve toute les chaine. Dautre part j'avais un gros probleme de force de signal, ce probleme est completetement envolé. MErci linux merci ubuntu mmerci tout le monde je vous aime

#299 Le 18/05/2007, à 22:57

reivilo78

Re : Décodeur TNT Intuix S800

au fait j'ai utilisé la méthode de hfdragon@wanda

#300 Le 21/05/2007, à 14:52

Soiny

Re : Décodeur TNT Intuix S800

Hello ubuntu Team qui déchire,

Tout d'abord vous féliciter pour vos contributions à ce que les revendeurs refusent de faire, à savoir, codé les drivers de leur matos pour d'autres OS. Perso j'ai une Intuix S800 USB que j'aimerai faire fonctionner sous Mac OSX, savez vous si le code fourni ici pour Ubuntu peut servir de base solide pour Mac ?

Merci bcp pour votre aide. Je ne boote sous Windows que pour ma clé Intuix...

Bonne soirée à tous,

Soiny