<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Oracle on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</title>
    <link>https://move.cyber-neurones.org/categories/oracle/</link>
    <description>Recent content in Oracle on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</description>
    <generator>Hugo</generator>
    <language>fr</language>
    <lastBuildDate>Wed, 28 Sep 2022 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://move.cyber-neurones.org/categories/oracle/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Oracle Linux  / Redhat : systemd change /dev/null permissions</title>
      <link>https://move.cyber-neurones.org/post/2022/09/2022-09-28-oracle-linux-redhat-systemd-change-dev-null-permissions/</link>
      <pubDate>Wed, 28 Sep 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/09/2022-09-28-oracle-linux-redhat-systemd-change-dev-null-permissions/</guid>
      <description>&lt;p&gt;Pour fixer le problème des changements de permission sur /dev/null par systemd j&amp;rsquo;ai fait la commande suivante :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# grep -riL &amp;#34;ExecStartPost&amp;#34; /usr/lib/systemd/system/*service | xargs grep &amp;#34;TTYPath=/dev/tty&amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; | awk &amp;#39;{print $1}&amp;#39; | xargs sed -i &amp;#39;/^ExecStart.*/i ExecStartPost = -/usr/bin/xset -display :0 -dpms s off&amp;#39;&#xA;&#xA;# systemctl daemon-reload&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Pour tous les types TTY j&amp;rsquo;ai ajouté :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ExecStartPost = -/usr/bin/xset -display :0 -dpms s off&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai l&amp;rsquo;impression que le problème est fixé.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Asterisk : Fichier asterisk.service pour Oracle Linux 8.6</title>
      <link>https://move.cyber-neurones.org/post/2022/07/2022-07-27-asterisk-fichier-asterisk-service-pour-oracle-linux-8-6/</link>
      <pubDate>Wed, 27 Jul 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/07/2022-07-27-asterisk-fichier-asterisk-service-pour-oracle-linux-8-6/</guid>
      <description>&lt;p&gt;Voici le fichier que j&amp;rsquo;utilise dans &lt;strong&gt;/usr/lib/systemd/system/asterisk.service&lt;/strong&gt; :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;[Unit]&#xA;Description=Asterisk PBX and telephony daemon.&#xA;After=network.target&#xA;&#xA;[Service]&#xA;ExecReload=/usr/sbin/asterisk -rx &amp;#34;core reload&amp;#34;&#xA;ExecStart=/usr/sbin/asterisk -mqf -C  /etc/asterisk/asterisk.conf&#xA;ExecStop=/usr/sbin/asterisk -rx &amp;#34;core stop now&amp;#34;&#xA;PIDFile=/var/run/asterisk/asterisk.pid&#xA;Restart=on-failure&#xA;RestartSec=10&#xA;Type=simple&#xA;TimeoutStartSec=300&#xA;&#xA;Environment=HOME=/var/lib/asterisk&#xA;LimitCORE=infinity&#xA;LimitNOFILE=65536&#xA;WorkingDirectory=/var/lib/asterisk&#xA;User=asterisk&#xA;Group=asterisk&#xA;PrivateTmp=false&#xA;NoNewPrivileges=yes&#xA;ProtectHome=no&#xA;&#xA;[Install]&#xA;WantedBy=multi-user.target&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai pas fini avec le fichier &lt;strong&gt;/etc/asterisk/modules.conf ,&lt;/strong&gt; j&amp;rsquo;ai quelques problèmes dans le build :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;;&#xA;; Asterisk configuration file&#xA;;&#xA;; Module Loader configuration file&#xA;;&#xA;&#xA;[modules]&#xA;autoload=yes&#xA;;&#xA;; Any modules that need to be loaded before the Asterisk core has been&#xA;; initialized (just after the logger initialization) can be loaded&#xA;; using &amp;#39;preload&amp;#39;.  &amp;#39;preload&amp;#39; forces a module and the modules it&#xA;; is known to depend upon to be loaded earlier than they normally get&#xA;; loaded.&#xA;;&#xA;; NOTE: There is no good reason left to use &amp;#39;preload&amp;#39; anymore.  It was&#xA;; historically required to preload realtime driver modules so you could&#xA;; map Asterisk core configuration files to Realtime storage.&#xA;; This is no longer needed.&#xA;;&#xA;;preload = your_special_module.so&#xA;;&#xA;; If you want Asterisk to fail if a module does not load, then use&#xA;; the &amp;#34;require&amp;#34; keyword. Asterisk will exit with a status code of 2&#xA;; if a required module does not load.&#xA;;&#xA;;require = chan_pjsip.so&#xA;;&#xA;; If you want you can combine with preload&#xA;; preload-require = your_special_module.so&#xA;;&#xA;;load = res_musiconhold.so&#xA;;&#xA;; Load one of: alsa, or console (portaudio).&#xA;; By default, load chan_console only (automatically).&#xA;;&#xA;noload = chan_alsa.so&#xA;;noload = chan_console.so&#xA;;&#xA;; Do not load res_hep and kin unless you are using HEP monitoring&#xA;; http://sipcapture.org in your network.&#xA;;&#xA;noload = res_hep.so&#xA;noload = res_hep_pjsip.so&#xA;noload = res_hep_rtcp.so&#xA;;&#xA;; Do not load chan_sip by default, it may conflict with res_pjsip.&#xA;noload = chan_sip.so&#xA;;&#xA;; Load one of the voicemail modules as they are mutually exclusive.&#xA;; By default, load app_voicemail only (automatically).&#xA;;&#xA;;noload = app_voicemail.so&#xA;noload = app_voicemail_imap.so&#xA;noload = app_voicemail_odbc.so&#xA;&#xA;; &#xA;noload = res_config_ldap.so&#xA;noload = app_jack.so&#xA;noload = res_config_pgsql.so&#xA;noload = res_phoneprov.so&#xA;noload = res_smdi.so&#xA;noload = res_pjsip_phoneprov_provider.so&#xA;noload = cdr_csv.so&#xA;noload = cdr_sqlite3_custom.so&#xA;noload = cdr_manager.so&#xA;noload = cdr_pgsql.so&#xA;noload = cdr_tds.so&#xA;noload = cdr_odbc.so&#xA;noload = cel_sqlite3_custom.so&#xA;noload = cel_tds.so&#xA;noload = app_alarmreceiver.so&#xA;noload = cel_pgsql.so&#xA;noload = res_pjsip_transport_websocket.so&#xA;noload = res_config_sqlite3.so&#xA;noload = res_config_pgsql.so&#xA;noload = chan_oss.so&#xA;noload = chan_alsa.so&#xA;noload = app_minivm.so&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Oracle Linux 8.3 : Module yaml error: Unexpected key in data: static_context [line 9 col 3]</title>
      <link>https://move.cyber-neurones.org/post/2022/05/2022-05-25-oracle-linux-8-3-module-yaml-error-unexpected-key-in-data-static_context-line-9-col-3/</link>
      <pubDate>Wed, 25 May 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/05/2022-05-25-oracle-linux-8-3-module-yaml-error-unexpected-key-in-data-static_context-line-9-col-3/</guid>
      <description>&lt;p&gt;J&amp;rsquo;ai pu voir l&amp;rsquo;erreur suivante :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Module yaml error: Unexpected key in data: static_context [line 9 col 3]&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Pour fixer le problème :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# yum update libmodulemd&#xA;rabbitmq_erlang                                                                                        315  B/s | 833  B     00:02    &#xA;rabbitmq_erlang-source                                                                                 489  B/s | 819  B     00:01    &#xA;Module yaml error: Unexpected key in data: static_context [line 9 col 3]&#xA;Module yaml error: Unexpected key in data: static_context [line 9 col 3]&#xA;Dépendances résolues.&#xA;=======================================================================================================================================&#xA; Paquet                         Architecture              Version                           Dépôt                                Taille&#xA;=======================================================================================================================================&#xA;Mise à jour:&#xA; libmodulemd                    x86_64                    2.13.0-1.el8                      ol8_baseos_latest                    233 k&#xA;&#xA;Résumé de la transaction&#xA;=======================================================================================================================================&#xA;Mettre à niveau  1 Paquet&#xA;&#xA;Taille totale des téléchargements : 233 k&#xA;Voulez-vous continuer ? [o/N] : o&#xA;Téléchargement des paquets :&#xA;libmodulemd-2.13.0-1.el8.x86_64.rpm                                                                    3.4 MB/s | 233 kB     00:00    &#xA;---------------------------------------------------------------------------------------------------------------------------------------&#xA;Total                                                                                                  3.2 MB/s | 233 kB     00:00     &#xA;Test de la transaction&#xA;La vérification de la transaction a réussi.&#xA;Lancement de la transaction de test&#xA;Transaction de test réussie.&#xA;Exécution de la transaction&#xA;  Préparation           :                                                                                                          1/1 &#xA;  Mise à jour           : libmodulemd-2.13.0-1.el8.x86_64                                                                          1/2 &#xA;  Nettoyage de          : libmodulemd-2.9.4-2.el8.x86_64                                                                           2/2 &#xA;  Exécution du scriptlet: libmodulemd-2.9.4-2.el8.x86_64                                                                           2/2 &#xA;  Vérification de       : libmodulemd-2.13.0-1.el8.x86_64                                                                          1/2 &#xA;  Vérification de       : libmodulemd-2.9.4-2.el8.x86_64                                                                           2/2 &#xA;&#xA;Mis à niveau:&#xA;  libmodulemd-2.13.0-1.el8.x86_64                                                                                                      &#xA;&#xA;Terminé !&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Ma version de Oracle Linux 8.3 :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Migration de Oracle Linux 7.x vers Oracle Linux 8.x avec leapp : Echec complet</title>
      <link>https://move.cyber-neurones.org/post/2022/05/2022-05-13-migration-de-oracle-linux-7-x-vers-oracle-linux-8-x-avec-leapp-echec-complet/</link>
      <pubDate>Fri, 13 May 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/05/2022-05-13-migration-de-oracle-linux-7-x-vers-oracle-linux-8-x-avec-leapp-echec-complet/</guid>
      <description>&lt;p&gt;J&amp;rsquo;ai essayé une migration avec Leapp mais sans succès, pourtant je pense bien avoir suivi la procédure.&lt;/p&gt;&#xA;&lt;p&gt;Etape 1 : Mise en place de la dernier version de la Oracle Linux 7.x :&lt;/p&gt;&#xA;&lt;p&gt; &lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# sudo yum upgrade&#xA;... reboot ...&#xA;# cat /etc/system-release&#xA;Oracle Linux Server release 7.9&#xA;# yum repolist&#xA;Modules complémentaires chargés : ulninfo&#xA;id du dépôt                                                             nom du dépôt                                                                                                                           statut&#xA;ol7_UEKR5/x86_64                                                        Latest Unbreakable Enterprise Kernel Release 5 for Oracle Linux 7Server (x86_64)                                                          702&#xA;ol7_latest/x86_64                                                       Oracle Linux 7Server Latest (x86_64)                                                                                                   24 259&#xA;repolist: 24 961&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Etape 2 : Suppression des anciens Kernel :&lt;/p&gt;</description>
    </item>
    <item>
      <title>VirtualBox : Problème lors de l&#39;installation d&#39;une nouvelle Box : -&gt; VERR_CPUM_RAISE_GP_0!</title>
      <link>https://move.cyber-neurones.org/post/2021/03/2021-03-15-virtualbox-probleme-lors-de-linstallation-dune-nouvelle-box-verr_cpum_raise_gp_0/</link>
      <pubDate>Mon, 15 Mar 2021 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2021/03/2021-03-15-virtualbox-probleme-lors-de-linstallation-dune-nouvelle-box-verr_cpum_raise_gp_0/</guid>
      <description>&lt;p&gt;Ma version de VirtualBox: &lt;strong&gt;6.1.18&lt;/strong&gt; et ma version de Windows : &lt;strong&gt;Windows 10 Entreprise&lt;/strong&gt; OS Build 18363.1379 .&lt;/p&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai du faire ceci :&lt;/p&gt;&#xA;&lt;p&gt;1-Lancer un prompt en Administrateur ;&lt;/p&gt;&#xA;&lt;p&gt;2-Lancer la commande :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;bcdedit /set hypervisorlaunchtype off&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;3-Faire un reboot :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;shutdown -s -t 2&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Voici les logs de Virtual Box qui plantait:&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;00:00:03.654980 Full Name: &amp;#34;Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz&amp;#34;&#xA;00:00:03.654981 TLB 2/4M Instr/Uni: res0 0 entries&#xA;00:00:03.654981 TLB 2/4M Data: res0 0 entries&#xA;00:00:03.654982 TLB 4K Instr/Uni: res0 0 entries&#xA;00:00:03.654982 TLB 4K Data: res0 0 entries&#xA;00:00:03.654982 L1 Instr Cache Line Size: 0 bytes&#xA;00:00:03.654983 L1 Instr Cache Lines Per Tag: 0&#xA;00:00:03.654983 L1 Instr Cache Associativity: res0&#xA;00:00:03.654983 L1 Instr Cache Size: 0 KB&#xA;00:00:03.654983 L1 Data Cache Line Size: 0 bytes&#xA;00:00:03.654984 L1 Data Cache Lines Per Tag: 0&#xA;00:00:03.654984 L1 Data Cache Associativity: res0&#xA;00:00:03.654984 L1 Data Cache Size: 0 KB&#xA;00:00:03.654985 L2 TLB 2/4M Instr/Uni: off 0 entries&#xA;00:00:03.654985 L2 TLB 2/4M Data: off 0 entries&#xA;00:00:03.654985 L2 TLB 4K Instr/Uni: off 0 entries&#xA;00:00:03.654986 L2 TLB 4K Data: off 0 entries&#xA;00:00:03.654986 L2 Cache Line Size: 0 bytes&#xA;00:00:03.654987 L2 Cache Lines Per Tag: 0&#xA;00:00:03.654987 L2 Cache Associativity: off&#xA;00:00:03.654987 L2 Cache Size: 0 KB&#xA;00:00:03.654988 TS - Temperature Sensor = 0 (0)&#xA;00:00:03.654989 FID - Frequency ID control = 0 (0)&#xA;00:00:03.654990 VID - Voltage ID control = 0 (0)&#xA;00:00:03.654990 TscInvariant - Invariant Time Stamp Counter = 1 (1)&#xA;00:00:03.654991 CBP - Core Performance Boost = 0 (0)&#xA;00:00:03.654992 EffFreqRO - Read-only Effective Frequency Interface = 0 (0)&#xA;00:00:03.654992 ProcFdbkIf - Processor Feedback Interface = 0 (0)&#xA;00:00:03.654993 ProcPwrRep - Core power reporting interface support = 0 (0)&#xA;00:00:03.654994 Physical Address Width: 39 bits&#xA;00:00:03.654994 Virtual Address Width: 48 bits&#xA;00:00:03.654994 Guest Physical Address Width: 0 bits&#xA;00:00:03.654995 Physical Core Count: 1&#xA;00:00:03.654996&#xA;00:00:03.654996 ******************** End of CPUID dump **********************&#xA;0:00:03.655008 VMEmt: Halt method global1 (5)&#xA;00:00:03.655098 VMEmt: HaltedGlobal1 config: cNsSpinBlockThresholdCfg=50000&#xA;00:00:03.655176 Changing the VM state from &amp;#39;CREATING&amp;#39; to &amp;#39;CREATED&amp;#39;&#xA;00:00:03.656076 Changing the VM state from &amp;#39;CREATED&amp;#39; to &amp;#39;POWERING_ON&amp;#39;&#xA;00:00:03.656236 AIOMgr: Endpoints without assigned bandwidth groups:&#xA;00:00:03.656252 AIOMgr: E:\LIVECD\OracleLinux-R8-U3-x86_64-dvd.iso&#xA;00:00:03.656258 AIOMgr: E:\Oracle Linux 8.3\Oracle Linux 8.3.vdi&#xA;00:00:03.656697 Changing the VM state from &amp;#39;POWERING_ON&amp;#39; to &amp;#39;RUNNING&amp;#39;&#xA;00:00:03.656717 Console: Machine state changed to &amp;#39;Running&amp;#39;&#xA;00:00:03.658838 VMMDev: Guest Log: BIOS: VirtualBox 6.1.18&#xA;00:00:03.659012 PCI: Setting up resources and interrupts&#xA;00:00:03.664606 ERROR [COM]: aRC=VBOX_E_VM_ERROR (0x80bb0003) aIID={4680b2de-8690-11e9-b83d-5719e53cf1de} aComponent={DisplayWrap} aText={Could not take a screenshot (VERR_NOT_SUPPORTED)}, preserve=false aResultDetail=-37&#xA;00:00:03.690437 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)&#xA;00:00:03.706765 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0&#xA;00:00:03.709342 VMMDev: Guest Log: CPUID EDX: 0x178bfbff&#xA;00:00:03.709485 PIIX3 ATA: Ctl#0: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)&#xA;00:00:03.709529 PIIX3 ATA: Ctl#0: finished processing RESET&#xA;00:00:03.712679 AHCI#0: Reset the HBA&#xA;00:00:03.712694 VD#0: Cancelling all active requests&#xA;00:00:03.712851 AHCI#0: Port 0 reset&#xA;00:00:03.712929 VD#0: Cancelling all active requests&#xA;00:00:03.713609 VMMDev: Guest Log: BIOS: AHCI 0-P#0: PCHS=16383/16/63 LCHS=1024/255/63 0x000000000a36f580 sectors&#xA;00:00:03.717731 PIT: mode=2 count=0x48d3 (18643) - 64.00 Hz (ch=0)&#xA;00:00:03.745810 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=000000000f300000 w=640 h=480 bpp=32 cbLine=0xA00 flags=0x0 origin=0,0&#xA;00:00:04.157989 GUI: UIMachineViewScale::resendSizeHint: Restoring guest size-hint for screen 0 to 800x600&#xA;00:00:04.158041 VMMDev: SetVideoModeHint: Got a video mode hint (800x600x32)@(0x0),(1;0) at 0&#xA;00:00:04.161243 GUI: 2D video acceleration is disabled&#xA;00:00:04.161314 GUI: HID LEDs sync is enabled&#xA;00:00:06.200584 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)&#xA;00:00:06.200907 VMMDev: Guest Log: BIOS: Boot : bseqnr=1, bootseq=0023&#xA;00:00:06.205053 VMMDev: Guest Log: BIOS: Booting from CD-ROM...&#xA;00:00:06.212463 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0&#xA;00:00:06.265354 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=000000000f300000 w=640 h=480 bpp=24 cbLine=0x780 flags=0x0 origin=0,0&#xA;00:00:09.954650 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0&#xA;00:00:10.635396 VMMDev: Guest Log: BIOS: KBD: unsupported int 16h function 03&#xA;00:00:10.635672 VMMDev: Guest Log: BIOS: AX=0305 BX=0000 CX=0000 DX=0000&#xA;00:00:10.636346 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=81&#xA;00:00:10.636666 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=81&#xA;00:00:10.637007 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=82&#xA;00:00:10.637332 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=82&#xA;00:00:10.637672 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=83&#xA;00:00:10.637991 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=83&#xA;00:00:10.638335 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=84&#xA;00:00:10.638654 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=84&#xA;00:00:10.638994 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=85&#xA;00:00:10.639343 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=85&#xA;00:00:10.639737 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=86&#xA;00:00:10.640057 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=86&#xA;00:00:10.640404 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=87&#xA;00:00:10.640723 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=87&#xA;00:00:10.641063 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=88&#xA;00:00:10.641385 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=88&#xA;00:00:10.641725 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=89&#xA;00:00:10.642044 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=89&#xA;00:00:10.642389 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8a&#xA;00:00:10.642709 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8a&#xA;00:00:10.643172 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8b&#xA;00:00:10.643494 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8b&#xA;00:00:10.643908 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8c&#xA;00:00:10.644298 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8c&#xA;00:00:10.644639 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8d&#xA;00:00:10.644956 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8d&#xA;00:00:10.645295 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8e&#xA;00:00:10.645612 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8e&#xA;00:00:10.645949 VMMDev: Guest Log: int13_harddisk_ext: function 41, unmapped device for ELDL=8f&#xA;00:00:10.646291 VMMDev: Guest Log: int13_harddisk: function 02, unmapped device for ELDL=8f&#xA;00:00:10.981711 GIM: KVM: VCPU 0: Enabled system-time struct. at 0x000000004c401000 - u32TscScale=0xc587b80f i8TscShift=-1 uVersion=2 fFlags=0x1 uTsc=0x46ba43e2f uVirtNanoTS=0x1b496aa89 TscKHz=2592008&#xA;00:00:10.981754 TM: Host/VM is not suitable for using TSC mode &amp;#39;RealTscOffset&amp;#39;, request to change TSC mode ignored&#xA;00:00:11.616013 GIM: KVM: Enabled wall-clock struct. at 0x000000004c400000 - u32Sec=1615824502 u32Nano=683849407 uVersion=2&#xA;00:00:11.665390 PIT: mode=2 count=0x4a9 (1193) - 1000.15 Hz (ch=0)&#xA;00:00:11.776216 MsrExit/0: 0010:ffffffffabe64d98/LM: WRMSR 00000033, 20000000:00000000 -&amp;gt; VERR_CPUM_RAISE_GP_0!&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Oracle Linux 8.2 : Installation de redis.so pour PHP 7.2</title>
      <link>https://move.cyber-neurones.org/post/2021/02/2021-02-22-oracle-linux-8-2-installation-de-redis-so-pour-php-7-2/</link>
      <pubDate>Mon, 22 Feb 2021 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2021/02/2021-02-22-oracle-linux-8-2-installation-de-redis-so-pour-php-7-2/</guid>
      <description>&lt;p&gt;Voici l&amp;rsquo;erreur que j&amp;rsquo;avais :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# php -v&#xA;PHP Warning:  PHP Startup: Unable to load dynamic library &amp;#39;redis.so&amp;#39; (tried: /usr/lib64/php/modules/redis.so (/usr/lib64/php/modules/redis.so: undefined symbol: zval_used_for_init), /usr/lib64/php/modules/redis.so.so (/usr/lib64/php/modules/redis.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0&#xA;PHP 7.2.24 (cli) (built: Oct 22 2019 08:28:36) ( NTS )&#xA;Copyright (c) 1997-2018 The PHP Group&#xA;Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;La procédure d&amp;rsquo;installation :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# yum install glibc glibc-devel gcc-c++&#xA;# yum install php-devel&#xA;# yum install make&#xA;# pecl install redis&#xA;# yum install curl-devel&#xA;# yum install php-json&#xA;# pecl install phalcon&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Encore une erreur :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Développement en C sous Linux : pthread et la fonction sleep().</title>
      <link>https://move.cyber-neurones.org/post/2018/10/2018-10-17-developpement-en-c-sous-linux-pthread-et-la-fonction-sleep/</link>
      <pubDate>Wed, 17 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2018/10/2018-10-17-developpement-en-c-sous-linux-pthread-et-la-fonction-sleep/</guid>
      <description>&lt;p&gt;Un petit exemple vaut mieux que de grands discours, voici le &lt;strong&gt;source en C&lt;/strong&gt; :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;#include &#xA;#include &#xA;#include &#xA;#include &amp;lt;sys/time.h&amp;gt;&#xA;#include &amp;lt;sys/types.h&amp;gt;&#xA;#include &#xA;static long debut = 0;&#xA;void* longue_pause(void* a){&#xA;        pid_t t = getpid();&#xA;        printf(&amp;#34;pid = %d\n&amp;#34;,(int)t);&#xA;        printf(&amp;#34;thread longue_pause %d debut : %ld\n&amp;#34;,(int)pthread_self(),time(0)-debut);&#xA;        sleep(10);&#xA;        printf(&amp;#34;thread longue_pause %d fin : %ld\n&amp;#34;,(int)pthread_self(),time(0)-debut);&#xA;}&#xA;void* petites_pauses(void* a){&#xA;&#x9;int i = 0;&#xA;        pid_t t = getpid();&#xA;        printf(&amp;#34;pid = %d\n&amp;#34;,t);&#xA;        printf(&amp;#34;thread petites_pauses %d debut : %ld \n&amp;#34;,(int)pthread_self(), time(0)-debut);&#xA;        for(; i &amp;lt; 10 ;++i){&#xA;                printf(&amp;#34;thread petites_pauses %d en cours : %ld \n&amp;#34;,(int)pthread_self(), time(0)-debut);&#xA;                sleep(1);&#xA;        }&#xA;}&#xA;int main(){&#xA;        pthread_t longue;&#xA;        pthread_t petit1;&#xA;        pthread_t petit2;&#xA;        debut = time(0);&#xA;        pthread_create(&amp;amp;longue,NULL,longue_pause,NULL);&#xA;        pthread_create(&amp;amp;petit1,NULL,petites_pauses,NULL);&#xA;        pthread_create(&amp;amp;petit2,NULL,petites_pauses,NULL);&#xA;&#x9;sleep(8);&#xA;&#x9;printf(&amp;#34;Debut join: %ld\n&amp;#34;,time(0)-debut);&#xA;        pthread_join(longue,NULL);&#xA;        printf(&amp;#34;fin long : %ld\n&amp;#34;,time(0)-debut); &#xA;        pthread_join(petit1,NULL);&#xA;&#x9;printf(&amp;#34;fin petit1 : %ld\n&amp;#34;,time(0)-debut);&#x9;&#xA;        pthread_join(petit2,NULL);&#xA;&#x9;printf(&amp;#34;fin petit2 : %ld\n&amp;#34;,time(0)-debut);&#xA;}&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Pour la compilation :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Oracle Linux 7.x : History of GLIBC and CVE</title>
      <link>https://move.cyber-neurones.org/post/2018/06/2018-06-19-oracle-linux-7-x-history-of-glibc-and-cve/</link>
      <pubDate>Tue, 19 Jun 2018 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2018/06/2018-06-19-oracle-linux-7-x-history-of-glibc-and-cve/</guid>
      <description>&lt;p&gt;History of glibc and CVE for Oracle Linux 7.x ( 7.0 / 7.1 / 7.2 / 7.3 / 7.4 / 7.5 ) :&lt;/p&gt;&#xA;&lt;p&gt;So Redhat ( and Oracle Linux, because it&amp;rsquo;s fork )  uses branch GLIBC &lt;strong&gt;2.17&lt;/strong&gt; instead GLIBC &lt;strong&gt;2.27&lt;/strong&gt; &amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;Question : What&amp;rsquo;s the current CVE on 2.17-222 ? It&amp;rsquo;s plan to merge with 2.27 ?&lt;/p&gt;&#xA;&lt;p&gt;Big gap on GLIBC between Redhat &amp;amp; Fédora :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cyber-neurones.org/wp-content/uploads/2018/06/image001.png&#34;&gt;&lt;img src=&#34;images/image001-300x224.png&#34; alt=&#34;&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Thanks.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Severity&lt;/th&gt;&#xA;          &lt;th&gt;Advisory&lt;/th&gt;&#xA;          &lt;th&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/th&gt;&#xA;          &lt;th&gt;Release Date&lt;/th&gt;&#xA;          &lt;th&gt;RPM&lt;/th&gt;&#xA;          &lt;th&gt;OS&lt;/th&gt;&#xA;          &lt;th&gt;KSPLICE&lt;/th&gt;&#xA;          &lt;th&gt;GLIB&lt;/th&gt;&#xA;          &lt;th&gt;CVE&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2018-4078.html&#34;&gt;ELSA-2018-4078&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;18/04/2018&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-222.ksplice1.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Moderate&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2018-0805.html&#34;&gt;ELSA-2018-0805&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security, bug fix, and enhancement update&lt;/td&gt;&#xA;          &lt;td&gt;16/04/2018&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-222.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://blogs.oracle.com/linux/announcing-the-release-of-oracle-linux-7-update-5&#34;&gt;&lt;strong&gt;Oracle Linux 7.5&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-222&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2014-9402 / CVE-2015-5180 / CVE-2017-12132 / CVE-2017-15670 / CVE-2017-15804 / CVE-2018-1000001&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;01/02/2018&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.27&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2017-3296.html&#34;&gt;ELBA-2017-3296&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;30/11/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-196.el7_4.2.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2017-3601.html&#34;&gt;ELSA-2017-3601&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;09/08/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-196.ksplice1.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Moderate&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2017-1916.html&#34;&gt;ELSA-2017-1916&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security, bug fix, and enhancement update&lt;/td&gt;&#xA;          &lt;td&gt;07/08/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-196.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://blogs.oracle.com/linux/oracle-linux-7-update-4-general-availability-v2&#34;&gt;&lt;strong&gt;Oracle Linux 7.4&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-196&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2014-9761 / CVE-2015-8776 / CVE-2015-8778 / CVE-2015-8779 / CVE-2015-8777&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;02/08/2017&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.26&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2017-3594.html&#34;&gt;ELBA-2017-3594&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;17/07/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.ksplice1.el7_3.5.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2017-1752.html&#34;&gt;ELBA-2017-1752&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;14/07/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.el7_3.5.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2017-3582.html&#34;&gt;ELSA-2017-3582&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;20/06/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.ksplice1.el7_3.4.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2017-1000364&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2017-1481.html&#34;&gt;ELSA-2017-1481&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;19/06/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.el7_3.4.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2017-1000366&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2017-3577.html&#34;&gt;ELBA-2017-3577&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;30/05/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.ksplice1.el7_3.2.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2017-1302.html&#34;&gt;ELBA-2017-1302&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;26/05/2017&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.el7_3.2.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;05/02/2017&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.25&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-3649.html&#34;&gt;ELBA-2016-3649&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;08/12/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.ksplice1.el7_3.1.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-2861.html&#34;&gt;ELBA-2016-2861&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;06/12/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.el7_3.1.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Low&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2016-2573.html&#34;&gt;ELSA-2016-2573&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security, bug fix, and enhancement update&lt;/td&gt;&#xA;          &lt;td&gt;09/11/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://blogs.oracle.com/linux/oracle-linux-73-available-now&#34;&gt;&lt;strong&gt;Oracle Linux 7.3&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-157&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2016-3075 / CVE-2015-7547 / CVE-2015-5229&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Low&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2016-3638.html&#34;&gt;ELSA-2016-3638&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;09/11/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-157.ksplice1.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;2.17-157&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2016-3075&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;05/08/2016&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.24&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-1449.html&#34;&gt;ELBA-2016-1449&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;02/08/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.el7_2.8.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-3590.html&#34;&gt;ELBA-2016-3590&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;02/08/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.ksplice1.el7_2.8.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-3562.html&#34;&gt;ELBA-2016-3562&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;17/05/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.ksplice1.el7_2.6.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2016-1030.html&#34;&gt;ELBA-2016-1030&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;12/05/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.el7_2.6.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;19/02/2016&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.23&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Critical&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2016-3515.html&#34;&gt;ELSA-2016-3515&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;16/02/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.ksplice1.el7_2.4.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;YES&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Critical&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2016-0176.html&#34;&gt;ELSA-2016-0176&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security and bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;16/02/2016&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.el7_2.4.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2015-7547 / CVE-2015-5229&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2015-2172.html&#34;&gt;ELSA-2015-2172&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;25/11/2015&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-106.0.1.el7_2.1.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.17-106&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2015-5277&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Moderate&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2015-2199.html&#34;&gt;ELSA-2015-2199&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security, bug fix, and enhancement update&lt;/td&gt;&#xA;          &lt;td&gt;24/11/2015&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-105.0.1.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://blogs.oracle.com/linux/announcing-the-general-availability-of-oracle-linux-72&#34;&gt;&lt;strong&gt;Oracle Linux 7.2&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-105&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2013-7423 / CVE-2015-1781 / CVE-2015-1472 / CVE-2015-1473&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;14/08/2015&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.22&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Moderate&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2015-0327.html&#34;&gt;ELSA-2015-0327&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security and bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;09/03/2015&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-78.0.1.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://blogs.oracle.com/linux/announcing-general-availability-of-oracle-linux-71-v2&#34;&gt;&lt;strong&gt;Oracle Linux 7.1&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-78&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2014-6040 / CVE-2014-8121&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;06/02/2015&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.21&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Critical&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2015-0092.html&#34;&gt;ELSA-2015-0092&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;27/01/2015&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-55.0.4.el7_0.5.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2015-0235&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Moderate&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2014-2023.html&#34;&gt;ELSA-2014-2023&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security and bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;18/12/2014&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-55.0.4.el7_0.3.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2014-7817&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Important&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELSA-2014-1110.html&#34;&gt;ELSA-2014-1110&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; security update&lt;/td&gt;&#xA;          &lt;td&gt;29/08/2014&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-55.0.4.el7_0.1.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;Oracle Linux 7.xx&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;CVE-2014-5119 / CVE-2014-0475&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;07/09/2014&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.20&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;-&lt;/td&gt;&#xA;          &lt;td&gt;&lt;a href=&#34;https://linux.oracle.com/errata/ELBA-2014-3051.html&#34;&gt;ELBA-2014-3051&lt;/a&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;glibc&lt;/strong&gt; bug fix update&lt;/td&gt;&#xA;          &lt;td&gt;29/07/2014&lt;/td&gt;&#xA;          &lt;td&gt;glibc-2.17-55.0.4.el7.x86_64.rpm&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;Oracle Linux 7.0&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17-55&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;08/02/2014&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.19&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;12/08/2013&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;2.18&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;25/02/2012&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;GNU C Library&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;strong&gt;2.17&lt;/strong&gt;&lt;/td&gt;&#xA;          &lt;td&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;</description>
    </item>
    <item>
      <title>Redis : Configuration et performance sous Fédora &amp; Redhat</title>
      <link>https://move.cyber-neurones.org/post/2017/09/2017-09-06-redis-configuration-et-performance-sous-fedora-redhat/</link>
      <pubDate>Wed, 06 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2017/09/2017-09-06-redis-configuration-et-performance-sous-fedora-redhat/</guid>
      <description>&lt;p&gt;Je fais un petit article pour mettre mes configurations de Redis (de l&amp;rsquo;anglais &lt;strong&gt;RE&lt;/strong&gt;mote &lt;strong&gt;DI&lt;/strong&gt;ctionary &lt;strong&gt;S&lt;/strong&gt;erver qui peut-être traduit par « serveur de dictionnaire distant ») sous Linux, afin de partager et aussi de corriger si nécessaire. Redis est développé en C AINSI comme tous les bons logiciels, il fait partie des NoSQL ( &lt;a href=&#34;https://fr.wikipedia.org/wiki/NoSQL&#34;&gt;https://fr.wikipedia.org/wiki/NoSQL&lt;/a&gt; ). Les plus intéressant à connaitre sont : REDIS, MongoDB ( &lt;a href=&#34;https://www.mongodb.com/fr&#34;&gt;https://www.mongodb.com/fr&lt;/a&gt; ) , CouchDB ( &lt;a href=&#34;http://couchdb.apache.org&#34;&gt;http://couchdb.apache.org&lt;/a&gt; ) .&lt;/p&gt;</description>
    </item>
    <item>
      <title>Paris Open Source Summit 2016 : #OSSPARIS2016</title>
      <link>https://move.cyber-neurones.org/post/2016/11/2016-11-17-paris-open-source-summit-2016-ossparis2016/</link>
      <pubDate>Thu, 17 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2016/11/2016-11-17-paris-open-source-summit-2016-ossparis2016/</guid>
      <description>&lt;p&gt;C&amp;rsquo;était une super édition avec beaucoup d&amp;rsquo;échanges ( Docker, Zabbix, PostgreSQL, Redhat, Fédora, RabbitMQ, &amp;hellip;) , et superbe discours d&amp;rsquo;Axelle Lemaire en ouverture. Même si on préférerait voir des actes plutôt que des beaux discours ;) . Vivement le Libre dans l&amp;rsquo;éducation nationale, la police, la défense, &amp;hellip; . Voir que même les ministères signent des contrats ailleurs qu&amp;rsquo;en &lt;a href=&#34;http://mashable.france24.com/tech-business/20161019-microsoft-ministere-defense-contrat&#34;&gt;France (en Irlande)&lt;/a&gt;, ce n&amp;rsquo;est pas montrer le bon exemple. Lire cet article de l&amp;rsquo;APRIL : &lt;a href=&#34;https://www.april.org/l-april-demande-la-publication-de-l-accord-de-securite-entre-microsoft-et-l-etat&#34;&gt;https://www.april.org/l-april-demande-la-publication-de-l-accord-de-securite-entre-microsoft-et-l-etat&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
