<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://b.juglas.name/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Mes expériences informatiques</title>
  <link>http://b.juglas.name/</link>
  <atom:link href="http://b.juglas.name/feed/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>fr</language>
  <pubDate>Tue, 02 Jun 2009 13:49:45 +0200</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Convertir un disque VMware Workstation 6</title>
    <link>http://b.juglas.name/post/2009/06/02/Convertir-un-disque-VMware-Workstation-6</link>
    <guid isPermaLink="false">urn:md5:98b9198aed394556b154fc521b5a588b</guid>
    <pubDate>Tue, 02 Jun 2009 15:49:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>VMware</category>
            
    <description>    &lt;p&gt;&lt;code&gt;vmkfstools -i debian.vmdk NAGIOS.vmdk&lt;/code&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Installer la langue francaise sur un serveur Ubuntu minimal</title>
    <link>http://b.juglas.name/post/2009/05/18/Installer-la-langue-francaise-sur-un-serveur-Ubuntu-minimal</link>
    <guid isPermaLink="false">urn:md5:9eb319f40d0b3f16a4cfd0aa7f1411a2</guid>
    <pubDate>Mon, 18 May 2009 18:16:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
            
    <description>    &lt;p&gt;&lt;code&gt;sudo apt-get install language-pack-fr-base&lt;/code&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Forcer la recompilation des modules VMware pour le noyau Linux</title>
    <link>http://b.juglas.name/post/2008/12/25/Forcer-la-recompilation-des-modules-VMware-pour-le-noyau-Linux</link>
    <guid isPermaLink="false">urn:md5:ea6293cf7d33c5fbd94ed9c56928d416</guid>
    <pubDate>Thu, 25 Dec 2008 21:46:00 +0100</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>VMware</category>
            
    <description>    &lt;p&gt;Il y a un bug dans les versions binaires des modules noyaux fournis dans le
rpm nommé &lt;q&gt;VMware-Workstation-6.5.1-126130.x86_64.rpm&lt;/q&gt; Il faut donc les
supprimer en éxécutant la commande :&lt;/p&gt;
&lt;pre&gt;
rm -rf /usr/lib/vmware/modules/binary/
&lt;/pre&gt;
&lt;p&gt;Puis compiler tous les modules noyaux VMware en éxécutant la
commande :&lt;/p&gt;
&lt;pre&gt;
vmware-modconfig --console --install-all
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>PPTP avec NetworkManager</title>
    <link>http://b.juglas.name/post/pptp/client/networkmanager</link>
    <guid isPermaLink="false">urn:md5:9c35a05fb6a6d90fb62d6403db616921</guid>
    <pubDate>Mon, 30 Jun 2008 19:16:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
            
    <description>    &lt;p&gt;Installation:&lt;/p&gt;
&lt;pre&gt;
sudo apt-get install network-manager-pptp
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Réinitialiser le mot de passe root du service MySQL d'un serveur Ubuntu</title>
    <link>http://b.juglas.name/post/mysql/password/reset-root</link>
    <guid isPermaLink="false">urn:md5:4c08f0517bd32a1203975e866d9218ad</guid>
    <pubDate>Fri, 01 Feb 2008 17:00:00 +0100</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
            
    <description>    &lt;p&gt;Arreter le service MySQL:&lt;/p&gt;
