<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://www.arobose.com/wiki/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
		<id>https://www.arobose.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gdo</id>
		<title>Wiki Arobose - Contributions de l'utilisateur [fr]</title>
		<link rel="self" type="application/atom+xml" href="https://www.arobose.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gdo"/>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Sp%C3%A9cial:Contributions/Gdo"/>
		<updated>2026-04-05T21:51:48Z</updated>
		<subtitle>Contributions de l'utilisateur</subtitle>
		<generator>MediaWiki 1.19.7</generator>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino</id>
		<title>Ubuntu personnalisée pour pcDuino</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino"/>
				<updated>2013-11-25T17:31:21Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pré-requis :&lt;br /&gt;
* Une ubuntu &amp;gt;= 12.04&lt;br /&gt;
* Une carte micro-SD &amp;gt;= 2Go&lt;br /&gt;
* Une connexion à internet&lt;br /&gt;
* Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-distro-0.1.deb make-deb-distro]&lt;br /&gt;
* Télécharger le profil pour la pcduino : [https://github.com/geonobot/pcduino-profile/archive/master.zip pcduino-profile]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour pouvoir créer notre carte micro-SD prête à l'emploi pour pcDuino, nous allons utiliser un programme nommé make_deb_distro.&lt;br /&gt;
Celui-ci permet de créer une distribution Ubuntu ou Debian personnalisée pour différentes cibles, grâce à un système de profils.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Commencons par installer le package make-deb-distro :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo dpkg -i make-deb-distro-0.1.deb&lt;br /&gt;
sudo apt-get -f install&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Créez un répertoire, par exemple build/, et copiez y le profil de notre pcDuino que vous avez normalement téléchargé dans les pré-requis :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;mkdir build&lt;br /&gt;
cp pcduino-profile-master.zip build/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il faut maintenant décompresser l'archive du profil et entrer dans son répertoire :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;cd build&lt;br /&gt;
unzip pcduino-profile-master.zip&lt;br /&gt;
cd pcduino-profile-master&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il ne reste plus qu'à insérer notre carte micro-SD et à appeler notre programme make-deb-distro en lui indiquant notre profil et les options voulues :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La première fois qu'elle est lancée, cette commande est très longue et dépend de la puissance de votre PC ainsi que de la qualité de votre connexion internet.&lt;br /&gt;
Une fois l'exécution terminée, la carte est prête à être utilisée sur la pcduino.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour des explications sur les options passée à notre commande, lancez la commande '''make-deb-distro --help''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;make-deb-distro --help&lt;br /&gt;
This script build custom Ubuntu/Debian distributions.&lt;br /&gt;
&lt;br /&gt;
./make-deb-distro [-a &amp;lt;action&amp;gt;] [OPTIONS]&lt;br /&gt;
&lt;br /&gt;
Options:&lt;br /&gt;
        (-a|--action)            &amp;lt;action&amp;gt;                Action : install or uninstall.&lt;br /&gt;
        (-b|--target-device)     &amp;lt;device&amp;gt;                Target device&lt;br /&gt;
        (-c|--configuration)     &amp;lt;file&amp;gt;                  Configuration file&lt;br /&gt;
        (-d|--target-dir)        &amp;lt;path&amp;gt;                  Bootstrap path&lt;br /&gt;
        (-e|--excluded-packages) &amp;quot;&amp;lt;excluded-packages&amp;gt;&amp;quot;   Packages to exclude from bootstrap process. List must be quoted.&lt;br /&gt;
        (-f|--only-rootfs)                               Build rootfs only&lt;br /&gt;
        (-h|--help)                                      Display this help message&lt;br /&gt;
        (-n|--distro-version)    &amp;lt;distro-name&amp;gt;           Debian/Ubuntu distribution name (same as host by default).&lt;br /&gt;
        (-o|--deb-packages)      &amp;quot;&amp;lt;deb-packages&amp;gt;&amp;quot;        Local .deb packages. List must be quoted.&lt;br /&gt;
        (-p|--packages)          &amp;quot;&amp;lt;packages&amp;gt;&amp;quot;            Distro packages to use. List must be quoted.&lt;br /&gt;
        (--script-rootfs)        &amp;lt;script&amp;gt;                Launch your script after rootfs is created and all package installed.&lt;br /&gt;
        (--script-prepare)       &amp;lt;script&amp;gt;                Launch your script to prepare the target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/prepare.sh by default)&lt;br /&gt;
        (--script-burn)          &amp;lt;script&amp;gt;                Launch your script to burn rootfs on target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/burn.sh by default)&lt;br /&gt;
        (-t|--target)            &amp;lt;target&amp;gt;                Target achitecture (same as host by default).&lt;br /&gt;
        (-v|--verbose)                                   Verbose mode&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Donc si par exemple vous souhaitez rajouter un environnement graphique ubuntu, vous devrez modifier l'option '''-p''' en ajoutant le package '''ubuntu-desktop''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a uninstall -c pcduino.conf &lt;br /&gt;
sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client ubuntu-desktop&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Toutes les options en ligne de commande peuvent être initialisées dans le fichier de conf passé en paramètre ('''pcduino.conf''').&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino</id>
		<title>Ubuntu personnalisée pour pcDuino</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino"/>
				<updated>2013-11-25T17:30:58Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pré-requis :&lt;br /&gt;
* Une ubuntu &amp;gt;= 12.04&lt;br /&gt;
* Une carte micro-SD &amp;gt;= 2Go&lt;br /&gt;
* Une connexion à internet&lt;br /&gt;
* Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-distro-0.1.deb make-deb-distro]&lt;br /&gt;
* Télécharger le profil pour la pcduino : [https://github.com/geonobot/pcduino-profile/archive/master.zip pcduino-profile]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour pouvoir créer notre carte micro-SD prête à l'emploi pour pcDuino, nous allons utiliser un programme nommé make_deb_distro.&lt;br /&gt;
Celui-ci permet de créer une distribution Ubuntu ou Debian personnalisée pour différentes cibles, grâce à un système de profils.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Commencons par installer le package make-deb-distro :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo dpkg -i make-deb-distro-0.1.deb&lt;br /&gt;
sudo apt-get -f install&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Créez un répertoire, par exemple build/, et copiez y le profil de notre pcDuino que vous avez normalement téléchargé dans les pré-requis :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;mkdir build&lt;br /&gt;
cp pcduino-profile-master.zip build/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il faut maintenant décompresser l'archive du profil et entrer dans son répertoire :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;cd build&lt;br /&gt;
unzip pcduino-profile-master.zip&lt;br /&gt;
cd pcduino-profile-master&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il ne reste plus qu'à insérer notre carte micro-SD et à appeler notre programme make-deb-distro en lui indiquant notre profil et les options voulues :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La première fois qu'elle est lancée, cette commande est très longue et dépend de la puissance de votre PC ainsi que de la qualité de votre connexion internet.&lt;br /&gt;
Une fois l'exécution terminée, la carte est prête à être utilisée sur la pcduino.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour des explications sur les options passée à notre commande, lancez la commande '''make-deb-distro --help''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;make-deb-distro --help&lt;br /&gt;
This script build custom Ubuntu/Debian distributions.&lt;br /&gt;
&lt;br /&gt;
./make-deb-distro [-a &amp;lt;action&amp;gt;] [OPTIONS]&lt;br /&gt;
&lt;br /&gt;
Options:&lt;br /&gt;
        (-a|--action)            &amp;lt;action&amp;gt;                Action : install or uninstall.&lt;br /&gt;
        (-b|--target-device)     &amp;lt;device&amp;gt;                Target device&lt;br /&gt;
        (-c|--configuration)     &amp;lt;file&amp;gt;                  Configuration file&lt;br /&gt;
        (-d|--target-dir)        &amp;lt;path&amp;gt;                  Bootstrap path&lt;br /&gt;
        (-e|--excluded-packages) &amp;quot;&amp;lt;excluded-packages&amp;gt;&amp;quot;   Packages to exclude from bootstrap process. List must be quoted.&lt;br /&gt;
        (-f|--only-rootfs)                               Build rootfs only&lt;br /&gt;
        (-h|--help)                                      Display this help message&lt;br /&gt;
        (-n|--distro-version)    &amp;lt;distro-name&amp;gt;           Debian/Ubuntu distribution name (same as host by default).&lt;br /&gt;
        (-o|--deb-packages)      &amp;quot;&amp;lt;deb-packages&amp;gt;&amp;quot;        Local .deb packages. List must be quoted.&lt;br /&gt;
        (-p|--packages)          &amp;quot;&amp;lt;packages&amp;gt;&amp;quot;            Distro packages to use. List must be quoted.&lt;br /&gt;
        (--script-rootfs)        &amp;lt;script&amp;gt;                Launch your script after rootfs is created and all package installed.&lt;br /&gt;
        (--script-prepare)       &amp;lt;script&amp;gt;                Launch your script to prepare the target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/prepare.sh by default)&lt;br /&gt;
        (--script-burn)          &amp;lt;script&amp;gt;                Launch your script to burn rootfs on target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/burn.sh by default)&lt;br /&gt;
        (-t|--target)            &amp;lt;target&amp;gt;                Target achitecture (same as host by default).&lt;br /&gt;
        (-v|--verbose)                                   Verbose mode&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Donc si par exemple vous souhaitez rajouter un environnement graphique ubuntu, vous devrez modifier l'option '''-p''' en ajoutant le package '''ubuntu-desktop''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a uninstall -c pcduino.conf &lt;br /&gt;
sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client ubuntu-desktop&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Toutes les options en ligne de commande peuvent être initialisées dans le fichier de conf passé en paramètre ('''pcduino.conf''').&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino</id>
		<title>Ubuntu personnalisée pour pcDuino</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino"/>
				<updated>2013-11-25T17:01:19Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pré-requis :&lt;br /&gt;
* Une ubuntu &amp;gt;= 12.04&lt;br /&gt;
* Une carte micro-SD &amp;gt;= 2Go&lt;br /&gt;
* Une connexion à internet&lt;br /&gt;
* Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-distro-0.1.deb make-deb-distro]&lt;br /&gt;
* Télécharger le profil pour la pcduino : [https://github.com/geonobot/pcduino-profile/archive/master.zip pcduino-profile]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour pouvoir créer notre carte micro-SD prête à l'emploi pour pcDuino, nous allons utiliser un programme nommé make_deb_distro.&lt;br /&gt;
Celui-ci permet de créer une distribution Ubuntu ou Debian personnalisée pour différentes cibles, grâce à un système de profils.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Commencons par installer le package make-deb-distro :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo dpkg -i make-deb-distro-0.1.deb&lt;br /&gt;
sudo apt-get -f install&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Créez un répertoire, par exemple build/, et copiez y le profil de notre pcDuino que vous avez normalement téléchargé dans les pré-requis :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;mkdir build&lt;br /&gt;
cp pcduino-profile-master.zip build/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il faut maintenant décompresser l'archive du profil et entrer dans son répertoire :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;cd build&lt;br /&gt;
unzip pcduino-profile-master.zip&lt;br /&gt;
cd pcduino-profile-master&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Il ne reste plus qu'à insérer notre carte micro-SD et à appeler notre programme make-deb-distro en lui indiquant notre profil et les options voulues :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La première fois qu'elle est lancée, cette commande est très longue et dépend de la puissance de votre PC ainsi que de la qualité de votre connexion internet.&lt;br /&gt;
Une fois l'exécution terminée, la carte est prête à être utilisée sur la pcduino.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour des explications sur les options passée à notre commande, lancez la commande '''make-deb-distro --help''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;make-deb-distro --help&lt;br /&gt;
This script build custom Ubuntu/Debian distributions.&lt;br /&gt;
&lt;br /&gt;
./make-deb-distro [-a &amp;lt;action&amp;gt;] [OPTIONS]&lt;br /&gt;
&lt;br /&gt;
Options:&lt;br /&gt;
        (-a|--action)            &amp;lt;action&amp;gt;                Action : install or uninstall.&lt;br /&gt;
        (-b|--target-device)     &amp;lt;device&amp;gt;                Target device&lt;br /&gt;
        (-c|--configuration)     &amp;lt;file&amp;gt;                  Configuration file&lt;br /&gt;
        (-d|--target-dir)        &amp;lt;path&amp;gt;                  Bootstrap path&lt;br /&gt;
        (-e|--excluded-packages) &amp;quot;&amp;lt;excluded-packages&amp;gt;&amp;quot; Packages to exclude from bootstrap process. List must be quoted.&lt;br /&gt;
        (-f|--only-rootfs)                               Build rootfs only&lt;br /&gt;
        (-h|--help)                                      Display this help message&lt;br /&gt;
        (-n|--distro-version)    &amp;lt;distro-name&amp;gt;           Debian/Ubuntu distribution name (same as host by default).&lt;br /&gt;
        (-o|--deb-packages)      &amp;quot;&amp;lt;deb-packages&amp;gt;&amp;quot;      Local .deb packages. List must be quoted.&lt;br /&gt;
        (-p|--packages)          &amp;quot;&amp;lt;packages&amp;gt;&amp;quot;          Distro packages to use. List must be quoted.&lt;br /&gt;
        (--script-rootfs)        &amp;lt;script&amp;gt;                Launch your script after rootfs is created and all package installed.&lt;br /&gt;
        (--script-prepare)       &amp;lt;script&amp;gt;                Launch your script to prepare the target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/prepare.sh by default)&lt;br /&gt;
        (--script-burn)          &amp;lt;script&amp;gt;                Launch your script to burn rootfs on target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/burn.sh by default)&lt;br /&gt;
        (-t|--target)            &amp;lt;target&amp;gt;                Target achitecture (same as host by default).&lt;br /&gt;
        (-v|--verbose)                                   Verbose mode&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino</id>
		<title>Ubuntu personnalisée pour pcDuino</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino"/>
				<updated>2013-11-25T17:00:10Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pré-requis :&lt;br /&gt;
