issue166:critique2
Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
issue166:critique2 [2021/02/27 17:04] – créée auntiee | issue166:critique2 [2021/03/03 18:53] (Version actuelle) – andre_domenech | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | When I set out to do a review of a new release of an Ubuntu flavor, I download the ISO file, do a SHA256 check on it, and then write it to a USB stick so it can be booted up and tested. | + | **When I set out to do a review of a new release of an Ubuntu flavor, I download the ISO file, do a SHA256 check on it, and then write it to a USB stick so it can be booted up and tested. |
Normally, I use Ubuntu’s Startup Disk Creator to write the ISO to the USB. Startup Disk Creator comes already installed on all the Ubuntu flavors, it is easy to use and generally works fine on ISOs for Ubuntu, Kubuntu, Lubuntu and Xubuntu. | Normally, I use Ubuntu’s Startup Disk Creator to write the ISO to the USB. Startup Disk Creator comes already installed on all the Ubuntu flavors, it is easy to use and generally works fine on ISOs for Ubuntu, Kubuntu, Lubuntu and Xubuntu. | ||
- | When I did my previous review of Ubuntu Unity 20.04 LTS, Startup Disk Creator was able to write that distribution, | + | When I did my previous review of Ubuntu Unity 20.04 LTS, Startup Disk Creator was able to write that distribution, |
- | My first attempt at a work-around was to use “dd” from the command-line. It sort of worked, as it wrote Ubuntu Unity 20.10 to the stick, but it would not boot. I needed something better. | + | Quand je vais faire la critique d’une nouvelle publication d’une saveur d’Ubuntu, je télécharge le fichier ISO, fais une vérification SHA256, puis le mets sur une clé USB pour pouvoir démarrer dessus et l’essayer. |
+ | |||
+ | Habituellement, | ||
+ | |||
+ | Quand j’ai fait la critique d’Ubuntu Unity 20.04 LTS, Startup Disk Creator a pu écrire cette publication sur la clé, mais j’ai rencontré un problème avec Ubuntu Unity 20.10, car Startup Disk Creator n’acceptait pas d’écrire le fichier ISO sur une clé USB. | ||
+ | |||
+ | **My first attempt at a work-around was to use “dd” from the command-line. It sort of worked, as it wrote Ubuntu Unity 20.10 to the stick, but it would not boot. I needed something better. | ||
These days, lots of free software applications designed to write ISOs to USBs are available, including BalenaEtcher, | These days, lots of free software applications designed to write ISOs to USBs are available, including BalenaEtcher, | ||
Ligne 11: | Ligne 17: | ||
Background | Background | ||
- | UNetbootin, short for “Universal Netboot Installer”, | + | UNetbootin, short for “Universal Netboot Installer”, |
- | I first used UNetbootin in December 2010 to install Lubuntu 10.10 on a netbook, one of those mini-sized laptops that were popular back then. In a way, netbooks were ahead of their time, not only small and light, they came without a CD/DVD optical drive which was how most Linux distributions were installed at that time. Back then, the Ubuntu Startup Disk Creator couldn’t write Lubuntu (it can today), so UNetbootin was the answer and it did the job perfectly. | + | Ma première tentative de contournement a été d’utiliser « dd » en ligne de commande. Ça a fonctionné à moitié, car Ubuntu Unity 20.10 a été écrit sur le disque, mais refusait de démarrer. J’avais besoin de quelque chose de meilleur. |
+ | |||
+ | Aujourd’hui, | ||
+ | |||
+ | Contexte | ||
+ | |||
+ | Unetbootin, l’abréviation de « Universal Netboot Installer » existe depuis pas mal de temps, sa première publication est d’avril 2007. Développé par Geza Kovacs, il est publié sous une licence libre, la GPL version 2 (ou ultérieure). | ||
+ | |||
+ | |||
+ | **I first used UNetbootin in December 2010 to install Lubuntu 10.10 on a netbook, one of those mini-sized laptops that were popular back then. In a way, netbooks were ahead of their time, not only small and light, they came without a CD/DVD optical drive which was how most Linux distributions were installed at that time. Back then, the Ubuntu Startup Disk Creator couldn’t write Lubuntu (it can today), so UNetbootin was the answer and it did the job perfectly. | ||
UNetbootin can be used to install a large number of Linux and BSD distributions, | UNetbootin can be used to install a large number of Linux and BSD distributions, | ||
- | Other than being able to write many more Linux distributions than the Startup Disk Creator, UNetbootin also leaves the USB stick in its native FAT32 format (File Allocation Table, 32-bit). Startup Disk Creator formats it in ISO format, meaning that to use it again for general file use, the user must reformat the stick with Gparted or similar. | + | Other than being able to write many more Linux distributions than the Startup Disk Creator, UNetbootin also leaves the USB stick in its native FAT32 format (File Allocation Table, 32-bit). Startup Disk Creator formats it in ISO format, meaning that to use it again for general file use, the user must reformat the stick with Gparted or similar.** |
- | Getting UNetbootin | + | J’ai utilisé Unetbootin pour la première fois en décembre 2010, pour installer Lubuntu 10.10 sur un netbook, un de ces ordinateurs portables miniatures qui étaient populaires à l’époque. Dans un sens, les netbooks étaient visionnaires : |
+ | |||
+ | Unetbootin peut installer de très nombreuses distributions Linux et BSD, y compris des disques de récupération. Toutefois, une seule installation peut être écrite sur chaque clé USB, car il ne prend pas en charge les installations multiples. | ||
+ | |||
+ | Outre pouvoir écrire beaucoup plus de distributions Linux que le Startup Disk Creator, UNetbootin laisse la clé USB dans son format natif, FAT32 (File Allocation Table, 32-bit). Startup Disk Creator la formate en ISO, ce qui signifie que, pour l’utiliser à nouveau pour des fichiers, l’utilisateur est obligé de reformater la clé avec Gparted ou similaire. | ||
+ | |||
+ | **Getting UNetbootin | ||
UNetbootin used to be available in the Ubuntu repositories, | UNetbootin used to be available in the Ubuntu repositories, | ||
Ligne 29: | Ligne 50: | ||
sudo apt-get update | sudo apt-get update | ||
+ | sudo apt-get install unetbootin** | ||
+ | |||
+ | Obtenir UNetbootin | ||
+ | |||
+ | Auparavant, UNetbootin était disponible dans les dépôts Ubuntu, facilitant son installation. Malheureusement, | ||
+ | |||
+ | La bonne nouvelle est que, puisque Kovacs a sa propre Personal Package Archive (PPA) sur LaunchPad, il est assez facile d’ajouter la PPA, puis d’installer l’application sur toute saveur d’Ubuntu à partir d’un terminal avec : | ||
+ | |||
+ | sudo add-apt-repository ppa: | ||
+ | sudo apt-get update | ||
sudo apt-get install unetbootin | sudo apt-get install unetbootin | ||
- | There are also installation packages in the repositories for several other Linux distributions including Arch, Debian, Fedora, Gentoo and SUSE Linux, plus Windows .exe and Mac .dmg files. There are also 32-bit and 64-bit binaries.bin files available, as well as source code for compiling. | + | **There are also installation packages in the repositories for several other Linux distributions including Arch, Debian, Fedora, Gentoo and SUSE Linux, plus Windows .exe and Mac .dmg files. There are also 32-bit and 64-bit binaries.bin files available, as well as source code for compiling. |
For the Ubuntu installation, | For the Ubuntu installation, | ||
Ligne 37: | Ligne 68: | ||
Using UNetbootin | Using UNetbootin | ||
- | Opening UNetbootin from the system tools menu shows a really simple interface. It does look a bit dated, though, like something from Windows 98. | + | Opening UNetbootin from the system tools menu shows a really simple interface. It does look a bit dated, though, like something from Windows 98.** |
- | For writing, the target USB needs to be formatted to FAT32, which is the way almost all USB drives come out-of-the-box. | + | Il existe également des paquets d’installation dans les dépôts de plusieurs autres distributions Linux, parmi lesquelles Arch, Debian, Fedora, Gentoo et SUSE Linux, plus des fichiers Windows .exe et Mac .dmg. Des fichiers binaires .bin en 32- et 64-bit, sont également disponibles, |
+ | |||
+ | Pour l’installation sous Ubuntu, UNetbootin est un petit paquet (juste 224 Ko à télécharger), | ||
+ | |||
+ | Utiliser UNetbootin | ||
+ | |||
+ | Lors de l’ouverture de UNetbootin à partir du menu système, une très simple interface s' | ||
+ | |||
+ | **For writing, the target USB needs to be formatted to FAT32, which is the way almost all USB drives come out-of-the-box. | ||
The Linux or BSD distribution can be chosen from a list at the top of the interface in the “Distribution” section, and UNetbootin will actually go and retrieve it. Alternatively, | The Linux or BSD distribution can be chosen from a list at the top of the interface in the “Distribution” section, and UNetbootin will actually go and retrieve it. Alternatively, | ||
- | UNetbootin gives progress indications while writing, and then a completion screen when done. From there, the stick will work the same as if it had been written with Startup Disk Creator, booting up normally to run a live session or used to install the operating system. | + | UNetbootin gives progress indications while writing, and then a completion screen when done. From there, the stick will work the same as if it had been written with Startup Disk Creator, booting up normally to run a live session or used to install the operating system.** |
- | To return to using the USB stick for storing files, etc, just delete the files from the USB stick, as it will still be in FAT32 format. | + | Pour pouvoir écrire dessus, la clé USB cible doit être formatée en FAT32, et la plupart des clés USB le sont dès l’achat. |
+ | |||
+ | La distribution Linux ou BSD peut être choisie à partir de la liste en haut de l’interface dans la section « Sélectionner la distribution » et UNetbootin ira la récupérer ! Autrement, un fichier ISO qui a déjà été téléchargé sur l’ordinateur de l’utilisateur et désigné sous « DisqueImage » peut être utilisé. Tout ce qu’il reste à faire est de sélectionner la clé USB, cliquez sur « OK » et UNetbootin fait son travail automatiquement. | ||
+ | |||
+ | UNetbootin fournit des indications de son progrès pendant l’écriture, | ||
+ | |||
+ | **To return to using the USB stick for storing files, etc, just delete the files from the USB stick, as it will still be in FAT32 format. | ||
Conclusions | Conclusions | ||
Ligne 54: | Ligne 99: | ||
Official website: | Official website: | ||
- | https:// | + | https:// |
+ | |||
+ | Pour revenir à l’utilisation de la clé USB pour le stockage de fichiers, etc., il suffit tout simplement d’y supprimer les fichiers, car elle sera toujours en format FAT32. | ||
+ | |||
+ | Conclusions | ||
+ | |||
+ | Malgré l’interface à l’apparence plutôt obsolète, UNetbootin, fonctionne parfaitement et permet l’écriture de presque toute distribution Linux ou BSD sur une clé USB pour un essai ou une installation. C’est un merveilleux exemple de la philosophie Unix : une application qui fait une seule chose et la fait très bien. | ||
+ | |||
+ | Lien externe | ||
+ | Site Web officiel : | ||
issue166/critique2.1614441893.txt.gz · Dernière modification : 2021/02/27 17:04 de auntiee