&lt;pre&gt;
kill `cat /var/run/mysqld/mysqld.pid`
&lt;/pre&gt;
&lt;p&gt;Redémarrer le service MySQL sans charger les fichiers de configuration ni
les privilèges:&lt;/p&gt;
&lt;pre&gt;
mysqld_safe --no-defaults --skip-grant-tables &amp;amp;
&lt;/pre&gt;
&lt;p&gt;Se connecter en tant que root à la table nommée mysql du service MySQL de
secours:&lt;/p&gt;
&lt;pre&gt;
mysql -u root mysql
&lt;/pre&gt;
&lt;p&gt;Réinitialiser la valeur du mot de passe de l'utilisateur root :&lt;/p&gt;
&lt;pre&gt;
UPDATE user SET Password=PASSWORD('motdepasse') WHERE User='root';
&lt;/pre&gt;
&lt;p&gt;Réinitialiser la valeur du mot de passe de l'utilisateur
debian-sys-maint :&lt;/p&gt;
&lt;pre&gt;
UPDATE user SET Password=PASSWORD('motdepasseDans/etc/mysql/debian.cnf') WHERE User='debian-sys-maint';
&lt;/pre&gt;
&lt;p&gt;Appliquer les nouveaux privileges:&lt;/p&gt;
&lt;pre&gt;
FLUSH PRIVILEGES;
&lt;/pre&gt;
&lt;p&gt;Arreter le service MySQL de secours :&lt;/p&gt;
&lt;pre&gt;
kill `cat /var/lib/mysql/www.pid`
&lt;/pre&gt;
&lt;p&gt;Démarrer normalement le service MySQL :&lt;/p&gt;
&lt;pre&gt;
invoke-rc.d mysql start
&lt;/pre&gt;
&lt;p&gt;Tester l'acces root :&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Mes bonnes résolutions technologiques de 2008</title>
    <link>http://b.juglas.name/post/2008/01/bonnes-resolutions-technologiques</link>
    <guid isPermaLink="false">urn:md5:f3aed40f2e3928f996a9cbc5b5d659d8</guid>
    <pubDate>Thu, 24 Jan 2008 22:26:00 +0100</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
        <category>Gandi</category><category>install</category><category>JeOS</category><category>Rails</category><category>Ruby</category><category>Ubuntu</category><category>VMware</category><category>Xen</category>    
    <description>    &lt;p&gt;VMware, Ubuntu, JeOS, Gandi, Xen, Rails, Redmine&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Voici les technologies que je suis entrain de mettre en place pour mon usage
personnel et amical.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Je comptes héberger des applications Rails sur deux plateformes différentes
de virtualisation:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;VMware Server hébergeant une machine virtuelle (VM) installée en Ubuntu
Server JeOS Edition réservée pour l'instant à VMware Server et VMware ESX.&lt;/li&gt;
&lt;li&gt;Hebergement Gandi Web utilisant Xen et permettant d'installer
automatiquement une Ubuntu en la configurant automatiquement comme serveur Ruby
on Rails.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Par contre, pour comparer ces deux hébergements, je vais y mettre les mêmes
applications Rails:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Redmine pour la gestion moderne de projets de conception moderne de
logiciels&lt;/li&gt;
&lt;li&gt;Typo pour la rédaction d'articles de blog&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;J'espère pouvoir vous en dire plus bientôt, à la prochaine !&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Services réseaux dans machine virtuelle VirtualBox configurée en NAT</title>
    <link>http://b.juglas.name/post/VirtualBox-redirection-NAT</link>
    <guid isPermaLink="false">urn:md5:9d606d0349c4819b3eb2bd14fc80e248</guid>
    <pubDate>Tue, 30 Oct 2007 00:19:00 +0100</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
        <category>commande</category><category>NAT</category><category>redirection</category><category>VirtualBox</category>    
    <description>    &lt;p&gt;voici les commandes à taper pour rediriger le port physique 2222 vers le
port virtuel 22 de la machine virtuelle UbuntuRails:&lt;/p&gt;
&lt;pre&gt;
vboxmanage setextradata &amp;quot;UbuntuRails&amp;quot; &amp;quot;VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/Protocol&amp;quot; TCP
vboxmanage setextradata &amp;quot;UbuntuRails&amp;quot; &amp;quot;VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort&amp;quot; 22
vboxmanage setextradata &amp;quot;UbuntuRails&amp;quot; &amp;quot;VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/HostPort&amp;quot; 2222
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Install through rubygems as normal user (non root)</title>
    <link>http://b.juglas.name/post/install-rails-usermode</link>
    <guid isPermaLink="false">urn:md5:fdc945862c2a4f434d7943e9228a45a9</guid>
    <pubDate>Mon, 29 Oct 2007 00:37:00 +0100</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
        <category>install</category><category>Linux</category><category>Rails</category><category>Ruby</category><category>Ubuntu</category><category>UserMode</category>    
    <description>    &lt;p&gt;instructions based on &lt;a href=&quot;https://help.ubuntu.com/community/RubyOnRails#head-b67f2542810c0571bebbd0ce6a60b64f4623067a&quot; hreflang=&quot;en&quot;&gt;Ubuntu.Com Wiki page titled RubyOnRails&lt;/a&gt; which is based on