* Une ubuntu &amp;gt;= 12.04&lt;br /&gt;
* Une carte micro-SD &amp;gt;= 2Go&lt;br /&gt;
* Une connexion à internet&lt;br /&gt;
* Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-distro-0.1.deb make-deb-distro]&lt;br /&gt;
* Télécharger le profil pour la pcduino : [https://github.com/geonobot/pcduino-profile/archive/master.zip pcduino-profile]&lt;br /&gt;
&lt;br /&gt;
Pour pouvoir créer notre carte micro-SD prête à l'emploi pour pcDuino, nous allons utiliser un programme nommé make_deb_distro.&lt;br /&gt;
Celui-ci permet de créer une distribution Ubuntu ou Debian personnalisée pour différentes cibles, grâce à un système de profils.&lt;br /&gt;
&lt;br /&gt;
Commencons par installer le package make-deb-distro :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo dpkg -i make-deb-distro-0.1.deb&lt;br /&gt;
sudo apt-get -f install&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez un répertoire, par exemple build/, et copiez y le profil de notre pcDuino que vous avez normalement téléchargé dans les pré-requis :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;mkdir build&lt;br /&gt;
cp pcduino-profile-master.zip build/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il faut maintenant décompresser l'archive du profil et entrer dans son répertoire :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;cd build&lt;br /&gt;
unzip pcduino-profile-master.zip&lt;br /&gt;
cd pcduino-profile-master&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il ne reste plus qu'à insérer notre carte micro-SD et à appeler notre programme make-deb-distro en lui indiquant notre profil et les options voulues :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
La première fois qu'elle est lancée, cette commande est très longue et dépend de la puissance de votre PC ainsi que de la qualité de votre connexion internet.&lt;br /&gt;
Une fois l'exécution terminée, la carte est prête à être utilisée sur la pcduino.&lt;br /&gt;
&lt;br /&gt;
Pour des explications sur les options passée à notre commande, lancez la commande '''make-deb-distro --help''' :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;make-deb-distro --help&lt;br /&gt;
This script build custom Ubuntu/Debian distributions.&lt;br /&gt;
&lt;br /&gt;
./make-deb-distro [-a &amp;lt;action&amp;gt;] [OPTIONS]&lt;br /&gt;
&lt;br /&gt;
Options:&lt;br /&gt;
        (-a|--action)            &amp;lt;action&amp;gt;                Action : install or uninstall.&lt;br /&gt;
        (-b|--target-device)     &amp;lt;device&amp;gt;                Target device&lt;br /&gt;
        (-c|--configuration)     &amp;lt;file&amp;gt;                  Configuration file&lt;br /&gt;
        (-d|--target-dir)        &amp;lt;path&amp;gt;                  Bootstrap path&lt;br /&gt;
        (-e|--excluded-packages) &amp;quot;&amp;lt;excluded-packages&amp;gt;&amp;quot; Packages to exclude from bootstrap process. List must be quoted.&lt;br /&gt;
        (-f|--only-rootfs)                               Build rootfs only&lt;br /&gt;
        (-h|--help)                                      Display this help message&lt;br /&gt;
        (-n|--distro-version)    &amp;lt;distro-name&amp;gt;           Debian/Ubuntu distribution name (same as host by default).&lt;br /&gt;
        (-o|--deb-packages)      &amp;quot;&amp;lt;deb-packages&amp;gt;&amp;quot;      Local .deb packages. List must be quoted.&lt;br /&gt;
        (-p|--packages)          &amp;quot;&amp;lt;packages&amp;gt;&amp;quot;          Distro packages to use. List must be quoted.&lt;br /&gt;
        (--script-rootfs)        &amp;lt;script&amp;gt;                Launch your script after rootfs is created and all package installed.&lt;br /&gt;
        (--script-prepare)       &amp;lt;script&amp;gt;                Launch your script to prepare the target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/prepare.sh by default)&lt;br /&gt;
        (--script-burn)          &amp;lt;script&amp;gt;                Launch your script to burn rootfs on target device.&lt;br /&gt;
                                                         (/usr/share/make-deb-distro/scripts/profiles/default/burn.sh by default)&lt;br /&gt;
        (-t|--target)            &amp;lt;target&amp;gt;                Target achitecture (same as host by default).&lt;br /&gt;
        (-v|--verbose)                                   Verbose mode&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino</id>
		<title>Ubuntu personnalisée pour pcDuino</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Ubuntu_personnalis%C3%A9e_pour_pcDuino"/>
				<updated>2013-11-25T15:42:56Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : Page créée avec « Pré-requis : * Une ubuntu &amp;gt;= 12.04 * Une carte micro-SD &amp;gt;= 2Go * Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-dist... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pré-requis :&lt;br /&gt;
