ren39

  • 16 janv. 2023
  • Inscrit 1 août 2007
  • 0 meilleure réponse
  • Petit nouveau Adepte du forum Rédacteur potentiel
  • Bonjour Fifi
    Fifi wrote:EDIT : D'où viennent ces menuentry que l'on voit dans ton grub.cfg après la ligne ### BEGIN /etc/grub.d/30_os-prober ### ? C'est la commande grub2-mkconfig qui les a ajoutés ou c'est toi ?
    ces menuentry ont été ajouté par moi à la main sauf le menuentry 'Windows 7 (loader) (on /dev/sda2)'

    Fifi wrote:EDIT2 : Tu dis simplement qu'aucun " code " ne marche, mais quelles sont les entrées relatives à Windows 7 qui s'affichent dans ton grub au lancement de l'ordi ? Quel est le message d'erreur qui vient après avoir choisi une de ces entrées ?
    je te donne dans la journée les messages d'erreur.
  • Bonjour,

    Je souhaites installer W7 sur mon PC par le grub. Mon PC ne detecte ni les USB boutable et mon lecteur CD est cassé.

    Je dispose de l'image iso de W7 : "/windows7.iso"

    j'ai trouvé ce code :
    menuentry " W7 " {
        set iso_path="/windows7.iso"
        loopback loop $iso_path
        linux (loop)/isolinux/vmlinuz inst.stage2=hd:UUID="9bf8efe1-35c4-43f9-9aaf-eae19295dfb6" noeject iso-scan/filename=$iso_path
        initrd (loop)/isolinux/initrd.img
    }
    mais cela ne fonction pas comme les autres codes suivants
    menuentry 'Boot Windoze 1' {
      search -f "--set-root /windows7.iso"
      drivemap "/Winblows.iso" '(hd32)'
      drivemap '--hook' ''
      set root='(hd32)'
      chainloader +1
    }
    menuentry 'Boot Windoze 2' {
      search -f "--set-root /windows7.iso"
      insmod memdisk
      linux16 /boot/memdisk iso
      initrd16 /Winblows.iso
    }
    menuentry 'Image CD de Windows' {
         #Le chemin complet vers le fichier image, depuis la racine de la clé USB
         #ex : le fichier est 'windows.iso' situé dans un dossier 'iso' de la clé
         set Image="/windows7.iso"
    
         insmod loopback
         insmod iso9660
    
         search --set=root -f ${Image}
         loopback loop (${root})'${Image}'
         chainloader +1
    }

    Qu'elle est le code à mettre dans le Grub pour booter sur l'iso de W7 ?


    mon grub.cfg :
    #
    # DO NOT EDIT THIS FILE
    #
    # It is automatically generated by grub2-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    #
    
    ### BEGIN /etc/grub.d/00_header ###
    if [ -s $prefix/grubenv ]; then
      load_env
    fi
    set default="0"
    
    if [ x"${feature_menuentry_id}" = xy ]; then
      menuentry_id_option="--id"
    else
      menuentry_id_option=""
    fi
    
    export menuentry_id_option
    
    if [ "${prev_saved_entry}" ]; then
      set saved_entry="${prev_saved_entry}"
      save_env saved_entry
      set prev_saved_entry=
      save_env prev_saved_entry
      set boot_once=true
    fi
    
    function savedefault {
      if [ -z "${boot_once}" ]; then
        saved_entry="${chosen}"
        save_env saved_entry
      fi
    }
    
    function load_video {
      if [ x$feature_all_video_module = xy ]; then
        insmod all_video
      else
        insmod efi_gop
        insmod efi_uga
        insmod ieee1275_fb
        insmod vbe
        insmod vga
        insmod video_bochs
        insmod video_cirrus
      fi
    }
    
    if [ x$feature_default_font_path = xy ] ; then
       font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos6'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    else
      search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    fi
        font="/usr/share/grub/unicode.pf2"
    fi
    
    if loadfont $font ; then
      set gfxmode=auto
      load_video
      insmod gfxterm
      set locale_dir=$prefix/locale
      set lang=fr_FR
      insmod gettext
    fi
    terminal_output gfxterm
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos6'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    else
      search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    fi
    insmod gfxmenu
    loadfont ($root)/boot/grub2/themes/system/DejaVuSans-10.pf2
    loadfont ($root)/boot/grub2/themes/system/DejaVuSans-12.pf2
    loadfont ($root)/boot/grub2/themes/system/DejaVuSans-Bold-14.pf2
    loadfont ($root)/boot/grub2/fonts/unicode.pf2
    insmod png
    set theme=($root)/boot/grub2/themes/system/theme.txt
    export theme
    set timeout=5
    ### END /etc/grub.d/00_header ###
    
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Fedora (3.19.8-100.fc20.x86_64) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.8-100.fc20.x86_64) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.8-100.fc20.x86_64 root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.8-100.fc20.x86_64.img
    }
    menuentry 'Fedora (3.19.8-100.fc20.x86_64+debug) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.8-100.fc20.x86_64+debug) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.8-100.fc20.x86_64+debug root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.8-100.fc20.x86_64+debug.img
    }
    menuentry 'Fedora (3.19.5-100.fc20.x86_64) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.5-100.fc20.x86_64) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.5-100.fc20.x86_64 root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.5-100.fc20.x86_64.img
    }
    menuentry 'Fedora (3.19.5-100.fc20.x86_64+debug) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.5-100.fc20.x86_64+debug) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.5-100.fc20.x86_64+debug root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.5-100.fc20.x86_64+debug.img
    }
    menuentry 'Fedora (3.19.3-100.fc20.x86_64) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.3-100.fc20.x86_64) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.3-100.fc20.x86_64 root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.3-100.fc20.x86_64.img
    }
    menuentry 'Fedora (3.19.3-100.fc20.x86_64+debug) 20 (Heisenbug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora (3.19.3-100.fc20.x86_64+debug) 20 (Heisenbug)'
    	linux	/boot/vmlinuz-3.19.3-100.fc20.x86_64+debug root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    	initrd /boot/initramfs-3.19.3-100.fc20.x86_64+debug.img
    }
    menuentry 'Fedora 19 Rescue 69d27b356a94476da859461d3a3bc6fd (3.13.6-100.fc19.x86_64.debug)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    	load_video
    	set gfxpayload=keep
    	insmod gzio
    	insmod part_msdos
    	insmod ext2
    	set root='hd0,msdos6'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 --hint='hd0,msdos6'  9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	else
    	  search --no-floppy --fs-uuid --set=root 9bf8efe1-35c4-43f9-9aaf-eae19295dfb6
    	fi
    	echo 'Loading Fedora 19 Rescue 69d27b356a94476da859461d3a3bc6fd (3.13.6-100.fc19.x86_64.debug)'
    	linux	/boot/vmlinuz-0-rescue-69d27b356a94476da859461d3a3bc6fd root=UUID=9bf8efe1-35c4-43f9-9aaf-eae19295dfb6 ro rd.md=0 rd.lvm=0 rd.dm=0  vconsole.keymap=fr rd.luks=0 rhgb quiet LANG=fr_FR.UTF-8
    	echo 'Loading initial ramdisk ...'
    }
    menuentry " W7 " {
        set iso_path="/windows7.iso"
        loopback loop $iso_path
        linux (loop)/isolinux/vmlinuz inst.stage2=hd:UUID="9bf8efe1-35c4-43f9-9aaf-eae19295dfb6" noeject iso-scan/filename=$iso_path
        initrd (loop)/isolinux/initrd.img
    }
    
    	initrd /boot/initramfs-0-rescue-69d27b356a94476da859461d3a3bc6fd.img
    submenu 'Advanced options for Fedora' $menuentry_id_option 'gnulinux-advanced-9bf8efe1-35c4-43f9-9aaf-eae19295dfb6' {
    }
    
    ### END /etc/grub.d/10_linux ###
    
    ### BEGIN /etc/grub.d/20_linux_xen ###
    
    ### END /etc/grub.d/20_linux_xen ###
    
    ### BEGIN /etc/grub.d/20_ppc_terminfo ###
    ### END /etc/grub.d/20_ppc_terminfo ###
    
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows Recovery Environment (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-B681-27DD' {
    	insmod part_msdos
    	insmod fat
    	set root='hd0,msdos1'
    ### 	if [ x$feature_platform_search_hint = xy ]; then
    ### 	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  B681-27DD
    ### 	else
    ### 	  search --no-floppy --fs-uuid --set=root B681-27DD
    ### 	fi
    	drivemap -s (hd0) B681-27DD
    	chainloader +1
    }
    menuentry 'Boot Windoze 1' {
      search -f "--set-root /Winblows.iso"
      drivemap "/Winblows.iso" '(hd32)'
      drivemap '--hook' ''
      set root='(hd32)'
      chainloader +1
    }
    menuentry 'Boot Windoze 2' {
      search -f "--set-root /Winblows.iso"
      insmod memdisk
      linux16 /boot/memdisk iso
      initrd16 /Winblows.iso
    }
    menuentry 'Image CD de Windows' {
         #Le chemin complet vers le fichier image, depuis la racine de la clé USB
         #ex : le fichier est 'windows.iso' situé dans un dossier 'iso' de la clé
         set Image="/Winblows.iso"
    
         insmod loopback
         insmod iso9660
    
         search --set=root -f ${Image}
         loopback loop (${root})'${Image}'
         chainloader +1
    }
    menuentry 'Windows 7 (loader) (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-262485182484EBDD' {
    	insmod part_msdos
    	insmod ntfs
    	set root='hd0,msdos2'
    	if [ x$feature_platform_search_hint = xy ]; then
    	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  262485182484EBDD
    	else
    	  search --no-floppy --fs-uuid --set=root 262485182484EBDD
    	fi
    	chainloader +1
    }
    ### END /etc/grub.d/30_os-prober ###
    
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries.  Simply type the
    # menu entries you want to add after this comment.  Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f  ${config_directory}/custom.cfg ]; then
      source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
      source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
  • Bonjour,

    Oui @Atem18, je suis un fidèle des LIDD (Liens Idiots Du Dimanche) de PC INpact.

    Pour l’occasion, voici une figure librement inspirée de GNU :
    [size=9]imagik[/size]

    Pour info on peut avoir le site en Off line si on fait "Fichier-->Enregistree sous ..." dans Firefox. Cela permet de supprimer l'icone du son (en haut à gauche).

    Ren39
  • Bonjour,

    Sur Ferdora 16 j'ai des erreurs de type "Couldn't resolve host" sur plusieurs logiciel (yum, geppoder, Transmision, urbanterror ..). il faut plusieurs essais pour pouvoir que le téléchargement fonctionne, si le logiciel le permet.
    Or sur le même PC avec W7 aucun soucis à ce niveau.

    Avez vous des pistes à me proposer ?
    Une recherche sur le net n'a rien donnés.

    exemple :
    [root@localhost ~]# yum list *Tweak*
    Modules complémentaires chargés : langpacks, presto, refresh-packagekit
    http://linuxdownload.adobe.com/linux/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Couldn't resolve host"
    Essai d'un autre miroir.
    http://download.opensuse.org/repositories/home%3A/heimdall78/Fedora_16/repodata/repomd.xml: [Errno 14] curl#6 - "Couldn't resolve host"
    Essai d'un autre miroir.
    rpmfusion-free-updates                                   | 3.3 kB     00:00     
    http://download1.rpmfusion.org/nonfree/fedora/updates/16/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Couldn't resolve host"
    Essai d'un autre miroir.
    rpmfusion-nonfree-updates                                | 3.3 kB     00:00     
    Could not get metalink https://mirrors.fedoraproject.org/metalink?repo=updates-released-f16&arch=x86_64 error was
    14: curl#6 - "Couldn't resolve host"
    updates-debuginfo/metalink                               |  21 kB     00:00     
    updates-source/metalink                                  |  24 kB     00:00     
    Paquets installés
    gnome-tweak-tool.noarch                                           3.2.2-2.fc16                                           @updates
    mousetweaks.x86_64                                                3.2.1-2.fc16                                           @fedora 
    Paquets disponibles
    AntTweakBar.i686                                                  1.14-2.fc16                                            fedora  
    AntTweakBar.x86_64                                                1.14-2.fc16                                            fedora  
    AntTweakBar-devel.i686                                            1.14-2.fc16                                            fedora  
    AntTweakBar-devel.x86_64                                          1.14-2.fc16                                            fedora  
    gtweakui.x86_64                                                   0.4.0-9                                                fedora
    [root@localhost ~]# ping -c10 linuxdownload.adobe.com
    PING linuxdownload.wip4.adobe.com (192.150.16.37) 56(84) bytes of data.
    64 bytes from 192.150.16.37: icmp_req=1 ttl=240 time=139 ms
    64 bytes from 192.150.16.37: icmp_req=2 ttl=240 time=141 ms
    64 bytes from 192.150.16.37: icmp_req=3 ttl=240 time=141 ms
    64 bytes from 192.150.16.37: icmp_req=4 ttl=240 time=140 ms
    64 bytes from 192.150.16.37: icmp_req=5 ttl=240 time=138 ms
    64 bytes from 192.150.16.37: icmp_req=6 ttl=240 time=139 ms
    64 bytes from 192.150.16.37: icmp_req=7 ttl=240 time=139 ms
    64 bytes from 192.150.16.37: icmp_req=8 ttl=240 time=140 ms
    64 bytes from 192.150.16.37: icmp_req=9 ttl=240 time=141 ms
    64 bytes from 192.150.16.37: icmp_req=10 ttl=240 time=141 ms
    
    --- linuxdownload.wip4.adobe.com ping statistics ---
    10 packets transmitted, 10 received, 0% packet loss, time 18156ms
    rtt min/avg/max/mdev = 138.561/140.448/141.688/1.010 ms
     
  • bonjour,

    je veux pouvoir envoyer des fichiers dans d'autres répertoires tel que "/media/tot/" via le menu contextuel de sendto

    j'ai essayer nautilus-action, mais il faut 30000 paramètres pour une seule commande mv, cp et l'action n'est pas proposée a la fin dans le menu contextuel
  • Bonjour,
    Je recherche le dossier ou sont les raccourcis proposés par gnome-sendto afin d'ajouter d'autre choix.

    Je n'ai pas trouvée cette info sur google, la page man ne dit rien dessus et il n'y a pas de dossier "sendto" dans le répertoire utilisateur (/home/user).

    merci
  • Bonjour,
    Le problème est identifier, l'activation du wifi ne se réalisait plus au démarrage.
    Une activation du wifi plus un redémarrage résout le problème.
  • Bonjour,

    merci nouvo09 de ton aide.
    Comme je viens de faire un preupgrade, il me reste des composants de fc13.
    Mais le kernel de fc14 est le "2.6.35.13-92.fc14.i686" ce qui semble compatible avec "kmod-rt2860-2.6.35.13-92.fc14.i686"
    Pour plus d’informations voici les messages générés par le commande "service NetworkManager start"
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> NetworkManager (version 0.8.4-1.fc14) is starting...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> VPN: loaded org.freedesktop.NetworkManager.openvpn
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> VPN: loaded org.freedesktop.NetworkManager.vpnc
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> VPN: loaded org.freedesktop.NetworkManager.openconnect
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> modem-manager is now available
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> monitoring kernel firmware directory '/lib/firmware'.
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Loaded plugin ifcfg-rh: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... 
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh:     read connection 'System eth0'
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-lo ... 
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-wlan0 ... 
    Jul 17 18:08:13 localhost NetworkManager[7288]:    ifcfg-rh:     read connection 'System wlan0'
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WiFi enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WWAN enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Networking is enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <error> [1310918893.633029] [nm-device-wifi.c:3100] real_update_permanent_hw_address(): (ra0): unable to read permanent MAC address (error 0)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): driver does not support SSID scans (scan_capa 0x00).
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): new 802.11 WiFi device (driver: 'rt2860' ifindex: 3)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): exported as /org/freedesktop/NetworkManager/Devices/0
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): now managed
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): device state change: 1 -> 2 (reason 2)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): bringing up device.
    Jul 17 18:08:13 localhost kernel: [ 9098.670577] RX DESC f53d3000  size = 2048
    Jul 17 18:08:13 localhost kernel: [ 9098.677168] Key1Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677185] Key2Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677201] Key3Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677217] Key4Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677468] 1. Phy Mode = 5
    Jul 17 18:08:13 localhost kernel: [ 9098.677470] 2. Phy Mode = 5
    Jul 17 18:08:13 localhost kernel: [ 9098.692312] phy mode> Error! The chip does not support 5G band 3!
    Jul 17 18:08:13 localhost kernel: [ 9098.692398] RTMPSetPhyMode: channel is out of range, use first channel=1 
    Jul 17 18:08:13 localhost kernel: [ 9098.699890] 3. Phy Mode = 9
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): preparing device.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): deactivating device (reason: 2).
    Jul 17 18:08:13 localhost kernel: [ 9098.703159] MCS Set = ff ff 00 00 01
    Jul 17 18:08:13 localhost kernel: [ 9098.703161] <==== rt28xx_init, Status=0
    Jul 17 18:08:13 localhost kernel: [ 9098.703227] 0x1300 = 00064300
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): carrier is OFF
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/1
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): now managed
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): device state change: 1 -> 2 (reason 2)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): bringing up device.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): preparing device.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): deactivating device (reason: 2).
    Jul 17 18:08:13 localhost kernel: [ 9098.707440] r8169 0000:06:00.0: eth0: link up
    Jul 17 18:08:13 localhost NetworkManager[7288]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <warn> /sys/devices/virtual/net/vboxnet0: couldn't determine device driver; ignoring...
    Jul 17 18:08:13 localhost kernel: [ 9098.709661] lo: Disabled Privacy Extensions
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): carrier now ON (device state 2)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): device state change: 2 -> 3 (reason 40)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <warn> bluez error getting default adapter: Launch helper exited with unknown return code 1
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) starting connection 'System eth0'
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): device state change: 3 -> 4 (reason 0)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): device state change: 4 -> 5 (reason 0)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) successful.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started...
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): device state change: 5 -> 7 (reason 0)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Beginning DHCPv4 transaction (timeout in 45 seconds)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> dhclient started with pid 7302
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): supplicant interface state:  starting -> ready
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): device state change: 2 -> 3 (reason 42)
    Jul 17 18:08:13 localhost dhclient[7302]: Internet Systems Consortium DHCP Client 4.2.0-P2
    Jul 17 18:08:13 localhost dhclient[7302]: Copyright 2004-2010 Internet Systems Consortium.
    Jul 17 18:08:13 localhost dhclient[7302]: All rights reserved.
    Jul 17 18:08:13 localhost dhclient[7302]: For info, please visit https://www.isc.org/software/dhcp/
    Jul 17 18:08:13 localhost dhclient[7302]: 
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (eth0): DHCPv4 state changed nbi -> preinit
    Jul 17 18:08:13 localhost dhclient[7302]: Listening on LPF/eth0/00:21:85:47:73:79
    Jul 17 18:08:13 localhost dhclient[7302]: Sending on   LPF/eth0/00:21:85:47:73:79
    Jul 17 18:08:13 localhost dhclient[7302]: Sending on   Socket/fallback
    Jul 17 18:08:14 localhost dhclient[7302]: DHCPREQUEST on eth0 to 255.255.255.255 port 67
    Jul 17 18:08:14 localhost dhclient[7302]: DHCPACK from 192.168.1.1
    Jul 17 18:08:14 localhost dhclient[7302]: bound to 192.168.1.20 -- renewal in 37440 seconds.
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> (eth0): DHCPv4 state changed preinit -> reboot
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled...
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started...
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   address 192.168.1.20
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   prefix 24 (255.255.255.0)
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   gateway 192.168.1.1
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   nameserver '192.168.1.1'
    Jul 17 18:08:14 localhost NetworkManager[7288]: nm_ip4_config_add_nameserver: assertion `nameserver != s' failed
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   nameserver '192.168.1.1'
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info>   domain name 'home'
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Scheduling stage 5
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled...
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Done scheduling stage 5
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete.
    Jul 17 18:08:14 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) started...
    Jul 17 18:08:14 localhost avahi-daemon[1218]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.1.20.
    Jul 17 18:08:14 localhost avahi-daemon[1218]: New relevant interface eth0.IPv4 for mDNS.
    Jul 17 18:08:14 localhost avahi-daemon[1218]: Registering new address record for 192.168.1.20 on eth0.IPv4.
    Jul 17 18:08:15 localhost NetworkManager[7288]: <info> (eth0): device state change: 7 -> 8 (reason 0)
    Jul 17 18:08:15 localhost NetworkManager[7288]: <info> Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS.
    Jul 17 18:08:15 localhost NetworkManager[7288]: <info> Activation (eth0) successful, device activated.
    Jul 17 18:08:15 localhost NetworkManager[7288]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete.
    
    Partie intérésente :
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WiFi enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WWAN enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> Networking is enabled by state file
    Jul 17 18:08:13 localhost NetworkManager[7288]: <error> [1310918893.633029] [nm-device-wifi.c:3100] real_update_permanent_hw_address(): (ra0): unable to read permanent MAC address (error 0)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): driver does not support SSID scans (scan_capa 0x00).
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): new 802.11 WiFi device (driver: 'rt2860' ifindex: 3)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): exported as /org/freedesktop/NetworkManager/Devices/0
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): now managed
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): device state change: 1 -> 2 (reason 2)
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): bringing up device.
    Jul 17 18:08:13 localhost kernel: [ 9098.670577] RX DESC f53d3000  size = 2048
    Jul 17 18:08:13 localhost kernel: [ 9098.677168] Key1Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677185] Key2Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677201] Key3Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677217] Key4Str is Invalid key length(0) or Type(0)
    Jul 17 18:08:13 localhost kernel: [ 9098.677468] 1. Phy Mode = 5
    Jul 17 18:08:13 localhost kernel: [ 9098.677470] 2. Phy Mode = 5
    Jul 17 18:08:13 localhost kernel: [ 9098.692312] phy mode> Error! The chip does not support 5G band 3!
    Jul 17 18:08:13 localhost kernel: [ 9098.692398] RTMPSetPhyMode: channel is out of range, use first channel=1 
    Jul 17 18:08:13 localhost kernel: [ 9098.699890] 3. Phy Mode = 9
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): preparing device.
    Jul 17 18:08:13 localhost NetworkManager[7288]: <info> (ra0): deactivating device (reason: 2).
    Jul 17 18:08:13 localhost kernel: [ 9098.703159] MCS Set = ff ff 00 00 01
    Jul 17 18:08:13 localhost kernel: [ 9098.703161] <==== rt28xx_init, Status=0
    Jul 17 18:08:13 localhost kernel: [ 9098.703227] 0x1300 = 00064300
  • Salut

    Peut tu donner le résultat des commandes suivantes en root :
    lspci
    uname -r
    ifconfig
    lsmod
  • Bonjour,

    Je vient de passé par preupgrade de fedora 13 à fedora 14 sur mon PC portable.
    J'ai une chipset RaLink RT2860 et j'utilise habituellement le parquetage 'rt2860sta' pour utiliser ma carte wifi.
    Mais depuis que je suis sur fedora 14 Networkmanager ne reconnait pu ma carte wifi.

    Question : Qu'est qui peu provoquer cela ?
    [root@localhost ~]# lspci | grep RT
    04:00.0 Network controller: RaLink RT2860
    
    [root@localhost ~]# lsmod | grep rt
    rt2860sta             629945  1 
    [root@localhost ~]# rpm -qa *rt28*
    kmod-rt2860-2.6.34.8-68.fc13.i686-2.4.0.0-1.fc13.5.i686
    kmod-rt2860-2.6.34.7-66.fc13.i686-2.4.0.0-1.fc13.3.i686
    kmod-rt2860-2.6.34.9-69.fc13.i686-2.4.0.0-1.fc13.6.i686
    rt2860-2.4.0.0-1.fc14.noarch
    kmod-rt2860-2.6.35.13-92.fc14.i686-2.4.0.0-1.fc14.12.i686
    
    [root@localhost ~]# uname -r
    2.6.35.13-92.fc14.i686
    
    [root@localhost ~]# ifconfig
    eth0      Link encap:Ethernet  HWaddr 00:21:85:47:73:79  
              inet adr:192.168.1.20  Bcast:192.168.1.255  Masque:255.255.255.0
              adr inet6: fe80::221:85ff:fe47:7379/64 Scope:Lien
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:4628 errors:0 dropped:0 overruns:0 frame:0
              TX packets:4685 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 lg file transmission:1000 
              RX bytes:4952737 (4.7 MiB)  TX bytes:662262 (646.7 KiB)
              Interruption:47 Adresse de base:0xc000 
    
    lo        Link encap:Boucle locale  
              inet adr:127.0.0.1  Masque:255.0.0.0
              adr inet6: ::1/128 Scope:Hôte
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:14 errors:0 dropped:0 overruns:0 frame:0
              TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 lg file transmission:0 
              RX bytes:820 (820.0 b)  TX bytes:820 (820.0 b)
    
    ra0       Link encap:Ethernet  HWaddr 00:1D:92:C8:D1:59  
              adr inet6: fe80::21d:92ff:fec8:d159/64 Scope:Lien
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 lg file transmission:1000 
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
              Interruption:17 
    
    mise à jour : essais avec network
     service  network start
    Activation de l'interface loopback :                       [  OK  ]
    Activation de l'interface eth0 :                           [  OK  ]
    Activation de l'interface wlan0 :  Le périphérique wlan0 n'étant pas présent, son initialisation sera retardée.
                                                               [ÉCHOUÉ]
    
  • Bonjour,

    @madko, je vais contacter le support.

    @VINDICATORs, tu parle d'enregistreur qui sont dans le commerce ou bien d'enregistreur que l'on monte à partir d'un Pc ?
  • Bonjour,

    Mon magnétoscope/décodeur TNT est un Strong 5203 ( Caractéristiques )
    Décodeur Vidéo
    Niveau de profil: MPEG2 MP@ML
    Résolution Vidéo: 720 x 576 pixels (PAL), 720 x 480 pixels (NTSC)
    Décodage et Sortie Vidéo : PAL & NTSC
    Aspect ratio: 4:3, 16:9
    
    Décodeur Audio
    MPEG MusiCam Layer II
    Taux d'échantillonnage: 32, 44.1, 48 KHz
    Mode Audio: Stéréo, Joint Stéréo, Dual Mono, Mono 
    
    Média
    Enregistrement vidéo et lecture – MPEG-1 et MPEG-2 encodés (mpg)*
    Lecture de music – MP3 et WMA
    Format image – JPG format
    * STRONG ne peut pas garantir la lecture de fichiers vidéo externes, qui n'ont pas été enregistrés par cet appareil
    @VINDICATORs les logiciels VLC, Totem et xine ne savent pas lire mes enregistrements .dvr .
  • Bonjour,

    Les éditeur de vidéo Avidemux, kdenline, kino et OpenShot Video Editor n'arrive pas a lire les vidéos.
  • Bonjour,

    1) Situation

    J'ai acheté un magnétoscope numérique pour regarder et enregistré la TNT.Chaque enregistrements a un dossier propre à lui.
    Si l'émission a une piste audio on a :
    ./2010-07-23.20.05.09-NT1-405:
    total 710036
    -rwxr-xr-x. 1 ren39 ren39 727038976 23 juil. 20:26 000.DVR
    -rwxr-xr-x. 1 ren39 ren39     32768 23 juil. 20:05 INFO.DVR
    Si l'émission a deux pistes audio on a :
    ./2010-08-03.21.26.22-M6-543:
    total 1378020
    -rwxrwxrwx. 1 ren39 ren39 969267200  3 août  21:26 000.DVR
    -rwxrwxrwx. 1 ren39 ren39 441784320  3 août  21:55 001.DVR
    -rwxrwxrwx. 1 ren39 ren39     32768  3 août  21:26 INFO.DVR
    2) Problème

    Je n'arrive pas à lire ou a convertir mes enregistrements sur Fedora. Par contre je peux revisionner les enregistrements sur le magnétoscope numérique.
    Mes recherches sur le web n'ont rien donné.

    3) Tentative de résolution

    3.1) Avec transcode (conversion qui ne finit pas)
    [ren39@localhost 2010-08-02.20.08.40-NT1-362]$ transcode -i 000.DVR -o 000.avi 
    transcode v1.1.5 (C) 2001-2003 Thomas Oestreich, 2003-2009 Transcode Team
    libdvdread: Using libdvdcss version 1.2.9 for DVD access
    libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.IFO failed
    libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.BUP failed
    libdvdread: Can't open file VIDEO_TS.IFO.
    [scan_pes.c] warning: looks like an elementary stream - not program stream
    libdvdread: Using libdvdcss version 1.2.9 for DVD access
    libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.IFO failed
    libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.BUP failed
    libdvdread: Can't open file VIDEO_TS.IFO.
    [scan_pes.c] warning: looks like an elementary stream - not program stream
    [transcode] V: auto-probing     | 000.DVR (OK)
    [transcode] V: import format    | MPEG program stream in  (module=null)
    [transcode] A: auto-probing     | 000.DVR (OK)
    [transcode] A: import format    | AC3 in  (module=null)
    [transcode] V: AV demux/sync    | (0) sync AV at PTS start - demuxer disabled
    [transcode] V: import frame     | disabled
    [transcode] V: bits/pixel       | 0.000 (unknown)
    [transcode] V: decoding fps,frc | 25.000,0
    [transcode] V: video format     | YUV420 (4:2:0) aka I420
    [transcode] A: import           | disabled
    [transcode] A: export           | disabled
    [transcode] V: encoding fps,frc | 25.000,3
    [transcode] A: bytes per frame  | 0 (0.000000)
    [transcode] A: adjustment       | 0@1000
    [transcode] V: IA32/AMD64 accel | sse3 sse2 sse 3dnowext 3dnow mmxext mmx cmove asm 
    [transcode] warning: no option -y found, option -o ignored, writing to "/dev/null"
    [transcode] V: video buffer     | 10 @ 0x0 [0x2]
    [transcode] A: audio buffer     | 10 @ 0x0x16
    [import_null.so] v0.2.0 (2002-01-19) (video) null | (audio) null
    [export_null.so] v0.1.2 (2001-08-17) (video) null | (audio) null
    ^C[transcode] (sighandler) SIGINT receivedFT: 9:40:17,  ( 0| 0|20) 
    [decoder.c] cancelling the import threads
    
    [transcode] encoded 870444 frames (0 dropped, 0 cloned), clip length 34817.76 s
    3.2) Avec mencoder (n'arrive pas à décoder)
    [ren39@localhost 2010-08-02.20.08.40-NT1-362]$ mencoder 000.DVR -o 000.avi -of avi  -oac mp3lame -ovc x264 
    MEncoder SVN-r31628-4.4.4 (C) 2000-2010 MPlayer Team
    success: format: 0  data: 0x0 - 0x325db000
    Seek failed
    libavformat file format detected.
    LAVF_header: av_open_input_stream() failed
    RAWDV file format detected.
    VIDEO:  [DVSD]  720x576  24bpp  25.000 fps    0.0 kbps ( 0.0 kbyte/s)
    [V] filefmt:22  fourcc:0x44535644  size:720x576  fps:25.000  ftime:=0.0400
    ==========================================================================
    Opening audio decoder: [libdv] Raw DV Audio Decoder
    Unknown/missing audio format -> no sound
    ADecoder init failed :(
    Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
    Cannot find codec 'dvaudio' in libavcodec...
    ADecoder init failed :(
    ADecoder init failed :(
    Cannot find codec for audio format 0x56444152.
    ==========================================================================
    Opening video filter: [expand osd=1]
    Expand: -1 x -1, -1 ; -1, osd: 1, aspect: 0.000000, round: 1
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffdv] vfm: ffmpeg (FFmpeg DV)
    ==========================================================================
    Could not find matching colorspace - retrying with -vf scale...
    Opening video filter: [scale]
    Movie-Aspect is undefined - no prescaling applied.
    [swscaler @ 0x1975e60] using unscaled yuv420p -> yuv420p special converter
    x264 [info]: using SAR=1/1
    x264 [info]: using cpu capabilities: MMX2 SSE2Slow
    x264 [info]: profile High, level 3.0
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 2 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 3 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=71
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 2 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=65
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 7 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=65
        Last message repeated 1 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=65
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=104
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=67
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=71
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 7 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=79
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=70
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    ..........
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 1 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=82
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=68
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=77
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=76
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=68
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=67
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=66
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 2 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=84
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
        Last message repeated 2 times
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=65
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=73
    [dvvideo @ 0x1952100] AC EOB marker is absent pos=64
    Erreur de segmentation (core dumped)
    3.3) Avec ffmpg (erreur)
    Source : http://babgvant.com/forums/p/990/5149.aspx
    [ren39@localhost 2010-08-02.20.08.40-NT1-362]$ ffmpeg -benchmark -threads 2 -y -i "000.DVR" –async 1 -deinterlace -s qvga -vcodec libxvid -qscale 4 -vtag DX50 -acodec libmp3lame -ac 2 -ab 128000 -f avi "output.avi" 
    FFmpeg version 0.6-rpmfusion, Copyright (c) 2000-2010 the FFmpeg developers
      built on Jul  3 2010 12:31:48 with gcc 4.4.4 20100630 (Red Hat 4.4.4-10)
      configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --extra-version=rpmfusion --enable-bzlib --enable-libdc1394 --enable-libdirac --enable-libfaad --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-x11grab --enable-avfilter --enable-avfilter-lavf --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
      libavutil     50.15. 1 / 50.15. 1
      libavcodec    52.72. 2 / 52.72. 2
      libavformat   52.64. 2 / 52.64. 2
      libavdevice   52. 2. 0 / 52. 2. 0
      libavfilter    1.19. 0 /  1.19. 0
      libswscale     0.11. 0 /  0.11. 0
      libpostproc   51. 2. 0 / 51. 2. 0
    000.DVR: Operation not permitted
  • Merci @ajji,

    Je ressayerai avec ta méthode, pour le moment je n'ai pas de proxy sous la main.

    Je posterai le résulta de la manipulation.


    ajji wrote:Etrange je viens de configurer un proxy sur mon system via : gnome-network-properties et ça marche sans probleme avec firefox qui a l option system proxy... fonctionne aussi par defaut avec yum en console ou en utilisant l interface visuelle "Add/Remove software"
    Le nom de la fenetre de configuration de gnome-network-properties en Anglais est : "network Proxy Preference" je n ai pas vu de : Configuration automatique du serveur mandataire mais je suppose que est l equivalent de "Automatic proxy configuration"

    Pour info je n ai pas saisi de http:\ devant l url du proxy...
  • Bonjour,

    Merci @Nicosss, gpodder fonctionne avec le proxy maintenant.

    @PapsOu : "Systeme > Préférences > Serveur Mandataire" équivaut à "gnome-network-properties". Je l'ai déjà essayé sans succès.
  • Bonjour,

    Certaines applications dont gpodder n'intègre pas le configuration d'un proxy.
    C'est pour cela que je souhaite configurer le poxy à un seul endroit pour centraliser les paramètres de ma connexion réseau.
  • Bonjour,

    Situation :
    Je suis derrière un proxy qui ne nécessite pas d'être identifié.

    Objectif :
    Configurer mon PC pour que tous mes applications (évolution, gpodder, yum) passe par un proxy.

    Démarche
    J'ai essayé :
    - gnome-network-properties : Configuration automatique du serveur mandataire : http://!!!!!/proxy-edu.pac (ne fonctionne pas)
    - networkManager : pas d'option pour le proxy

    Mes recherches sur interne et sur le forum me donnent que des solutions spécifiques aux applications (yum, ..).
    Solution qui fonctionne pour yum "/etc/yum.conf"

    Question
    Qu'elle sont les paramètres qu'il faut modifier pour que tous mes applications (évolution, gpodder, yum) passe par un proxy ?