&lt;a href=&quot;http://docs.rubygems.org/read/chapter/15#page101&quot; hreflang=&quot;en&quot;&gt;RubyGems FAQ&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;All has moved on &lt;a href=&quot;http://bjuglas.free.fr/wiki/doku.php?id=langage:script:ruby:gem:install:non_root&quot; hreflang=&quot;fr&quot;&gt;My Wiki&lt;/a&gt; and will be translated into french.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Afficher la configuration NAT d'un routeur Cisco</title>
    <link>http://b.juglas.name/post/Cisco/NAT/configuration/afficher</link>
    <guid isPermaLink="false">urn:md5:85201042e953700382f92536ec18f68d</guid>
    <pubDate>Thu, 05 Jul 2007 19:14:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Cisco</category>    
    <description>    &lt;pre&gt;
show ip nat statistics
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Modifier le port d'administration HTTPS d'un FortiGate</title>
    <link>http://b.juglas.name/post/fortigate/admin/modif/portAdminHTTPS</link>
    <guid isPermaLink="false">urn:md5:2b426e0b233a603af4388da38f7481e3</guid>
    <pubDate>Tue, 03 Jul 2007 17:11:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>FortiGate</category>    
    <description>    &lt;pre&gt;
config system global
set admin-sport 8443
end
show system global
exit
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Changer l'adresse IP d'une interface réseau Linux</title>
    <link>http://b.juglas.name/post/Linux/changer/IP</link>
    <guid isPermaLink="false">urn:md5:8792cc17e04cdf4eedbc206826dd5a93</guid>
    <pubDate>Wed, 20 Jun 2007 23:37:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
            
    <description>    &lt;h2&gt;Temporairement:&lt;/h2&gt;
&lt;h5&gt;Pour afficher page par page la configuration réseau actuelle de toutes les
interfaces réseau actives:&lt;/h5&gt;
&lt;pre&gt;
ifconfig | more
&lt;/pre&gt;
&lt;h5&gt;Pour que l'interface réseau eth0 prenne l'adresse IP 192.168.1.1:&lt;/h5&gt;
&lt;pre&gt;
ifconfig eth0 192.168.1.1
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Installer les VMware tools par conary</title>
    <link>http://b.juglas.name/post/conary-VMwareTools</link>
    <guid isPermaLink="false">urn:md5:d443f7139144a03ce2774fa270d9f7b4</guid>
    <pubDate>Wed, 20 Jun 2007 23:00:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>VMware</category>
        <category>conary</category><category>VMware</category>    
    <description>    &lt;pre&gt;
conary update VMwareTools=addons.rpath.com@rpl:1 VMwareTools-kernel=addons.rpath.com@rpl:1
&lt;/pre&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Autoriser sa clé SSH</title>
    <link>http://b.juglas.name/post/2007/06/19/Autoriser-sa-cle-SSH</link>
    <guid isPermaLink="false">urn:md5:e3efe900d5e9208751013b64c4d00724</guid>
    <pubDate>Sun, 17 Jun 2007 12:46:00 +0200</pubDate>
    <dc:creator>Bertrand</dc:creator>
        <category>Linux</category>
            
    <description>    &lt;pre&gt;
cp \~/.ssh/id_rsa.pub \~/.ssh/authorized_keys
&lt;/pre&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>