VirtualBox dev environment: english translation
This commit translates the formerly French-only 'development environment with VirtualBox' documentation to english. The screen captures have been updated as well.
BIN
images/virtualbox_packaging1-en.png
Normal file
After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
BIN
images/virtualbox_packaging2-en.png
Normal file
After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
BIN
images/virtualbox_packaging3-en.png
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
BIN
images/virtualbox_packaging4-en.png
Normal file
After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
BIN
images/virtualbox_packaging5-en.png
Normal file
After Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
|
@ -1 +1,91 @@
|
|||
Unfortunately, this page only exists [in french here](packaging_apps_virtualbox_fr) for now.
|
||||
# Create a development environment with VirtualBox
|
||||
|
||||
This documentation page aims at explaining how to setup a Yunohost virtual server, using VirtualBox, to work on application packaging.
|
||||
|
||||
## Why use VirtualBox rather than an actual YunoHost production server to package an application ?
|
||||
|
||||
There are mostly two reasons why one should prefer a virtual server rather than their own server :
|
||||
|
||||
- You can freely torture a virtual server without any risk of breaking it, since you can always restore it to a former working state. It would really be a pity to break your own real server !
|
||||
- In a typical workflow, a virtual server state would be restored from a known snapshot before starting any work on it, so as to always keep a clean system, without any residues of a former installation. This allows to always be as close a possible to a user first installation.
|
||||
|
||||
We will discuss VirtualBox in this guide, as it comes with an easy to use GUI. If you prefer a pure commandline approach to handling your virtual machine, you should use [ynh-dev](/dev) instead.
|
||||
|
||||
## Installing VirtualBox
|
||||
|
||||
From a GNU Linux system, simply install the `virtualbox-qt` package.
|
||||
From a Windows or macOS machine, you'd have to refer to the [VirtualBox download page](https://www.virtualbox.org/wiki/Downloads) to fetch the appropriate installation package. The virtualbox package is deprecated since Debian 9, a `.deb` installation package is available on the abovementioned referenced page.
|
||||
|
||||
Whatever your system, there should be no need to install the extension pack or the guest addons.
|
||||
|
||||
## Installing YunoHost on VirtualBox
|
||||
|
||||
Simply follow the appropriate documentation for [installing on VirtualBox](/install_on_virtualbox) then the [post-installation](/postinstall) guide.
|
||||
|
||||
During post-install, there is no need to use an actual domain name in `.nohost.me` or `.noho.st`, as your virtual server won't be reachable from outside your local network.
|
||||
We prefer using a fake domain name which will remain associated with your local network, for instance `yunohost.packaging`.
|
||||
|
||||
This domain name, not being registered with any DNS server, will be stored in the `hosts` file of the computer which will need to access it. Please refer to the documentation about [using a local DNS](/dns_local_network) for more information.
|
||||
|
||||
Your virtual server is now installed. Before starting to use it, we'll see how to create a first snapshot and how to use that feature.
|
||||
|
||||
## Using snapshots
|
||||
|
||||
VirtualBox becomes even more interesting with its snapshotting feature, which allow to store the virtualized machine state and restore it quickly.
|
||||
We'll also see how to use multiple snapshot branches to work on different apps on the same machine.
|
||||
|
||||
#### Now, let's create a first snapshot
|
||||
|
||||
Before starting to play with the virtual machine, now is a good time to take a first snapshot, so that we don't have to redo the full install process every time.
|
||||
First, stop the virtual machine.
|
||||
|
||||
Managing snapshots is done in the 'Snapshots' tab
|
||||
<img src="/images/virtualbox_packaging1-en.png" width=80%>
|
||||
|
||||
Here, we're creating a first snapshot
|
||||
<img src="/images/virtualbox_packaging2-en.png" width=30%>
|
||||
|
||||
We can now start to work on the virtual machine and create as many snapshots as desired for each milestone of our modifications.
|
||||
|
||||
<img src="/images/virtualbox_packaging3-en.png" width=80%>
|
||||
|
||||
In this example, after having validated our particular package removal works fine, we can easily get back in time by restoring the virtual machine to its previous state with the package still installed.
|
||||
Once the package will be fully functional, it will just be a matter of deleting the snaphots associated with this package work to get the virtual machine back to its initial state.
|
||||
For our next test, we will then be back to a freshly installed YunoHost serveur, without any trace of package installation.
|
||||
|
||||
#### Using multiple snapshot branches
|
||||
|
||||
In addition to successive snapshots, it is also possible to create a new machine state and additional snapshots from an older machine snapshot/state.
|
||||
|
||||
<img src="/images/virtualbox_packaging4-en.png" width=80%>
|
||||
|
||||
In this example, I have created two branches since my successful package installation, so as to independently test just the application removal, upgrade and backup/restore steps.
|
||||
I eventually got back to the virtual machine base state to start a new test on another package, without dropping my former test whatsoever.
|
||||
At any time, it is possible to get back to a previous snapshot simply by restoring it.
|
||||
The machine always start on the "Current state" state.
|
||||
|
||||
<img src="/images/virtualbox_packaging5-en.png" width=80%>
|
||||
|
||||
> It is always possible to create a new snapshot, whether the machine is stopped or not. To restore a snapshot however, the machine cannot be running.
|
||||
|
||||
## How do we connect to the virtual machine?
|
||||
|
||||
Virtual machine connection is similar to any YunoHost server connection, that is by using `ssh`.
|
||||
|
||||
```bash
|
||||
ssh admin@my.domain
|
||||
```
|
||||
Or, if the domain has not been added to the `hosts` file, via its IP address.
|
||||
|
||||
```bash
|
||||
ssh admin@11.22.33.44
|
||||
```
|
||||
|
||||
We can now work on the virtual machine using the commandline.
|
||||
|
||||
To easily copy the package files or use a graphical text editor, one can also connect via `sftp` using a file explorer.
|
||||
|
||||
It's a simple matter of using the `sftp://admin@my.domain/` address.
|
||||
<img src="/images/virtualbox_packaging6.jpg" width=80%>
|
||||
|
||||
> Note: on Windows or macOS, the file explorer does not natively support the `sftp` protocol…
|
||||
|
|
|
@ -40,14 +40,14 @@ Avant de commencer à jouer avec la machine virtuelle, il convient de faire un p
|
|||
Arrêtez la machine virtuelle avant tout.
|
||||
|
||||
La gestion des instantanés se fait dans l'onglet "Instantanés"
|
||||
<img src="/images/virtualbox_packaging1.jpg" width=80%>
|
||||
<img src="/images/virtualbox_packaging1-fr.jpg" width=80%>
|
||||
|
||||
Et on crée un premier instantané
|
||||
<img src="/images/virtualbox_packaging2.jpg" width=30%>
|
||||
<img src="/images/virtualbox_packaging2-fr.jpg" width=30%>
|
||||
|
||||
À présent on peut commencer à travailler sur la machine virtuelle et créer autant d'instantanés que souhaité pour jalonner le travail.
|
||||
|
||||
<img src="/images/virtualbox_packaging3.jpg" width=80%>
|
||||
<img src="/images/virtualbox_packaging3-fr.jpg" width=80%>
|
||||
|
||||
Dans cet exemple, on pourra facilement revenir en arrière, après avoir testé la suppression du package par exemple et restaurer la machine virtuelle dans l'état précédent avec le package encore installé avec succès.
|
||||
Et lorsque le package sera pleinement fonctionnel, il suffira de supprimer les instantanés liés à ce package pour revenir à l'état initial de la machine virtuelle.
|
||||
|
@ -57,14 +57,14 @@ Nous disposerons ainsi d'un serveur YunoHost vierge de toute installation d'appl
|
|||
|
||||
En plus de l'usage d'instantanés successifs, il est également possible de dériver un nouvel état actuel et de nouveaux instantanés depuis un instantané plus ancien que le dernier.
|
||||
|
||||
<img src="/images/virtualbox_packaging4.jpg" width=80%>
|
||||
<img src="/images/virtualbox_packaging4-fr.jpg" width=80%>
|
||||
|
||||
Dans cet exemple, j'ai dérivé deux branches depuis mon installation réussie du package, pour tester indépendamment la suppression simple de l'application, l'upgrade et le backup/restore.
|
||||
Finalement je suis reparti de la base de la machine virtuelle pour démarrer un nouveau test sur un autre package, sans pour autant abandonner le précédent test.
|
||||
À tout moment, il est possible de revenir sur un instantané précédent en le restaurant.
|
||||
La machine démarrera toujours sur l'"État actuel".
|
||||
|
||||
<img src="/images/virtualbox_packaging5.jpg" width=80%>
|
||||
<img src="/images/virtualbox_packaging5-fr.jpg" width=80%>
|
||||
|
||||
> Il est toujours possible de créer un nouvel instantané, que la machine soit à l'arrêt ou non.
|
||||
Mais pour restaurer un instantané, la machine ne doit pas être en cours d'exécution.
|
||||
|
|