* Une ubuntu &amp;gt;= 12.04&lt;br /&gt;
* Une carte micro-SD &amp;gt;= 2Go&lt;br /&gt;
* Télécharger le package [https://github.com/geonobot/make_deb_distro/releases/download/0.1/make-deb-distro-0.1.deb make-deb-distro]&lt;br /&gt;
* Télécharger le profil pour la pcduino : [https://github.com/geonobot/pcduino-profile/archive/master.zip pcduino-profile]&lt;br /&gt;
&lt;br /&gt;
Pour pouvoir créer notre carte micro-SD prête à l'emploi pour pcDuino, nous allons utiliser un programme nommé make_deb_distro.&lt;br /&gt;
Celui-ci permet de créer une distribution Ubuntu ou Debian personnalisée pour différentes cibles, grâce à un système de profils.&lt;br /&gt;
&lt;br /&gt;
Commencons par installer le package make-deb-distro :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo dpkg -i make-deb-distro-0.1.deb&lt;br /&gt;
sudo apt-get -f install&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez un répertoire, par exemple build/, et copiez y le profil de notre pcDuino que vous avez normalement téléchargé dans les pré-requis :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;mkdir build&lt;br /&gt;
cp pcduino-profile-master.zip build/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il faut maintenant décompresser l'archive du profil et entrer dans son répertoire :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;cd build&lt;br /&gt;
unzip pcduino-profile-master.zip&lt;br /&gt;
cd pcduino-profile-master&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il ne reste plus qu'à insérer notre carte micro-SD et à appeler notre programme make-deb-distro en lui indiquant notre profil :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo make-deb-distro -a install -b /dev/mmcblk0 -c pcduino.conf -p &amp;quot;vim openssh-server language-pack-fr language-pack-fr-base isc-dhcp-client&amp;quot;&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Accueil</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Accueil"/>
				<updated>2013-07-10T20:55:09Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bonjour et Bienvenue sur le Wiki d'Arobose.&lt;br /&gt;
&lt;br /&gt;
Vous pouvez y trouver des tutoriels sur la Robotique et des explications sur les produits de la Boutique, des exemples, des librairies Arduino, bref plein de solutions, d'idée et de techniques pour créer, améliorer votre robot.&lt;br /&gt;
&lt;br /&gt;
Admin&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;categorytree mode=pages depth=10&amp;gt;Sommaire&amp;lt;/categorytree&amp;gt;'''&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	<entry>
		<id>https://www.arobose.com/wiki/index.php?title=Accueil</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://www.arobose.com/wiki/index.php?title=Accueil"/>
				<updated>2013-07-10T19:52:36Z</updated>
		
		<summary type="html">&lt;p&gt;Gdo : Annulation des modifications 58 de 5.248.86.32 (discussion)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bonjour et Bienvenue sur le Wiki d'Arobose.&lt;br /&gt;
&lt;br /&gt;
Vous pouvez y trouver des tutoriels sur la Robotique et des explications sur les produits de la Boutique, des exemples, des librairies Arduino, bref plein de solutions, d'idée et de techniques pour créer, améliorer votre robot.&lt;br /&gt;
&lt;br /&gt;
Admin&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;categorytree mode=pages&amp;gt;Sommaire&amp;lt;/categorytree&amp;gt;'''&lt;/div&gt;</summary>
		<author><name>Gdo</name></author>	</entry>

	</feed>