mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Merge pull request #1543 from YunoHost/enh-grav-install-process
Enh grav install process
This commit is contained in:
commit
1a59802d85
62 changed files with 696 additions and 1897 deletions
BIN
images/diagnostic.png
Normal file
BIN
images/diagnostic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: Hardware
|
||||
title: Choose your hardware
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
|
@ -16,4 +16,4 @@ YunoHost can be installed on the following hardware:
|
|||
|
||||
* 500 MHz CPU
|
||||
* 512 MB RAM (recommended : 1 GB in order to run all the services and apps properly)
|
||||
* 8 GB storage capacity (recommended : 32 GB to store mails and documents)
|
||||
* 16 GB storage capacity (recommended : 32 GB to store mails and documents)
|
||||
|
|
|
@ -0,0 +1,574 @@
|
|||
---
|
||||
title: Install YunoHost
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
never_cache_twig: true
|
||||
twig_first: true
|
||||
process:
|
||||
markdown: true
|
||||
twig: true
|
||||
page-toc:
|
||||
active: true
|
||||
depth: 2
|
||||
routes:
|
||||
default: '/install_process'
|
||||
aliases:
|
||||
- '/docker'
|
||||
- '/install_iso'
|
||||
- '/install_on_vps'
|
||||
- '/install_manually'
|
||||
- '/install_on_raspberry'
|
||||
- '/install_on_arm_board'
|
||||
- '/install_on_debian'
|
||||
- '/install_on_virtualbox'
|
||||
- '/plug_and_boot'
|
||||
- '/burn_or_copy_iso'
|
||||
- '/boot_and_graphical_install'
|
||||
---
|
||||
{% set arm, at_home, regular, rpi2plus, rpi1, rpi0, arm_sup, arm_unsup, vps, vps_debian, vps_ynh, virtualbox, internetcube, docker = false, false, false, false, false, false, false, false, false, false, false, false, false, false %}
|
||||
{% set hardware = uri.param('hardware') %}
|
||||
{% if hardware == '' %}
|
||||
{% set hardware = 'vps_debian' %}
|
||||
{% endif %}
|
||||
|
||||
{% if hardware == 'regular' %}
|
||||
{% set regular = true %}
|
||||
{% elseif hardware == 'internetcube' %}
|
||||
{% set arm, arm_sup, internetcube = true, true, true %}
|
||||
{% elseif hardware == 'rpi2plus' %}
|
||||
{% set arm, rpi2plus = true, true %}
|
||||
{% elseif hardware == 'rpi1' %}
|
||||
{% set arm, rpi1 = true, true %}
|
||||
{% elseif hardware == 'rpi0' %}
|
||||
{% set arm, rpi0 = true, true %}
|
||||
{% elseif hardware == 'arm_sup' %}
|
||||
{% set arm, arm_sup = true, true %}
|
||||
{% elseif hardware == 'arm_unsup' %}
|
||||
{% set arm, arm_unsup = true, true %}
|
||||
{% elseif hardware == 'vps_debian' %}
|
||||
{% set vps, vps_debian = true, true %}
|
||||
{% elseif hardware == 'vps_ynh' %}
|
||||
{% set vps, vps_ynh = true, true %}
|
||||
{% elseif hardware == 'virtualbox' %}
|
||||
{% set at_home, virtualbox = true, true %}
|
||||
{% elseif hardware == 'docker' %}
|
||||
{% set docker = true %}
|
||||
{% endif %}
|
||||
|
||||
{% if arm or regular %}
|
||||
{% set at_home = true %}
|
||||
{% endif %}
|
||||
|
||||
<style>
|
||||
.hardware.active {
|
||||
border: 3px solid #5a5;
|
||||
border-radius: 15px;
|
||||
}
|
||||
</style>
|
||||
Select the hardware on which you want install YunoHost :
|
||||
[div class="flex-container"]
|
||||
|
||||
[div class="flex-child hardware{%if virtualbox %} active{% endif %}"]
|
||||
[[figure caption="VirtualBox"][/figure]](/install_process/hardware:virtualbox)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if rpi2plus or rpi1 or rpi0 %} active{% endif %}"]
|
||||
[[figure caption="Raspberry Pi"][/figure]](/install_process/hardware:rpi2plus)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if arm_sup or arm_unsup or internetcube %} active{% endif %}"]
|
||||
[[figure caption="ARM board"][/figure]](/install_process/hardware:arm_sup)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if regular %} active{% endif %}"]
|
||||
[[figure caption="Regular computer"][/figure]](/install_process/hardware:regular)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if vps_debian or vps_ynh %} active{% endif %}"]
|
||||
[[figure caption="Remote server"][/figure]](/install_process/hardware:vps_debian)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if docker %} active{% endif %}"]
|
||||
[[figure caption="(Non-official!) Docker"][/figure]](/install_process/hardware:docker)
|
||||
[/div]
|
||||
|
||||
[/div]
|
||||
[div class="flex-container"]
|
||||
|
||||
{% if rpi2plus or rpi1 or rpi0 %}
|
||||
[div class="flex-child hardware{%if rpi2plus %} active{% endif %}"]
|
||||
[[figure caption="Raspberry Pi 2, 3 or 4"][/figure]](/install_process/hardware:rpi2plus)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if rpi1 %} active{% endif %}"]
|
||||
[[figure caption="Raspberry Pi 1"][/figure]](/install_process/hardware:rpi1)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if rpi0 %} active{% endif %}"]
|
||||
[[figure caption="Raspberry Pi zero"][/figure]](/install_process/hardware:rpi0)
|
||||
[/div]
|
||||
{% elseif arm_sup or arm_unsup or internetcube %}
|
||||
|
||||
[div class="flex-child hardware{%if internetcube %} active{% endif %}"]
|
||||
[[figure caption="Internet cube With VPN"][/figure]](/install_process/hardware:internetcube)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if arm_sup and not internetcube %} active{% endif %}"]
|
||||
[[figure caption="Olinuxino lime1&2 or Orange Pi PC+"][/figure]](/install_process/hardware:arm_sup)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if arm_unsup %} active{% endif %}"]
|
||||
[[figure caption="Others boards"][/figure]](/install_process/hardware:arm_unsup)
|
||||
[/div]
|
||||
{% elseif vps_debian or vps_ynh %}
|
||||
|
||||
[div class="flex-child hardware{%if vps_debian %} active{% endif %}"]
|
||||
[[figure caption="VPS or dedicated server with Debian 10"][/figure]](/install_process/hardware:vps_debian)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child hardware{%if vps_ynh %} active{% endif %}"]
|
||||
[[figure caption="VPS or dedicated server with YunoHost pre-installed"][/figure]](/install_process/hardware:vps_ynh)
|
||||
[/div]
|
||||
|
||||
{% endif %}
|
||||
|
||||
[/div]
|
||||
|
||||
|
||||
|
||||
{% if docker %}
|
||||
!! **YunoHost doesn’t support Docker officially since issues with versions 2.4+. In question, YunoHost 2.4+ doesn’t work anymore on Docker because YunoHost requires systemd and Docker has chosen to not support it natively (and there are other problems link to the firewall and services).**
|
||||
!!
|
||||
!! **We strongly discourage you to run YunoHost on docker with those images**
|
||||
|
||||
## Community images
|
||||
|
||||
However, community images exist and are available on Docker Hub:
|
||||
|
||||
* [AMD64 (classic) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost/)
|
||||
* [I386 (old computers) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost-i386/)
|
||||
* [ARMV7 (Raspberry Pi 2/3 ...) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost-arm/)
|
||||
* [ARMV6 (Raspberry Pi 1) (old yunoHost version)](https://hub.docker.com/r/tuxalex/yunohost-armv6/)
|
||||
{% else %}
|
||||
|
||||
|
||||
## Pre-requisites
|
||||
{% if regular %}
|
||||
* A x86-compatible hardware dedicated to YunoHost: laptop, nettop, netbook, desktop with 512MB RAM and 15GB capacity (at least)
|
||||
{% elseif rpi2plus %}
|
||||
* A Raspberry Pi 2, 3 or 4 with 512MB RAM (at least)
|
||||
{% elseif rpi1 %}
|
||||
* A Raspberry Pi 1 with 512MB RAM (at least)
|
||||
{% elseif rpi0 %}
|
||||
* A Raspberry Pi zero with 512MB RAM (at least)
|
||||
{% elseif arm_sup %}
|
||||
* A VPN with a dedicated IP and a .cube file
|
||||
* An Orange Pi PC+ or an Onlinuxino Lime 1 or 2
|
||||
{% elseif arm_sup %}
|
||||
* An Orange Pi PC+ or an Onlinuxino Lime 1 or 2
|
||||
{% elseif arm_unsup %}
|
||||
* An ARM board with 500MHz CPU and 512MB RAM (at least)
|
||||
{% elseif vps_debian %}
|
||||
* A dedicated or virtual private server with Debian 10 <small>(with **kernel >= 3.12**)</small>) preinstalled, 512MB RAM and 15GB capacity (at least)
|
||||
{% elseif vps_ynh %}
|
||||
* A dedicated or virtual private server with yunohost preinstalled, 512MB RAM and 15GB capacity (at least)
|
||||
{% elseif virtualbox %}
|
||||
* An x86 computer with VirtualBox installed and enough RAM capacity to be able to run a small virtual machine with 512MB RAM and 8GB capacity (at least)
|
||||
{% endif %}
|
||||
{% if arm %}
|
||||
* A power supply (either an adapter or a MicroUSB cable) for your board;
|
||||
* A microSD card: 16GB capacity (at least) and Class 10 speed rate are highly recommended (like the Transcend 300x);
|
||||
{% endif %}
|
||||
{% if regular %}
|
||||
* A USB stick of at least 1GB capacity OR a standard blank CD
|
||||
{% endif %}
|
||||
{% if at_home %}
|
||||
* A reasonable ISP, preferably with a good and unlimited upstream bandwidth
|
||||
{% if rpi0 %}
|
||||
* An usb OTG or a wifi dongle to connect your Raspberry Pi Zero
|
||||
{% else %}
|
||||
* An ethernet cable (RJ-45) to connect your server to your router.
|
||||
{% endif %}
|
||||
* A computer to read this guide, write the image and access to your server.
|
||||
{% endif %}
|
||||
{% if not at_home %}
|
||||
* A computer or a smartphone to read this guide and access to your server.
|
||||
{% endif %}
|
||||
|
||||
{% if virtualbox %}
|
||||
! N.B. : Installing YunoHost in a VirtualBox is usually intended for testing. To run an actual server on the long-term, you usually need a dedicated physical machine (old computer, ARM board...) or a VPS online.
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% if at_home %}
|
||||
## Download the YunoHost image
|
||||
<div class="hardware-image">
|
||||
<div id="cards-list">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/template" id="image-template">
|
||||
<div id="{id}" class="card panel panel-default">
|
||||
<div class="panel-body text-center">
|
||||
<h3>{name}</h3>
|
||||
<div class="card-comment">{comment}</div>
|
||||
<div class="card-desc text-center">
|
||||
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||
</div>
|
||||
</div>
|
||||
<div class="annotations flex-container">
|
||||
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12">[fa=download] Download <small>{version}</small></a>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
<script>
|
||||
var hardware = "{{ hardware|escape('js') }}";
|
||||
/*
|
||||
###############################################################################
|
||||
Script that loads the infos from JavaScript and creates the corresponding
|
||||
cards
|
||||
###############################################################################
|
||||
*/
|
||||
$(document).ready(function () {
|
||||
console.log("in load");
|
||||
$.getJSON('https://build.yunohost.org/images.json', function (images) {
|
||||
$.each(images, function(k, infos) {
|
||||
if (infos.tuto.indexOf(hardware) == -1) return;
|
||||
// Fill the template
|
||||
html = $('#image-template').html()
|
||||
.replace('{id}', infos.id)
|
||||
.replace('{name}', infos.name)
|
||||
.replace('{comment}', infos.comment || " ")
|
||||
.replace('{image}', infos.image)
|
||||
.replace('{version}', infos.version);
|
||||
|
||||
if (infos.file.startsWith("http"))
|
||||
html = html.replace(/{file}/g, infos.file);
|
||||
else
|
||||
html = html.replace(/{file}/g, "https://build.yunohost.org/"+infos.file);
|
||||
|
||||
if ((typeof(infos.has_sig_and_sums) !== 'undefined') && infos.has_sig_and_sums == false)
|
||||
{
|
||||
var $html = $(html);
|
||||
$html.find(".annotations").html(" ");
|
||||
html = $html[0];
|
||||
}
|
||||
$('#cards-list').append(html);
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
{% if regular %}
|
||||
!!! ***Particular case*** : If your server has no graphic card, [prepare iso for booting with serial port](https://github.com/luffah/debian-mkserialiso).
|
||||
{% elseif virtualbox %}
|
||||
!!! If your host OS is 32 bits, be sure that you downloaded the 32-bit image previously.
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% if not virtualbox %}
|
||||
## Flash the YunoHost image
|
||||
Now that you downloaded the image of YunoHost, you should flash it on {% if arm %}a SD card{% else %}a USB stick or a CD.{% endif %}
|
||||
|
||||
{% if arm %}
|
||||

|
||||

|
||||
{% else %}
|
||||

|
||||

|
||||
{% endif %}
|
||||
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="(Recommended) With Etcher"]
|
||||
|
||||
Download <a href="https://www.balena.io/etcher/" target="_blank">Etcher</a> for your operating system and install it.
|
||||
|
||||

|
||||
|
||||
Plug your USB stick, select your YunoHost ISO and click "Flash"
|
||||
[/ui-tab]
|
||||
[ui-tab title="With UNetbootin"]
|
||||
|
||||
Download <a href="https://unetbootin.github.io/">UNetbootin</a> for your operating system and install it.
|
||||
|
||||

|
||||
|
||||
Put your USB stick on, select your YunoHost ISO and click "OK"
|
||||
|
||||
|
||||
[/ui-tab]
|
||||
[ui-tab title="With dd"]
|
||||
|
||||
If you are on GNU/Linux / macOS and know your way around command line, you may also flash your USB stick or SD card with `dd`. You can identify which device corresponds to your USB stick or SD card with `fdisk -l` or `lsblk`. A typical SD card name is something like `/dev/mmcblk0`. BE CAREFUL and make sure you got the right name.
|
||||
|
||||
Then run :
|
||||
|
||||
```bash
|
||||
# Replace /dev/mmcblk0 if the name of your device is different...
|
||||
dd if=/path/to/yunohost.img of=/dev/mmcblk0
|
||||
```
|
||||
[/ui-tab]
|
||||
{% if regular %}
|
||||
[ui-tab title="Burning a CD/DVD"]
|
||||
For older devices, you might want to burn a CD/DVD. The software to use depends on your operating system.
|
||||
|
||||
* On Windows, use [ImgBurn](http://www.imgburn.com/) to write the image file on the disc
|
||||
|
||||
* On macOS, use [Disk Utility](http://support.apple.com/kb/ph7025)
|
||||
|
||||
* On GNU/Linux, you have plenty of choices, like [Brasero](https://wiki.gnome.org/Apps/Brasero) or [K3b](http://www.k3b.org/)
|
||||
[/ui-tab]
|
||||
{% endif %}
|
||||
[/ui-tabs]
|
||||
|
||||
{% else %}
|
||||
## Create a new virtual machine
|
||||
|
||||

|
||||
|
||||
|
||||
---
|
||||
|
||||
## Change network settings
|
||||
|
||||
**NB:** You must carry out this step. If not, the install will fail.
|
||||
|
||||
Go to **Settings** > **Network**:
|
||||
|
||||

|
||||
|
||||
* Select `Bridged adapter`
|
||||
|
||||
* Select your interface's name:
|
||||
|
||||
**wlan0** if you are connected wirelessly, else **eth0**.
|
||||
|
||||
---
|
||||
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% if arm %}
|
||||
## Power up the board
|
||||
* Plug the ethernet cable.
|
||||
!!! Note: if you want the network configuration to be set up automatically, you have to plug your server with an Ethernet cable right behind your main router.[details="If you have confident in your skills, it's possible to connect your server through WiFi"]If you want your server to connect using WiFi, you may configure it as explained [here](https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md). Alternatively, you can mount the second partition of the SD card and edit the `wpa-supplicant.conf` file prior to boot the card for the first time. On Windows you can use [Paragon ExtFS](https://www.paragon-software.com/home/extfs-windows/) for this - just don't forget to unmount everytime for changes to take effect.[/details]
|
||||
* Plug the SD card
|
||||
* Power up the board
|
||||
!!! You can also boot your server with a screen and keyboard connected to it to see how the boot process is going on.[details="See more"]This method can also be useful to troubleshoot issues and to have a direct access to it.[/details]
|
||||
* Wait a couple minutes for your server to boot and to resize automatically partition
|
||||
* Make sure that your computer (desktop/laptop) is connected to the same local network (i.e. same internet box) as your server.
|
||||
|
||||
|
||||
{% elseif virtualbox %}
|
||||
## Boot up the virtual machine
|
||||
|
||||
Start the virtual machine
|
||||
|
||||

|
||||
|
||||
You will have to select your ISO image here, then you should see the YunoHost's boot screen.
|
||||
|
||||
! If you encounter the error "VT-x is not available", you need probably need to enable Virtualization in the BIOS of your computer.
|
||||
|
||||
|
||||
{% else %}
|
||||
## Boot the machine on your usb stick and run the installation
|
||||
* Plug the ethernet cable.
|
||||
!!! Note: if you want the network configuration to be set up automatically, you have to plug your server with an Ethernet cable right behind your main router. The wireless connections are not supported yet, and if you use intermediate routers, the network ports opening will not be automatic: Your server will not be accessible externally.
|
||||
* If your server was under windows 8+, go on Advanced startup options of windows to ask windows for booting on the USB stick.
|
||||
* Boot up your server with the USB stick or a CD-ROM inserted, and select it as **bootable device** by pressing one of the following keys (hardware specific):
|
||||
```<ESC>```, ```<F9>```, ```<F10>```, ```<F11>```, ```<F12>``` or ```<DEL>```
|
||||
{% endif %}
|
||||
|
||||
{% if regular or virtualbox %}
|
||||
## Launch graphical install
|
||||
|
||||
You should see a screen like this:
|
||||
|
||||
[figure class="nomargin" caption="Preview of the ISO menu"]
|
||||

|
||||
[/figure]
|
||||
|
||||
1. Select `Graphical install`
|
||||
2. Select your language, your location and your keyboard layout
|
||||
3. If a partitioning screen appears, confirm.
|
||||
!! This will totally erase the data on your hard drive
|
||||
4. Let the installer do the rest, it will download required packages and install them.
|
||||
|
||||
! If it fails, you probably have an Internet connection issue.
|
||||
! Check that your computer is physically connected and retry.
|
||||
|
||||
5. It should reboot automatically.
|
||||
|
||||
TODO what to do with default credentials info ?
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% elseif vps_debian %}
|
||||
## Run the install script
|
||||
|
||||
Once you have access to a command line on your server (either directly or through SSH), you can install YunoHost by running command as root :
|
||||
|
||||
```bash
|
||||
curl https://install.yunohost.org | bash
|
||||
```
|
||||
|
||||
!!! If `curl` is not installed on your system, you might need to install it with `apt install curl`.
|
||||
!!! Otherwise, if the command does not do anything, you might want to `apt install ca-certificates`
|
||||
|
||||
---
|
||||
|
||||
!!! **Note for advanced users concerned with the `curl|bash` approach:**
|
||||
!!! If you strongly object to the `curl|bash` way (and similar commands) of installing software, consider reading ["Is curl|bash insecure?"](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) on Sandstom's blog, and possibly [this discussion on Hacker News](https://news.ycombinator.com/item?id=12766350).
|
||||
|
||||
{% endif %}
|
||||
## Proceed with initial configuration or restore an archive
|
||||
!!! if you are in the process of restoring a server from scratch **and** you have a yunohost-made backup, you can skip this process and follow through with the "restoring during the postinstall" step, in the [backup](/backup) page.
|
||||
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="From the web interface"]
|
||||
You can perform the post-installation with the web interface by entering in your browser {%if at_home %} **`{% if internetcube %}internetcube.local{% else %}yunohost.local{% endif %}`** OR **the local IP address of your server** if it is on your local network (e.g. at home !). The address typically looks like `192.168.x.y` (see [finding your local IP](/finding_the_local_ip)){% else %} **the public IP address of your server** if your server is not on your local network. Typically, if you own a VPS, your VPS provider should have given you the IP of the server.{% endif %}
|
||||
|
||||
! During the first visit, you will very likely encounter a security warning related to the certificate used by the server. For now, your server uses a self-signed certificate. You will later be able to add a certificate automatically recognized by web browsers as described in the [certificate documentation](/certificate). For now, you should add a security exception to accept the current certificate. PLEASE, don't take the habit to blindly accept this kind of alert !
|
||||
|
||||
{% if not internetcube %}
|
||||
You should then land on this page :
|
||||
|
||||
[figure class="nomargin" caption="Preview of the Web initial configuration page"]
|
||||

|
||||
[/figure]
|
||||
|
||||
{% endif %}
|
||||
[/ui-tab]
|
||||
[ui-tab title="From the command line"]
|
||||
|
||||
You can also perform the postinstallation with the command `yunohost tools postinstall` directly on the server, or [via SSH](/ssh).
|
||||
|
||||
[figure class="nomargin" caption="Preview of the command-line post-installation"]
|
||||

|
||||
[/figure]
|
||||
|
||||
[/ui-tab]
|
||||
[/ui-tabs]
|
||||
|
||||
{% if not internetcube %}
|
||||
|
||||
[details="Details on information asked during initial configuration"]
|
||||
|
||||
#### Main domain
|
||||
|
||||
This is the first domain name linked to your YunoHost server, but also the one which will be used by your server's users to access the **authentication portal**. It will thus be **visible by everyone**, choose it wisely.
|
||||
|
||||
* If you do not have a domain name, or if you want to use the YunoHost's DynDNS service, choose a sub-domain of **.nohost.me**, **.noho.st** or **.ynh.fr** (e.g. `homersimpson.nohost.me`). Provided that it's not already taken, the domain will be configured automatically and you won't need any further configuration step.
|
||||
|
||||
* If you do know what **DNS** is, you probably want to configure your own domain name here. In this case, please refer to the [DNS page](/dns) page for more informations.
|
||||
|
||||
* If you don't own a domain name and don't want a **.nohost.me**, **.noho.st** or **.ynh.fr**, you can use a local domain. More information on how to setup a local domain can be found [here](/dns_local_network).
|
||||
|
||||
#### Administration password
|
||||
|
||||
This password will be used to access to your server's [administration interface](/admin). You would also use it to connect via **SSH** or **SFTP**. In general terms, this is your **system's key**, [choose it carefully](http://www.wikihow.com/Choose-a-Secure-Password).
|
||||
[/details]
|
||||
|
||||
At this step, if you got so far and saw 'YunoHost has been successfully installed' (web postinstall) or 'YunoHost has been correctly configured', then congratulations!
|
||||
|
||||
## Create a first user
|
||||
You should create a first user.
|
||||
|
||||
!!! This user will received special emails `root@`, `admin@`, `postmaster@`, `webmaster@` and `abuse@`. These emails are used to send you mails about your server.
|
||||
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="From the web interface"]
|
||||
[/ui-tab]
|
||||
[ui-tab title="From the command line"]
|
||||
You can create your first user by running this command, it will ask you some information.
|
||||
```
|
||||
yunohost user create johndoe
|
||||
```
|
||||
[/ui-tab]
|
||||
[/ui-tabs]
|
||||
{% endif %}
|
||||
|
||||
## Run diagnostic and fix DNS or Router issues if needed
|
||||
To diagnose that all critical aspects of your server are properly configured,
|
||||
you should run a diagnosis. After the first run, the diagnosis will run twice a day to alert you if something break.
|
||||
Email are sent to the first user created.
|
||||
|
||||
You need to fix red issues if you want to be able to access your server outside your local network.
|
||||
|
||||
!!! If an alert is not relevant you should go on `Webadmin > Diagnosis` and click on the ignore button for this specifc unrelevant issue.
|
||||
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="(Recommended) From the web interface"]
|
||||
To run a diagnosis, go on `Web Admin` in the `Diagnosis` section. You should get a screen like this :
|
||||
|
||||
[figure class="nomargin" caption="Preview of the diagnostic panel"]
|
||||

|
||||
[/figure]
|
||||
|
||||
[/ui-tab]
|
||||
[ui-tab title="From the command line"]
|
||||
```
|
||||
yunohost diagnosis run
|
||||
```
|
||||
[/ui-tab]
|
||||
[/ui-tabs]
|
||||
|
||||
## Get a Let's Encrypt certificate
|
||||
If your DNS and router configuration are ok, you can next ask for a Let's Encrypt certificate.
|
||||
|
||||
For more detailled instructions or know more about TLS certificate, see [here](/certificate)
|
||||
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="From the web interface"]
|
||||
|
||||
[figure class="nomargin" caption="Preview of the diagnostic panel"]
|
||||

|
||||
[/figure]
|
||||
|
||||
[/ui-tab]
|
||||
[ui-tab title="From the command line"]
|
||||
```
|
||||
yunohost domain cert-install
|
||||
```
|
||||
[/ui-tab]
|
||||
[/ui-tabs]
|
||||
{% endif %}
|
||||
|
||||
## Congratz!
|
||||
|
||||
You have now a pretty well configured server. You can now try to install apps if you need (don't keep apps on your server if you don't need it) and configure a backup.
|
|
@ -1,42 +0,0 @@
|
|||
---
|
||||
title: Install on a regular computer
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_iso'
|
||||
---
|
||||
|
||||
## Requirements
|
||||
|
||||
[center]
|
||||

|
||||

|
||||

|
||||
[/center]
|
||||
|
||||
* A x86-compatible hardware dedicated to YunoHost: laptop, nettop, netbook, desktop.
|
||||
You can use any computer with **256MB RAM or more**.
|
||||
* Another computer to read this guide and access to your server.
|
||||
* A [reasonable ISP](/administrate/advance/isp), preferably with a good and unlimited upstream bandwidth
|
||||
* A **USB stick** of at least 1GB capacity **OR** a standard **blank CD**
|
||||
* ***Particular case*** : If your server has no graphic card, [prepare iso for booting with serial port](https://github.com/luffah/debian-mkserialiso).
|
||||
|
||||
---
|
||||
|
||||
## Installation steps
|
||||
|
||||
[0. Download the YunoHost ISO image](/images?classes=btn,btn-lg,btn-primary)
|
||||
|
||||
[1. Burn the ISO image on a USB stick](/burn_or_copy_iso?classes=btn,btn-lg,btn-primary)
|
||||
|
||||
[2. Boot the machine and run the installation](/boot_and_graphical_install?classes=btn,btn-lg,btn-primary)
|
||||
|
||||
[3. Proceed with the initial configuration (post-installation)](/postinstall?classes=btn,btn-lg,btn-primary)
|
||||
|
||||
---
|
||||
|
||||
To connect directly to your computer or with [SSH](/ssh) (only on local network:
|
||||
* User: `root`
|
||||
* Password: `yunohost`
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Installation auf einem dedizierten Server
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_vps'
|
||||
---
|
||||
|
||||
*Andere Wege Yunohost zu installieren findest Du **[hier](/install)**.*
|
||||
|
||||
### Vorraussetzungen
|
||||
|
||||

|
||||
|
||||
* Ein dedizierter (Root-Server) oder virtueller privater Server (VPS)
|
||||
* mit mindestens **512MB** RAM
|
||||
* und **Debian 10.x (Buster) 64bits** als Betriebssystem
|
||||
|
||||
---
|
||||
|
||||
## Installationsschritte
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Manuelle Installation](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Weiter mit der Erstkonfiguration (nach der Installation)](/postinstall) [/div]
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Instalación en un servidor dedicado
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_vps'
|
||||
---
|
||||
|
||||
*Encontrar otros medios de instalar YunoHost **[aquí](/install)**.*
|
||||
|
||||
## Prerrequisitos
|
||||
|
||||

|
||||
|
||||
* Un servidor dedicado o virtual
|
||||
* con al menos **512MB** RAM
|
||||
* y **Debian 10.x (Buster) 64bits** como sistema operativo
|
||||
|
||||
---
|
||||
|
||||
## Etapas de instalación
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Instalar manualmente](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Post-instalación](/postinstall) [/div]
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
---
|
||||
title: Installation sur un serveur dédié
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_vps'
|
||||
---
|
||||
|
||||
*Trouvez d’autres moyens d’installer YunoHost **[ici](/install)**.*
|
||||
|
||||
## Prérequis
|
||||
|
||||

|
||||
|
||||
* Un serveur dédié ou virtuel
|
||||
* avec au moins **512MB** RAM
|
||||
* et **Debian 10.x (Buster) 64bits** comme système d'exploitation
|
||||
|
||||
---
|
||||
|
||||
## Étapes d’installation
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Installer manuellement](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Effectuer la configuration initiale (post-installation)](/postinstall) [/div]
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Installa su un server dedicato
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_vps'
|
||||
---
|
||||
|
||||
*Scopri altri modi di installare YunoHost **[qui](/install)**.*
|
||||
|
||||
### Pre-requisiti
|
||||
|
||||

|
||||
|
||||
* Un server dedicato o un server privato virtuale (VPS)
|
||||
* con almeno **512MB** di RAM
|
||||
* e **Debian 10.x (Buster) 64bits** come sistema operativo
|
||||
|
||||
---
|
||||
|
||||
## Procedura di installazione
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Installa manualmente](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Post-installazione](/postinstall) [/div]
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
---
|
||||
title: Install on a dedicated server
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_vps'
|
||||
---
|
||||
|
||||
*Find other ways to install YunoHost **[here](/install)**.*
|
||||
|
||||
### Pre-requisite
|
||||
|
||||

|
||||
|
||||
* A dedicated or virtual private server
|
||||
* with at least **512MB** RAM
|
||||
* and **Debian 10.x (Buster) 64bits** as operating system
|
||||
|
||||
---
|
||||
|
||||
## Installation steps
|
||||
|
||||
[1. Install manually](/administrate/install/manualinstall?classes=btn,btn-lg,btn-primary)
|
||||
|
||||
[2. Proceed with the initial configuration (post-installation)](/administrate/postinstall?classes=btn,btn-lg,btn-primary)
|
|
@ -1,26 +0,0 @@
|
|||
---
|
||||
title: YunoHost manuell installieren
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_manually'
|
||||
---
|
||||
|
||||
!!! Dieser Vorgang funktioniert nur unter **Debian 10** <small>(mit **kernel >= 3.12**)</small>)
|
||||
|
||||
Sobald Du Zugriff auf die Kommandozeile auf Deinem Server hast (entweder direkt oder über SSH), kannst Du yunohost installieren, in dem Du das folgende Kommando als root ausführst:
|
||||
|
||||
```bash
|
||||
curl https://install.yunohost.org | bash
|
||||
```
|
||||
|
||||
<small>*(Falls `curl` noch nicht auf Deinem System installiert ist, musst Du es eventuell mit `apt install curl` installieren. Falls das Kommando fehlschlägt, ist eventuell ein `apt install ca-certificates` notwendig.)*</small>
|
||||
|
||||
Sobald die Installation abgeschlossen ist, fahre mit der [**Postinstallation**](/postinstall) fort.
|
||||
|
||||
---
|
||||
|
||||
**Anmerkung für forgeschrittene Benutzer mit Sorge gegenüber dem `curl|bash` Ansatz**
|
||||
|
||||
Falls Du stark gegen den `curl|bash` Weg (und ähnlicher Kommandos) zum installieren von Software eingestellt bist, empfehlen wir, ["Is curl|bash insecure?"](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) auf dem Sandstom Blog, und vielleicht [diese Diskussion auf Hacker News](https://news.ycombinator.com/item?id=12766350) zu lesen (beides Englisch).
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Instalar YunoHost manualmente
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_manually'
|
||||
---
|
||||
|
||||
!!! This procedure only works on **Debian 10** machines <small>(with **kernel >= 3.12**)</small>)
|
||||
|
||||
Una vez que tienes acceso a tu servidor (directamente o con SSH), puedes instalar YunoHost ejecutando este comando como root :
|
||||
|
||||
```bash
|
||||
curl https://install.yunohost.org | bash
|
||||
```
|
||||
|
||||
<small>*(Si `curl` no está instalado en tu sistema, tal vez tendrás que instalarlo con `apt install curl`. De otro modo, si el comando no muestra nada, puedes intentar `apt install ca-certificates`)*</small>
|
||||
|
||||
Cuando la instalación esté terminada, habrá que [**proceder a la post-instalación**](/postinstall)
|
||||
|
||||
---
|
||||
|
||||
**Nota para los usuarios expertos preocupados por el enfoque `curl|bash`**
|
||||
|
||||
Si no te gusta utilizar `curl|bash` (ou comandos similares) para desplegar software, toma el tiempo de leer ["Is curl|bash insecure?"](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) en el blog de Sandstorm, y también [esta discusión en Hacker News](https://news.ycombinator.com/item?id=12766350).
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Installer YunoHost manuellement
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_manually'
|
||||
---
|
||||
|
||||
!!! Cette procédure fonctionne seulement sur des machines avec **Debian 10** <small>(et **kernel >= 3.12**)</small>)
|
||||
|
||||
Une fois que vous avez accès à votre serveur (directement ou par SSH), vous pouvez installer YunoHost en exécutant cette commande en tant que root :
|
||||
|
||||
```bash
|
||||
curl https://install.yunohost.org | bash
|
||||
```
|
||||
|
||||
<small>*(Si `curl` n'est pas installé sur votre système, il vous faudra peut-être l'installer avec `apt install curl`. Autrement, si la commande n'affiche rien du tout, vous pouvez tenter `apt install ca-certificates`)*</small>
|
||||
|
||||
Une fois l'installation terminée, il vous faudra [**procéder à la post-installation**](/postinstall)
|
||||
|
||||
---
|
||||
|
||||
**Note pour les utilisateurs avancés inquiets à propos de l'approche `curl|bash`**
|
||||
|
||||
Si vous êtes suspicieux de la tendance à utiliser `curl|bash` (ou commandes similaires) pour déployer des logiciels, prenez le temps de lire ["Is curl|bash insecure?"](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) sur le blog de Sandstorm, et possiblement [cette discussion sur Hacker News](https://news.ycombinator.com/item?id=12766350).
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
title: Installing YunoHost manually
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_manually'
|
||||
---
|
||||
|
||||
! This procedure only works on **Debian 10** machines <small>(with **kernel >= 3.12**)</small>)
|
||||
|
||||
Once you have access to a command line on your server (either directly or through SSH), you can install YunoHost by running command as root :
|
||||
|
||||
```bash
|
||||
curl https://install.yunohost.org | bash
|
||||
```
|
||||
|
||||
!!! If `curl` is not installed on your system, you might need to install it with `apt install curl`.
|
||||
!!! Otherwise, if the command does not do anything, you might want to `apt install ca-certificates`
|
||||
|
||||
Once the installation is finished, you may want to [**proceed to post-installation**](/postinstall)
|
||||
|
||||
---
|
||||
|
||||
!!! **Note for advanced users concerned with the `curl|bash` approach:**
|
||||
!!! If you strongly object to the `curl|bash` way (and similar commands) of installing software, consider reading ["Is curl|bash insecure?"](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) on Sandstom's blog, and possibly [this discussion on Hacker News](https://news.ycombinator.com/item?id=12766350).
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
---
|
||||
title: YunoHost auf einem Raspberry Pi installieren
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_raspberry'
|
||||
---
|
||||
|
||||
*Alle Arten YunoHost zu installieren findest du **[hier](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Vor der Einrichtung eines Servers zuhause ist es empfehlenswert [mögliche Einschränkungen deines Providers](/isp) zu kennen. Wenn er zu viele Einschränkungen vornimmt, kann es sinnvoll sein ein VPN zu nutzen um diese zum umgehen.
|
||||
|
||||
## Voraussetzungen
|
||||
|
||||
- Einen Raspberry Pi 2, 3 oder 4 (RPi 0 and 1 may work but require some tweaking ... see [this issue](https://github.com/YunoHost/issues/issues/1423)) ;
|
||||
- Eine microSD Karte: **8 GB** Speicherplatz (mindestens) und **Class 10** Geschwindigkeit werden empfohlen (wie zum Beispiel die [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- Ein Netzeil (entweder ein Steckernetzteil oder ein MicroUSB Kabel) ;
|
||||
- An Netzwerkkabel (RJ-45) um den Raspberry mit dem router zu verbinden. (Raspberry Pi Zero Nutzer können ein OTG Kabel nutzen, [Wifi dongle](https://core-electronics.com.au/tutorials/raspberry-pi-zerow-headless-wifi-setup.html).) ;
|
||||
- Einen [geeigneten Provider](/isp), am Besten einen mit einer guten upload Geschwindigkeit.
|
||||
|
||||
---
|
||||
|
||||
## Install with the pre-installed image (recommended)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Download the pre-installed image for Raspberry Pi](/images) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flash the SD card with the image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Boot the board and connect to the web interface at `yunohost.local`](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Proceed to post-installation](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Manual installation (advanced users)
|
||||
|
||||
! We do not recommend the manual installation because it is more technical and longer than using the pre-installed image. This documentation is only intended for advanced users.
|
||||
|
||||
! The latest Raspberry Pi OS Lite images requires a screen and a keyboard, as it is no longer possible to connect directly to the Raspberry through SSH. Nevertheless it is possible to re-enable SSH at boot: before starting your Raspberry, put in the boot partition of the SD card an empty file named `ssh` (without extension).
|
||||
|
||||
0. Install Raspberry Pi OS Lite on the SD card ([instructions](https://www.raspberrypi.org/downloads/raspberry-pi-os/)).
|
||||
|
||||
1. Connect to your Raspberry Pi with the user `pi`. Set the root password with
|
||||
```bash
|
||||
sudo passwd root
|
||||
```
|
||||
|
||||
2. Edit `/etc/ssh/sshd_config` to allow SSH login for root, by replacing `PermitRootLogin without-password` with `PermitRootLogin yes`. Reload the SSH daemon with `service ssh reload`.
|
||||
|
||||
3. Disconnect and reconnect, this time as root.
|
||||
|
||||
4. Then follow the <a href="/install_manually">generic manual install procedure</a>.
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
---
|
||||
title: Instalar YunoHost en un Raspberry Pi
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_raspberry'
|
||||
---
|
||||
|
||||
*Encontrar otros medios de instalar YunoHost **[aquí](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Antes de alojar tu propio servidor en tu casa, te recomendamos que consultes las [posibles restricciones impuestas por tu Proveedor de Internet](/isp). Si tu proveedor es demasiado restrictivo, puedes utilizar un VPN para eludir estas restricciones.
|
||||
|
||||
## Prerrequisitos
|
||||
|
||||
- Un Raspberry Pi 2, 3 o 4 (RPi 0 and 1 may work but require some tweaking ... see [this issue](https://github.com/YunoHost/issues/issues/1423)) ; ;
|
||||
- Un adaptador de corriente para alimentar la tarjeta ;
|
||||
- Una tarjeta microSD : al menos **8 Go** y **Clase 10** (por ejemplo una [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- Un cable ethernet/RJ-45 para conectar la tarjeta con tu enrutador o tu caja internet. (Con el Raspberry Pi 0, puedes conectar tu tarjeta con un cable OTG y un adaptador Wifi USB.)
|
||||
- Un [proveedor de Internet ético](/isp), de preferencia con buena velocidad de upload.
|
||||
|
||||
---
|
||||
|
||||
## Instalación con la imagen pre-instalada (recomendada)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Descargar la imagen para Raspberry Pi](/images) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Poner la imagen en tu tarjeta SD](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Conectar y encender](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Proceder a la post-instalación](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Instalación manual (desaconsejada)
|
||||
|
||||
! No recomendamos la instalación manual porque es más técnica y más larga que la instalación vía la imagen per-instalada. Esta documentación sobre todo está destinada a los usuarios expertos.
|
||||
|
||||
! Las últimas versiones de Raspberry Pi OS necesitan una pantalla y un teclado porque ya no es posible conectarse directamente por SSH al Raspberry por defecto. Sin embargo, es posible reactivar el inicio de SSH al boot : solo hay que poner un archivo llamado `ssh` (vacío, sin extensión) en la partición boot de la tarjeta SD.
|
||||
|
||||
0. Instalar Raspberry Pi OS Lite ([instrucciones](https://www.raspberrypi.org/downloads/raspberry-pi-os/)) en la tarjeta SD.
|
||||
|
||||
1. Conéctate con SSH al Raspberry Pi con el usuario pi. Define una contraseña root con
|
||||
```bash
|
||||
sudo passwd root
|
||||
```
|
||||
|
||||
2. Modifica `/etc/ssh/sshd_config` para autorizar root a que se conecte con ssh, reemplazando `PermitRootLogin without-password` por `PermitRootLogin yes`. Recarga el daemon ssh con `service ssh reload`, y luego re-conéctate como root.
|
||||
|
||||
3. Desconéctate et reconéctate con el usuario root esta vez.
|
||||
|
||||
4. Sigue con el <a href="/install_manually">procedimiento de instalación manual genérico</a>.
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
---
|
||||
title: Installer YunoHost sur Raspberry Pi
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_raspberry'
|
||||
---
|
||||
|
||||
*Toutes les autres façons d’installer YunoHost sont listées **[ici](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Avant d'héberger un serveur chez vous, il est recommandé de prendre connaissance des [possibles limitations liées à votre FAI](/isp). Si votre FAI est trop contraignant, vous pouvez envisager d'utiliser un VPN pour contourner ces limitations.
|
||||
|
||||
## Prérequis
|
||||
|
||||
- Un Raspberry Pi 2, 3 ou 4 (Les RPi 0 et 1 peuvent fonctionner mais nécessitent de bricoler un peu ... voir [cette issue](https://github.com/YunoHost/issues/issues/1423)) ;
|
||||
- Un adaptateur secteur pour alimenter la carte ;
|
||||
- Une carte microSD : au moins **8 Go** et **Classe 10** (par exemple une [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- Un câble ethernet/RJ-45 pour brancher la carte à votre routeur/box internet. (Avec le Raspberry Pi 0, vous pouvez connecter votre carte avec un câble OTG et un adaptateur Wifi USB.)
|
||||
- Un [fournisseur d’accès correct](/isp), de préférence avec une bonne vitesse d’upload.
|
||||
|
||||
---
|
||||
|
||||
## Installation avec l'image pré-installée (recommandée)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Télécharger l'image pour Raspberry Pi](/images) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Flasher la carte SD avec l'image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Démarrer la carte et se connecter à l'interface web sur `yunohost.local`](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Effectuer la configuration initiale (post-installation)](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Installation manuelle (déconseillée)
|
||||
|
||||
! Nous déconseillons l'installation manuelle car elle est plus technique et plus longue que l'installation via l'image pré-installée. Cette documentation est surtout destinée aux utilisateurs avancés.
|
||||
|
||||
! Les dernières versions de Raspbian nécessitent un écran et un clavier, car il n'est plus possible de se connecter directement en SSH au Raspberry par défaut. Néanmoins, il est possible de réactiver le lancement de SSH au boot : il suffit de placer dans la partition boot de la carte SD un fichier nommé `ssh`, vide et sans extension.
|
||||
|
||||
0. Installez Raspberry Pi OS Lite ([instructions](https://www.raspberrypi.org/downloads/raspberry-pi-os/)) sur la carte SD.
|
||||
Le lien vers Raspberry Pi OS Lite est ici : https://downloads.raspberrypi.org/raspbian_lite/images/
|
||||
|
||||
1. Connectez-vous en SSH au Raspberry Pi avec l'utilisateur pi. Définissez un mot de passe root avec
|
||||
```bash
|
||||
sudo passwd root
|
||||
```
|
||||
|
||||
2. Modifiez `/etc/ssh/sshd_config` pour autoriser root à se logger en SSH, en remplaçant `PermitRootLogin without-password` par `PermitRootLogin yes`. Rechargez le daemon SSH avec `service ssh reload`, puis re-connectez-vous en root.
|
||||
|
||||
3. Déconnectez-vous et reconnectez-vous avec l'utilisateur root cette fois.
|
||||
|
||||
4. Poursuivez avec la <a href="/install_manually">procédure d'installation manuelle générique</a>.
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
---
|
||||
title: Install YunoHost on a Raspberry Pi
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_raspberry'
|
||||
---
|
||||
|
||||
*Find all the ways to install YunoHost **[here](/install)**.*
|
||||
|
||||
[center]
|
||||

|
||||

|
||||
[/center]
|
||||
|
||||
! Before setting up a server at home, it is recommended that you know the [possible limitations imposed by your ISP](/administrate/advance/isp).
|
||||
! If they are too restrictive, you might consider using a VPN to bypass them.
|
||||
|
||||
## Pre-requisites
|
||||
|
||||
- A Raspberry Pi 2, 3 or 4 (RPi 0 and 1 may work but require some tweaking... see [this issue](https://github.com/YunoHost/issues/issues/1423));
|
||||
- An microSD card: **8GB** capacity (at least) and **Class 10** speed rate are highly recommended (like the [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- A power supply (either an adapter or a MicroUSB cable);
|
||||
- An ethernet cable (RJ-45) to connect your Raspberry Pi to your router. (Raspberry Pi Zero users can connect the Pi using an OTG cable, [Wifi dongle](https://core-electronics.com.au/tutorials/raspberry-pi-zerow-headless-wifi-setup.html).);
|
||||
- A [reasonable ISP](/isp), preferably with a good and unlimited upload bandwidth.
|
||||
|
||||
---
|
||||
|
||||
## Install with the pre-installed image (recommended)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Download the pre-installed image for Raspberry Pi](/images) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flash the SD card with the image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Boot the board and connect to the web interface at `yunohost.local`](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Proceed with the initial configuration (post-installation)](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Manual installation (advanced users)
|
||||
|
||||
! We do not recommend the manual installation because it is more technical and longer than using the pre-installed image. This documentation is only intended for advanced users.
|
||||
|
||||
! The latest Raspberry Pi OS images requires a screen and a keyboard, as it is no longer possible to connect directly to the Raspberry through SSH. Nevertheless it is possible to re-enable SSH at boot: before starting your Raspberry, put in the boot partition of the SD card an empty file named `ssh` (without extension).
|
||||
|
||||
0. Install Raspberry Pi OS Lite on the SD card ([instructions](https://www.raspberrypi.org/downloads/raspberry-pi-os/)). The Raspberry Pi OS Lite can be found here: https://downloads.raspberrypi.org/raspbian_lite/images/
|
||||
|
||||
1. Connect to your Raspberry Pi with the user `pi`. Set the root password with
|
||||
```bash
|
||||
sudo passwd root
|
||||
```
|
||||
|
||||
2. Edit `/etc/ssh/sshd_config` to allow SSH login for root, by replacing `PermitRootLogin without-password` with `PermitRootLogin yes`. Reload the SSH daemon with `service ssh reload`.
|
||||
|
||||
3. Disconnect and reconnect, this time as root.
|
||||
|
||||
4. Then follow the <a href="/install_manually">generic manual install procedure</a>.
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
---
|
||||
title: Instalar YunoHost en una tarjeta ARM
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_arm_board'
|
||||
---
|
||||
|
||||
*Encontrar otros medios de instalar YunoHost **[aquí](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Antes de alojar tu propio servidor en tu casa, te recomendamos que consultes las [posibles restricciones impuestas por tu Proveedor de Internet](/isp). Si tu proveedor es demasiado restrictivo, puedes utilizar un VPN para eludir estas restricciones.
|
||||
|
||||
- Una tarjeta ARM con un procesador de 500 MHz et 512 Mo de memoria RAM ;
|
||||
- Un adaptador de corriente para alimentar la tarjeta ;
|
||||
- Una tarjeta microSD : al menos **8 Go** y **Clase 10** (por ejemplo una [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- Un cable ethernet/RJ-45 para conectar la carte con el router / caja internet. (Con el Raspberry Pi 0, puedes conectar tu tarjeta con un cable OTG y un adaptador Wifi USB.)
|
||||
- Un [proveedor de Internet ético](/isp), de preferencia con una buena velocidad de upload.
|
||||
|
||||
---
|
||||
|
||||
## Instalación con la imagen pre-instalada (recomendada)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Descargar la imagen pre-instalada para tu tarjeta ARM](/images) [/div]
|
||||
<br>
|
||||
<small class="text-info">Si no existe una imagen dedicada a tu tarjeta, puedes seguir la sección "Instalación encima de ARMbian".</small>
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Poner la imagen en tu tarjeta SD](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Conectar y encender](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Proceder a la post-instalación](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Instalación encima de ARMbian
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Descargar la imagen ARMbian para tu tarjeta ARM](https://www.armbian.com/download/) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Poner la imagen en tu tarjeta SD](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Conectar y encender](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Conectarse en SSH](/ssh) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Proceder a la post-instalación genérica](/install_manually) [/div]
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
---
|
||||
title: Installer YunoHost sur carte ARM
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_arm_board'
|
||||
---
|
||||
|
||||
*Toutes les autres façons d’installer YunoHost sont listées **[ici](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Avant d'héberger un serveur chez vous, il est recommandé de prendre connaissance des [possibles limitations liées à votre FAI](/isp). Si votre FAI est trop contraignant, vous pouvez envisager d'utiliser un VPN pour contourner ces limitations.
|
||||
|
||||
- Une carte ARM avec un processeur de 500 MHz et 512 Mo de mémoire vive ;
|
||||
- Un adaptateur secteur pour alimenter la carte ;
|
||||
- Une carte microSD : au moins **8 Go** et **Classe 10** (par exemple une [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO)) ;
|
||||
- Un câble ethernet/RJ-45 pour brancher la carte à votre routeur/box internet. (Avec le Raspberry Pi 0, vous pouvez connecter votre carte avec un câble OTG et un adaptateur Wifi USB.)
|
||||
- Un [fournisseur d’accès correct](/isp), de préférence avec une bonne vitesse d’upload.
|
||||
|
||||
---
|
||||
|
||||
## Installation avec l'image pré-installée (recommandée)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Télécharger l'image pré-installée pour votre carte ARM](/images) [/div]
|
||||
<br>
|
||||
<small class="text-info">Si il n'existe pas d'image pré-installée pour votre carte, vous pouvez suivre la section "Installation par dessus ARMbian".</small>
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flasher la carte SD avec l'image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Démarrer la carte et se connecter à l'interface web sur `yunohost.local`](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Effectuer la configuration initiale (post-installation)](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Installation par dessus ARMbian
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Télécharger l'image ARMbian pour votre carte ARM](https://www.armbian.com/download/) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flasher la carte SD avec l'image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Brancher & démarrer](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Se connecter en SSH](/ssh) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Suivre la procédure d'installation générique](/install_manually) [/div]
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
---
|
||||
title: Install YunoHost on ARM board
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_arm_board'
|
||||
---
|
||||
|
||||
*Find other ways to install YunoHost **[here](/install)**.*
|
||||
|
||||

|
||||

|
||||
|
||||
!!! Before setting up a server at home, it is recommended that you know the [possible limitations imposed by your ISP](/isp). If they are too restrictive, you might consider using a VPN to bypass them.
|
||||
|
||||
## Pre-requisites
|
||||
|
||||
- An ARM board with 500MHz CPU and 512 MB of RAM;
|
||||
- A power supply for your board;
|
||||
- A microSD card: **8GB** capacity (at least) and **Class 10** speed rate are highly recommended (like the [Transcend 300x](http://www.amazon.fr/Transcend-microSDHC-adaptateur-TS32GUSDU1E-Emballage/dp/B00CES44EO));
|
||||
- An ethernet cable (RJ-45) to connect your board to your router;
|
||||
- A [reasonable ISP](/isp), preferably with a good and unlimited upload bandwidth.
|
||||
|
||||
---
|
||||
|
||||
## Install with the pre-installed image (recommended)
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Download the pre-installed image for your board](/images) [/div]
|
||||
<br>
|
||||
<small class="text-info">If no pre-installed image exists for your board, you can follow the instructions to "Install on top of ARMbian"</small>
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flash the SD card with the image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Boot the board and connect to the web interface at `yunohost.local`](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Proceed with the initial configuration (post-installation)](/postinstall) [/div]
|
||||
|
||||
---
|
||||
|
||||
## Install on top of ARMbian
|
||||
|
||||
[div class="btn btn-lg btn-default"] [0. Download the ARMbian image for your board](https://www.armbian.com/download/) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Flash the SD card with the image](/burn_or_copy_iso) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Plug & boot](/plug_and_boot) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [3. Connect to your server with SSH](/ssh) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [4. Follow the generic install procedure](/install_manually) [/div]
|
|
@ -23,7 +23,8 @@ To avoid this confusion, it's possible to get a certificate signed a known autho
|
|||
|
||||
Before attempting to install a Let's Encrypt certificate, you should make sure that your DNS is correctly configured (your.domain.tld should point to your server's IP) and that your domain is accessible through HTTP from outside your local network (i.e. at least port 80 should be forwarded to your server).
|
||||
|
||||
#### From the web administration interface
|
||||
[ui-tabs position="top-left" active="0" theme="lite"]
|
||||
[ui-tab title="From the web interface"]
|
||||
|
||||
Go to the 'Domain' part of the admin interface, then in the section dedicated to your.domain.tld. You should find a 'SSL certificate' button:
|
||||
|
||||
|
@ -41,7 +42,8 @@ Once the install is made, you can check that the certificate is live via your br
|
|||
|
||||

|
||||
|
||||
#### From the command line interface
|
||||
[/ui-tab]
|
||||
[ui-tab title="From the command line"]
|
||||
|
||||
Connect to your server through SSH.
|
||||
|
||||
|
@ -66,6 +68,9 @@ Success! Successfully installed Let's Encrypt certificate for domain DOMAIN.TLD!
|
|||
|
||||
Once this is done, you can check that the certificate is live via your browser by going to your domain in HTTPS. The certificate will automatically be renewed every three months.
|
||||
|
||||
[/ui-tab]
|
||||
[/ui-tabs]
|
||||
|
||||
##### Troubleshooting
|
||||
|
||||
If due to some bad tweaking, your certificate ends up in a bad state (e.g. lost the certificate or unable to read the files), you should be able to clean the situation by regenerating a self-signed certificate:
|
|
@ -1,29 +0,0 @@
|
|||
---
|
||||
title: التنصيب على ديبيان
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_debian'
|
||||
---
|
||||
|
||||
*يمكنكم الإطلاع على طُرق أخرى لتنصيب واي يونوهوست YunoHost **[هنا](/install)**.*
|
||||
|
||||
## المتطلبات
|
||||
|
||||

|
||||
|
||||
على منصة ARM أو على خادوم إفتراضي خاص أو على خادوم إستضافة أو على حاسوب x86 عادي أو على حاسوب ماكينطوش قديم … إلخ
|
||||
|
||||
* على **ديبيان 8** (جيسي) قد تم تنصيبه مِن قبل
|
||||
* مُتصل بالإنترنت عبر كابل إيثرنت
|
||||
* مباشرة عبر **النفاذ بالمستخدم الجذري root** أو عبر الـ SSH
|
||||
|
||||
---
|
||||
|
||||
## خطوات التنصيب
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. التنصيب يدويًا](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. ما بعد التنصيب](/postinstall) [/div]
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
---
|
||||
title: Installation sur Debian
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_debian'
|
||||
---
|
||||
|
||||
*Trouvez d’autres moyens d’installer YunoHost **[ici](/install)**.*
|
||||
|
||||
## Prérequis
|
||||
|
||||

|
||||
|
||||
Sur une plateforme ARM, un VPS, un serveur dédié, un ordinateur x86 standard, un vieux Macintosh,...
|
||||
|
||||
* avec **Debian 10** (Buster) installé <small>(avec un kernel >= 3.12)</small>
|
||||
* l'ISO Debian 10 ISO peut être téléchargée depuis [cette page](https://www.debian.org/releases/buster/debian-installer/). Prenez la 'netinst CD image' pour votre architecture
|
||||
* N.B. : Avoir un environnement graphique n'est *pas* recommandé ! Les serveurs sont généralement administrés à distance !
|
||||
* connecté à Internet
|
||||
* avec un **accès root** directement ou par SSH
|
||||
|
||||
---
|
||||
|
||||
## Étapes d’installation
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Installer manuellement](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Post-installation](/postinstall) [/div]
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
title: Installazione su Debian
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_debian'
|
||||
---
|
||||
|
||||
*Altri sistemi per installare Debian **[qui](/install)**.*
|
||||
|
||||
### Requisiti
|
||||
|
||||

|
||||
|
||||
Su un computer ARM, un VPS, un server dedicato, un computer x86 standard, un vecchio Macintosh, ...
|
||||
|
||||
* con **Debian 10** (Buster) installato <small>(con un kernel >= 3.12)</small>
|
||||
* l'immagine ISO di Debian 10 può essere scaricata da [qui](https://www.debian.org/releases/buster/debian-installer/). Scegli l'immagine 'netinst CD' per la tua architettura.
|
||||
* N.B.: l'uso di un'interfaccia grafica *non* è raccomandato! I server dovrebbero essere amministrati da remoto!
|
||||
* connesso ad Internet
|
||||
* con un **accesso root** diretto o via SSH
|
||||
|
||||
---
|
||||
|
||||
## Passi per l'installazione
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Installazione manuale](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Post-installazione](/postinstall) [/div]
|
|
@ -1,31 +0,0 @@
|
|||
---
|
||||
title: Installation on Debian
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_debian'
|
||||
---
|
||||
|
||||
*Find other ways to install YunoHost **[here](/install)**.*
|
||||
|
||||
### Requirements
|
||||
|
||||

|
||||
|
||||
An ARM box, a VPS, a dedicated server, a standard x86 computer, an old Macintosh, ...
|
||||
|
||||
* with **Debian 10** (Buster) installed <small>(with kernel >= 3.12)</small>
|
||||
* the Debian 10 ISO can be downloaded from [here](https://www.debian.org/releases/buster/debian-installer/). Take the 'netinst CD image' for your architecture.
|
||||
* N.B. : having a graphical environment is *not* recommended! Servers are meant to be administrated remotely!
|
||||
* connected to the Internet
|
||||
* with a direct **root access** or via SSH
|
||||
|
||||
---
|
||||
|
||||
## Installation steps
|
||||
|
||||
[div class="btn btn-lg btn-default"] [1. Install manually](/install_manually) [/div]
|
||||
|
||||
[div class="btn btn-lg btn-default"] [2. Post-install](/postinstall) [/div]
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
---
|
||||
title: Instalar YunoHost en VirtualBox
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_virtualbox'
|
||||
---
|
||||
|
||||
*Encontrar otros medios de instalar YunoHost **[aquí](/install)**.*
|
||||
|
||||
## Prerrequisitos
|
||||
|
||||

|
||||
|
||||
* Un ordenador x86 con VirtualBox instalado y bastante RAM disponible para iniciar una pequeña máquina virtual.
|
||||
* La última **imagen ISO YunoHost** estable, disponible [aquí](/images).
|
||||
|
||||
! N.B. : Instalar YunoHost en VirtualBox es útil para probar la distribución. Para realmente autoalojarse a largo plazo, probablement necesitarás una máquina virtual (viejo ordenador, tarjeta ARM...) o un VPS.
|
||||
|
||||
---
|
||||
|
||||
## <small>1.</small> Crear una nueva máquina virtual
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* No es grave si sólo la versión 32-bit está disponible, pero en este caso asegúrate que 32 bit previamente.
|
||||
* 256Mo de RAM es el requisito mínimo, 512Mo está recomendado (1Go o más si puedes).
|
||||
* 8Go de almacenaje mínimo requisito.
|
||||
|
||||
---
|
||||
|
||||
## <small>2.</small> Modificar la configuración de la red
|
||||
|
||||
Ir a **Settings** > **Network** :
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Selectiona `Bridged adapter`
|
||||
|
||||
* Elige tu interfaz según su nombre :
|
||||
|
||||
**wlan0** si estás conectado sin hilo, **eth0** de otro modo.
|
||||
|
||||
---
|
||||
|
||||
## <small>3.</small> Inicia tu máquina virtual
|
||||
|
||||
Inicia tu máquina virtual
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
Aquí tienes que seleccionar la imagen ISO, luego deberías ver esta pantalla de bienvenida.
|
||||
|
||||
<br>
|
||||
|
||||
Si te encuentras con el error "VT-x is not available", probablement hay que activar (enable) la virtualización en la opciones del BIOS de tu ordenador.
|
||||
|
||||
<br>
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Elige `Instalación gráfica`
|
||||
|
||||
* Selecciona tu idioma, tu ubicación, la distribución de tu teclado y deja el ordenador terminar el proceso :-)
|
||||
|
||||
---
|
||||
|
||||
## <small>4.</small> Efectuar la post-instalación
|
||||
|
||||
Después del reinicio, la máquina debería proponerte de efectuar la post-instalación :
|
||||
|
||||
[div class="btn btn-lg btn-default"] [Documentación de post-instalación](/postinstall) [/div]
|
|
@ -1,82 +0,0 @@
|
|||
---
|
||||
title: Installer YunoHost sur VirtualBox
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_virtualbox'
|
||||
---
|
||||
|
||||
*Trouvez d’autres moyens d’installer YunoHost **[ici](/install)**.*
|
||||
|
||||
## Prérequis
|
||||
|
||||

|
||||
|
||||
* Un ordinateur x86 avec VirtualBox installé et assez de RAM disponible pour lancer une petite machine virtuelle.
|
||||
* La dernière **image ISO YunoHost** stable, disponible [ici](/images).
|
||||
|
||||
! N.B. : Installer YunoHost dans une VirtualBox est utile pour tester la distribution. Pour réellement s'autohéberger sur le long terme, il vous faudra probablement une machine physique (vieil ordinateur, carte ARM...) ou un VPS en ligne.
|
||||
|
||||
---
|
||||
|
||||
## <small>1.</small> Créer une nouvelle machine virtuelle
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Ce n'est pas grave si seulement la version 32-bit est dispo, mais dans ce cas soyez sur d'avoir téléchargé l'image 32 bit précédemment.
|
||||
* 256Mo de RAM est le minimum requis, 512Mo est recommandé (1Go ou plus si vous pouvez).
|
||||
* 8Go de stockage minimum requis pour le système, y ajouter l'espace pour vos applications.
|
||||
|
||||
---
|
||||
|
||||
## <small>2.</small> Modifier la configuration réseau
|
||||
|
||||
Allez dans **Réglages** > **Réseau** :
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Sélectionnez `Accès par pont`
|
||||
|
||||
* Choisissez votre interface selon son nom :
|
||||
|
||||
**wlan0** si vous êtes connecté sans-fil, **eth0** sinon.
|
||||
|
||||
---
|
||||
|
||||
## <small>3.</small> Lancer votre machine virtuelle
|
||||
|
||||
Démarrez votre machine virtuelle
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
Vous devez sélectionner ici l’image ISO, puis vous devriez voir cet écran d’accueil YunoHost.
|
||||
|
||||
<br>
|
||||
|
||||
Si vous rencontrez l'erreur "VT-x is not available", il vous faut probablement activer (enable) la virtualisation dans les options du BIOS de votre ordinateur.
|
||||
|
||||
<br>
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Choisissez `Installation graphique`
|
||||
|
||||
* Sélectionnez votre langue, votre emplacement, la disposition de votre clavier et laissez l’installeur faire le reste :-)
|
||||
|
||||
---
|
||||
|
||||
## <small>4.</small> Effectuer la post-installation
|
||||
|
||||
Après le redémarrage, la machine devrait vous proposer d'effectuer la
|
||||
post-installation :
|
||||
|
||||
[div class="btn btn-lg btn-default"] [Documentation de la postinstall](/postinstall) [/div]
|
|
@ -1,87 +0,0 @@
|
|||
---
|
||||
title: Install YunoHost on VitualBox
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/install_on_virtualbox'
|
||||
---
|
||||
|
||||
*Find other ways to install YunoHost **[here](/install)**.*
|
||||
|
||||
## Requirements
|
||||
|
||||

|
||||
|
||||
* An x86 computer with VirtualBox installed and enough RAM capacity to be able to run a small virtual machine.
|
||||
* The latest stable **YunoHost ISO image**, available [here](/images).
|
||||
|
||||
! N.B. : Installing YunoHost in a VirtualBox is usually intended for testing. To run an actual server on the long-term, you usually need a dedicated physical machine (old computer, ARM board...) or a VPS online.
|
||||
|
||||
---
|
||||
|
||||
## <small>1.</small> Create a new virtual machine
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* It's okay if you can only have 32-bit versions, just be sure that you downloaded the 32-bit image previously.
|
||||
* 256MB RAM is the minimum required, but at least 512MB is recommended (1Go or more if you can).
|
||||
* 8GB storage is the minimum required for the system, add whatever is necessary for your apps.
|
||||
|
||||
---
|
||||
|
||||
## <small>2.</small> Change network settings
|
||||
|
||||
**NB:** You must carry out this step. If not, the install will fail.
|
||||
|
||||
Go to **Settings** > **Network**:
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Select `Bridged adapter`
|
||||
|
||||
* Select your interface's name:
|
||||
|
||||
**wlan0** if you are connected wirelessly, else **eth0**.
|
||||
|
||||
---
|
||||
|
||||
## <small>3.</small> Boot up the virtual machine
|
||||
|
||||
Start the virtual machine
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
You will have to select your ISO image here, then you should see the YunoHost's boot screen.
|
||||
|
||||
<br>
|
||||
|
||||
If you encounter the error "VT-x is not available", you need probably need to enable Virtualization in the BIOS of your computer.
|
||||
|
||||
<br>
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
* Select `Graphical install`
|
||||
|
||||
* Select your language, your location, your keyboard layout and let the installer do the rest :-)
|
||||
|
||||
---
|
||||
|
||||
## <small>4.</small> Proceed to post-installation
|
||||
|
||||
After the reboot, the system should ask you to proceed with the
|
||||
post-installation
|
||||
|
||||
[div class="btn btn-lg btn-default"] [Post-install documentation](/postinstall) [/div]
|
||||
|
||||
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
title: Conectar e iniciar el servidor
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/plug_and_boot'
|
||||
---
|
||||
|
||||
* Conecta tu servidor con un cable Ethernet (RJ-45) **directamente sobre tu router principal**. También puedes configurar la conexión wifi como explicado [aquí (fr)](http://raspbian-france.fr/connecter-wifi-raspberry-pi-3/). El wifi también puede configurarse sin haber iniciado la tarjeta, "montando" la segunda partición de la tarjeta y finalmente editando el archivo wpa-supplicant.conf. En Windows, puedes utilizar [Paragon ExtFS](https://www.paragon-software.com/home/extfs-windows/), no olvides de "unmount" para que los cambios estén integrados.
|
||||
|
||||
* No te olvides de **conectar una pantalla** si quieres observar cómo ocurre el inicio, y un teclado si quieres un acceso con **línea de comandos** a tu servidor.
|
||||
|
||||
* Inicia el servidor, el Raspberry Pi va a reiniciarse si-mismo una primera vez, pues espera hasta que veas un gran `Y` cuadrado :
|
||||
|
||||
<br>
|
||||
|
||||

|
||||
|
||||
<p markdown="1">
|
||||
*Nota el valor `IP` visible en la pantalla : esto es **la dirección IP local** de tu servidor.*
|
||||
</p>
|
||||
|
||||
</div>
|
|
@ -1,36 +0,0 @@
|
|||
---
|
||||
title: Brancher et démarrer votre serveur
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/plug_and_boot'
|
||||
---
|
||||
|
||||
* Mettez la carte SD dans le serveur (pour le cas des cartes ARM)
|
||||
* Branchez le cable ethernet
|
||||
* Branchez l'alimentation
|
||||
* Laissez quelques minutes à votre serveur pour démarrer
|
||||
|
||||
### Se connecter à son serveur
|
||||
|
||||
* Assurez vous que votre ordianteur (de bureau ou portable) est connecté au même réseau local (c'est-à-dire la même box internet) que votre serveur.
|
||||
* Ouvrez un navigateur internet et tapez `https://yunohost.local` dans la barre d'adresse.
|
||||
* Si votre serveur est actif, vous rencontrerez très probablement un avertissement de sécurité. Cet avertissement viens du fait que votre serveur utilise pour le moment ce qui s'appelle un "certificat auto-signé" - et que nous utisons un domaine spécial en `.local`. Vous pourrez plus tard ajouter 'vrai' domaine et un certificat automatiquement reconnus par les navigateurs comme décrit dans la page sur les [Certificats](/certificate). En attendant, ajoutez une exception de sécurité pour accepter le certificat actuel.
|
||||
* Si vous n'arrivez pas à contacter votre serveur avec `yunohost.local`, essayez de [trouver l'IP locale de votre serveur](/finding_the_local_ip) - puis dans la barre d'adresse de votre navigateur, tapez `https://192.168.x.y`
|
||||
* [Effectuer la configuration initiale (post-installation)](/postinstall)
|
||||
|
||||
---
|
||||
|
||||
#### [Optionnel] Connecter le serveur à internet en WiFi
|
||||
|
||||
* Vous pouvez aussi configurer la connexion wifi comme expliqué [ici](http://raspbian-france.fr/connecter-wifi-raspberry-pi-3/).
|
||||
* La configuration wifi peut aussi se faire sans avoir booté sur la carte, en "montant" la deuxième partition de la carte et enfin éditer le fichier `wpa-supplicant.conf`. Sur Windows vous pouvez utiliser [Paragon ExtFS](https://www.paragon-software.com/home/extfs-windows/). Ne pas oublier de "unmount" pour que les changements soient pris en compte.
|
||||
|
||||
---
|
||||
|
||||
#### [Optionnel] Accès direct avec un écran et clavier
|
||||
|
||||
* Il est possible de brancher un écran et clavier sur votre serveur pour vérifier que le processus de démarrage (boot) se passe bien et pour avoir un accès direct en console.
|
||||
|
||||

|
|
@ -1,38 +0,0 @@
|
|||
---
|
||||
title: Plug and boot your server up
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/plug_and_boot'
|
||||
---
|
||||
|
||||
# Boot and connect to your server
|
||||
|
||||
* Plug the SD card (for ARM boards)
|
||||
* Plug the ethernet cable
|
||||
* Plug the power supply
|
||||
* Wait a couple minutes for your server to boot
|
||||
|
||||
### Connecting to your server
|
||||
|
||||
* Make sure that your computer (desktop/laptop) is connected to the same local network (i.e. same internet box) as your server.
|
||||
* Open a browser and type `https://yunohost.local` in the address bar.
|
||||
* If your server is up, you will very likely encounter a security warning. This is because your server is for now using what's called a "self-signed certificate" - and because we're accessing the server through a special `.local` domain. You will later be able to add a proper domain and install a certificate automatically recognized by web browsers as described in the [certificate documentation](/certificate). In the meantime, you should add a security exception to accept the current certificate.
|
||||
* If you are NOT able to join your server using the `yunohost.local` domain, try to [find the local IP of your server](/finding_the_local_ip) - then in your browser's address bar, type `https://192.168.x.y`
|
||||
* [Proceed with the initial configuration (post-installation)](/postinstall)
|
||||
|
||||
---
|
||||
|
||||
#### [Optional] Connecting your server to the internet through WiFi
|
||||
|
||||
* If you want your server to connect using WiFi, you may configure it as explained [here](https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md).
|
||||
* Alternatively, you can mount the second partition of the SD card and edit the `wpa-supplicant.conf` file prior to boot the card for the first time. On Windows you can use [Paragon ExtFS](https://www.paragon-software.com/home/extfs-windows/) for this - just don't forget to unmount everytime for changes to take effect.
|
||||
|
||||
---
|
||||
|
||||
#### [Optional] Direct access with a screen and keyboard
|
||||
|
||||
You can also boot your server with a screen and keyboard connected to it to see how the boot process is going on (which can also be useful to troubleshoot issues) and to have a direct access to it.
|
||||
|
||||

|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
title: Docker et YunoHost
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/docker'
|
||||
---
|
||||
|
||||
!! **YunoHost ne supporte plus officiellement Docker depuis les problèmes rencontrés avec la version 2.4+. En cause, YunoHost dépend désormait de systemd et docker a décidé qu’ils ne le supporteraient pas nativement (et il y a d'autres problèmes liés au firewall et aux services).**
|
||||
|
||||
## Images communautaires
|
||||
|
||||
Cependant il existe des images communautaires disponibles sur Docker Hub :
|
||||
|
||||
* [AMD64 (classique) (YunoHost v4+)](https://hub.docker.com/r/domainelibre/yunohost/)
|
||||
* [I386 (anciens pc) (YunoHost v4+)](https://hub.docker.com/r/domainelibre/yunohost-i386/)
|
||||
* [ARMV7 (Raspberry Pi 2/3 ...) (YunoHost v4+)](https://hub.docker.com/r/domainelibre/yunohost-arm/)
|
||||
* [ARMV6 (Raspberry Pi 1) (ancienne version de YunoHost)](https://hub.docker.com/r/tuxalex/yunohost-armv6/)
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
title: Docker and YunoHost
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/docker'
|
||||
---
|
||||
|
||||
!! **YunoHost doesn’t support Docker officially since issues with versions 2.4+. In question, YunoHost 2.4+ doesn’t work anymore on Docker because YunoHost requires systemd and Docker has chosen to not support it natively (and there are other problems link to the firewall and services).**
|
||||
|
||||
## Community images
|
||||
|
||||
However, community images exist and are available on Docker Hub:
|
||||
|
||||
* [AMD64 (classic) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost/)
|
||||
* [I386 (old computers) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost-i386/)
|
||||
* [ARMV7 (Raspberry Pi 2/3 ...) (ancienne version de YunoHost)](https://hub.docker.com/r/domainelibre/yunohost-arm/)
|
||||
* [ARMV6 (Raspberry Pi 1) (old yunoHost version)](https://hub.docker.com/r/tuxalex/yunohost-armv6/)
|
|
@ -7,8 +7,10 @@ routes:
|
|||
default: '/images'
|
||||
---
|
||||
|
||||
<div class="hardware-image">
|
||||
<div id="cards-list">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/template" id="image-template">
|
||||
<div id="{id}" class="card panel panel-default">
|
||||
|
@ -16,12 +18,12 @@ routes:
|
|||
<h3>{name}</h3>
|
||||
<div class="card-comment">{comment}</div>
|
||||
<div class="card-desc text-center">
|
||||
<img src="/images/{image}" height=100 style="vertical-align:middle">
|
||||
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||
</div>
|
||||
</div>
|
||||
<div class="annotations">
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sha256sum"><span class="glyphicon glyphicon-barcode" aria-hidden="true"></span> Checksum</a></div>
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sig"><span class="glyphicon glyphicon-tag" aria-hidden="true"></span> Signature</a></div>
|
||||
<div class="annotations flex-container">
|
||||
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> تنزيل <small>{version}</small></a>
|
||||
|
@ -29,60 +31,6 @@ routes:
|
|||
</div>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
/*
|
||||
###############################################################################
|
||||
Style sheet for the cards
|
||||
###############################################################################
|
||||
*/
|
||||
#cards-list:after {
|
||||
content:'';
|
||||
display:block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom:20px;
|
||||
width:270px;
|
||||
float:left;
|
||||
min-height: 1px;
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.card .panel-body > h3 {
|
||||
margin-top:0;
|
||||
margin-bottom:5px;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
height:100px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card .btn-group {
|
||||
width:100%;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card > .btn-group > .btn{
|
||||
border-bottom:0;
|
||||
}
|
||||
.card > .btn-group {
|
||||
border-left:0;
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card-comment {
|
||||
font-size: 0.8em;
|
||||
margin-top:-5px;
|
||||
}
|
||||
.card > .annotations {
|
||||
text-align:center;
|
||||
font-size:small;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
/*
|
||||
|
|
|
@ -15,8 +15,10 @@ Esta página requiere que Javascript esté instalado par aparecer correctamente
|
|||
|
||||
N.B. : Incluso si la imagen no corresponde con la última versión de YunoHost, puedes utilizarla y actualizarla después de la instalación !
|
||||
|
||||
<div class="hardware-image">
|
||||
<div id="cards-list">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/template" id="image-template">
|
||||
<div id="{id}" class="card panel panel-default">
|
||||
|
@ -24,12 +26,12 @@ N.B. : Incluso si la imagen no corresponde con la última versión de YunoHost,
|
|||
<h3>{name}</h3>
|
||||
<div class="card-comment">{comment}</div>
|
||||
<div class="card-desc text-center">
|
||||
<img src="/images/{image}" height=100 style="vertical-align:middle">
|
||||
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||
</div>
|
||||
</div>
|
||||
<div class="annotations">
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sha256sum"><span class="glyphicon glyphicon-barcode" aria-hidden="true"></span> Checksum</a></div>
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sig"><span class="glyphicon glyphicon-tag" aria-hidden="true"></span> Signature</a></div>
|
||||
<div class="annotations flex-container">
|
||||
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> Télécharger <small>{version}</small></a>
|
||||
|
@ -37,60 +39,6 @@ N.B. : Incluso si la imagen no corresponde con la última versión de YunoHost,
|
|||
</div>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
/*
|
||||
###############################################################################
|
||||
Style sheet for the cards
|
||||
###############################################################################
|
||||
*/
|
||||
#cards-list:after {
|
||||
content:'';
|
||||
display:block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom:20px;
|
||||
width:270px;
|
||||
float:left;
|
||||
min-height: 1px;
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.card .panel-body > h3 {
|
||||
margin-top:0;
|
||||
margin-bottom:5px;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
height:100px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card .btn-group {
|
||||
width:100%;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card > .btn-group > .btn{
|
||||
border-bottom:0;
|
||||
}
|
||||
.card > .btn-group {
|
||||
border-left:0;
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card-comment {
|
||||
font-size: 0.8em;
|
||||
margin-top:-5px;
|
||||
}
|
||||
.card > .annotations {
|
||||
text-align:center;
|
||||
font-size:small;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
/*
|
||||
|
|
|
@ -15,8 +15,10 @@ Cette page requiert que Javascript soit activé pour s'afficher correctement :s.
|
|||
|
||||
N.B. : Même si l'image ne correspond pas à la dernière version de YunoHost, vous pouvez tout de même l'utiliser puis faire une mise à jour du système après l'installation !
|
||||
|
||||
<div class="hardware-image">
|
||||
<div id="cards-list">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/template" id="image-template">
|
||||
<div id="{id}" class="card panel panel-default">
|
||||
|
@ -24,12 +26,12 @@ N.B. : Même si l'image ne correspond pas à la dernière version de YunoHost, v
|
|||
<h3>{name}</h3>
|
||||
<div class="card-comment">{comment}</div>
|
||||
<div class="card-desc text-center">
|
||||
<img src="/images/{image}" height=100 style="vertical-align:middle">
|
||||
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||
</div>
|
||||
</div>
|
||||
<div class="annotations">
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sha256sum"><span class="glyphicon glyphicon-barcode" aria-hidden="true"></span> Checksum</a></div>
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sig"><span class="glyphicon glyphicon-tag" aria-hidden="true"></span> Signature</a></div>
|
||||
<div class="annotations flex-container">
|
||||
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> Télécharger <small>{version}</small></a>
|
||||
|
@ -37,60 +39,6 @@ N.B. : Même si l'image ne correspond pas à la dernière version de YunoHost, v
|
|||
</div>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
/*
|
||||
###############################################################################
|
||||
Style sheet for the cards
|
||||
###############################################################################
|
||||
*/
|
||||
#cards-list:after {
|
||||
content:'';
|
||||
display:block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom:20px;
|
||||
width:270px;
|
||||
float:left;
|
||||
min-height: 1px;
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.card .panel-body > h3 {
|
||||
margin-top:0;
|
||||
margin-bottom:5px;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
height:100px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card .btn-group {
|
||||
width:100%;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card > .btn-group > .btn{
|
||||
border-bottom:0;
|
||||
}
|
||||
.card > .btn-group {
|
||||
border-left:0;
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card-comment {
|
||||
font-size: 0.8em;
|
||||
margin-top:-5px;
|
||||
}
|
||||
.card > .annotations {
|
||||
text-align:center;
|
||||
font-size:small;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
/*
|
||||
|
|
|
@ -15,8 +15,10 @@ This page requires Javascript enabled to display properly :s.
|
|||
|
||||
N.B. : Even if the image does not corresponds to the latest version of YunoHost, you can still use it and do a regular system upgrade after setting up!
|
||||
|
||||
<div class="hardware-image">
|
||||
<div id="cards-list">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/template" id="image-template">
|
||||
<div id="{id}" class="card panel panel-default">
|
||||
|
@ -24,74 +26,19 @@ N.B. : Even if the image does not corresponds to the latest version of YunoHost,
|
|||
<h3>{name}</h3>
|
||||
<div class="card-comment">{comment}</div>
|
||||
<div class="card-desc text-center">
|
||||
<img src="/images/{image}" height=100 style="vertical-align:middle">
|
||||
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||
</div>
|
||||
</div>
|
||||
<div class="annotations">
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sha256sum"><span class="glyphicon glyphicon-barcode" aria-hidden="true"></span> Checksum</a></div>
|
||||
<div class="col-sm-6 annotation"><a href="{file}.sig"><span class="glyphicon glyphicon-tag" aria-hidden="true"></span> Signature</a></div>
|
||||
<div class="annotations flex-container">
|
||||
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> Download <small>{version}</small></a>
|
||||
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12">[fa=download] Download <small>{version}</small></a>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
/*
|
||||
###############################################################################
|
||||
Style sheet for the cards
|
||||
###############################################################################
|
||||
*/
|
||||
#cards-list:after {
|
||||
content:'';
|
||||
display:block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom:20px;
|
||||
width:270px;
|
||||
float:left;
|
||||
min-height: 1px;
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.card .panel-body > h3 {
|
||||
margin-top:0;
|
||||
margin-bottom:5px;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
height:100px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card .btn-group {
|
||||
width:100%;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card > .btn-group > .btn{
|
||||
border-bottom:0;
|
||||
}
|
||||
.card > .btn-group {
|
||||
border-left:0;
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
margin-left: 0px;
|
||||
}
|
||||
.card-comment {
|
||||
font-size: 0.8em;
|
||||
margin-top:-5px;
|
||||
}
|
||||
.card > .annotations {
|
||||
text-align:center;
|
||||
font-size:small;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
/*
|
||||
###############################################################################
|
||||
|
|
|
@ -1,52 +0,0 @@
|
|||
---
|
||||
title: Flasher l'ISO YunoHost
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/burn_or_copy_iso'
|
||||
---
|
||||
|
||||
Maintenant que vous avez téléchargé l’image ISO de YunoHost, vous devez la mettre sur un support physique. Classiquement, il s'agit d'une **Clé USB** ou d'une **Carte SD**.
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
---
|
||||
|
||||
### (Recommandé) Avec Etcher
|
||||
|
||||
Téléchargez <a href="https://etcher.io/" target="_blank">Etcher</a> pour votre système d'exploitation et installez-le.
|
||||
|
||||

|
||||
|
||||
Branchez votre clef USB, selectionnez l'ISO YunoHost puis cliquez sur 'Flash'
|
||||
|
||||
### Avec UNetbootin
|
||||
|
||||
Téléchargez <a href="https://unetbootin.github.io/">UNetbootin</a> pour votre système d'exploitation et installez-le.
|
||||
|
||||

|
||||
|
||||
Branchez votre clef USB, selectionnez l'ISO YunoHost puis cliquez sur 'OK'
|
||||
|
||||
### Avec `dd`
|
||||
|
||||
Si vous êtes familier avec la ligne de commande, il est possible de flasher la clef USB ou carte SD avec `dd`. Vous pouvez identifier le nom du périphérique avec `fdisk -l` ou `lsblk`. Une carte SD s'apelle typiquement `/dev/mmcblk0`. ATTENTION à faire attention de prendre le bon nom !
|
||||
|
||||
```bash
|
||||
# Remplacer /dev/mmcblk0 par le nom de votre périphérique
|
||||
dd if=/chemin/de/yunohost.iso of=/dev/mmcblk0
|
||||
```
|
||||
|
||||
### CD/DVD
|
||||
|
||||
Pour les anciens matériels, il vous faut peut-être utiliser un CD/DVD. Le logiciel à utiliser est différent suivant votre système d’exploitation.
|
||||
|
||||
* Sur Windows, utilisez [ImgBurn](http://www.imgburn.com/) pour écrire l’image sur le disque
|
||||
|
||||
* Sur macOS, utilisez [Disk Utility](http://support.apple.com/kb/ph7025)
|
||||
|
||||
* Sur GNU/Linux, vous avez plusieurs choix, tels que [Brasero](https://wiki.gnome.org/Apps/Brasero) ou [K3b](http://www.k3b.org/)
|
|
@ -1,59 +0,0 @@
|
|||
---
|
||||
title: Flashing the YunoHost ISO
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/burn_or_copy_iso'
|
||||
---
|
||||
|
||||
Now that you downloaded the ISO image of YunoHost, you should flash/burn it on a physical medium. Typically, this is done on a **USB stick** or an **SD card**.
|
||||
|
||||
[center]
|
||||

|
||||

|
||||

|
||||

|
||||
[/center]
|
||||
|
||||
### (Recommended) With Etcher
|
||||
|
||||
Download <a href="https://www.balena.io/etcher/" target="_blank">Etcher</a> for your operating system and install it.
|
||||
|
||||
[center]
|
||||

|
||||
[/center]
|
||||
|
||||
Plug your USB stick, select your YunoHost ISO and click "Flash"
|
||||
|
||||
### With UNetbootin
|
||||
|
||||
Download <a href="https://unetbootin.github.io/">UNetbootin</a> for your operating system and install it.
|
||||
|
||||
[center]
|
||||

|
||||
[/center]
|
||||
|
||||
Put your USB stick on, select your YunoHost ISO and click "OK"
|
||||
|
||||
|
||||
### With `dd`
|
||||
|
||||
If you are on GNU/Linux / macOS and know your way around command line, you may also flash your USB stick or SD card with `dd`. You can identify which device corresponds to your USB stick or SD card with `fdisk -l` or `lsblk`. A typical SD card name is something like `/dev/mmcblk0`. BE CAREFUL and make sure you got the right name.
|
||||
|
||||
Then run :
|
||||
|
||||
```bash
|
||||
# Replace /dev/mmcblk0 if the name of your device is different...
|
||||
dd if=/path/to/yunohost.img of=/dev/mmcblk0
|
||||
```
|
||||
|
||||
### Burning a CD/DVD
|
||||
|
||||
For older devices, you might want to burn a CD/DVD. The software to use depends on your operating system.
|
||||
|
||||
* On Windows, use [ImgBurn](http://www.imgburn.com/) to write the image file on the disc
|
||||
|
||||
* On macOS, use [Disk Utility](http://support.apple.com/kb/ph7025)
|
||||
|
||||
* On GNU/Linux, you have plenty of choices, like [Brasero](https://wiki.gnome.org/Apps/Brasero) or [K3b](http://www.k3b.org/)
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
title: Installation graphique
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/boot_and_graphical_install'
|
||||
---
|
||||
|
||||
Maintenant que vous possédez un support YunoHost, vous pouvez procéder à l’installation.
|
||||
|
||||
## <small>1.</small> Brancher le câble réseau
|
||||
|
||||
Si vous souhaitez que la configuration réseau soit configurée automatiquement, vous devez brancher votre serveur avec un câble **Ethernet** directement **derrière votre routeur (ou box) principal**.
|
||||
|
||||
Les connexions sans-fil ne sont pas supportées pour le moment, et si vous utilisez des routeurs intermédiaires, l’ouverture des ports réseau ne se fera pas automatiquement : votre serveur ne sera pas accessible depuis l’extérieur.
|
||||
|
||||
## <small>2.</small> Démarrer sur le CD/la clé USB
|
||||
|
||||
Démarrez votre serveur avec la clé USB ou le CD-ROM inséré, et sélectionnez-le comme **périphérique de démarrage** en pressant l’une des touches suivantes (dépendant de votre ordinateur) :
|
||||
```<Échap>```, ```<F9>```, ```<F10>```, ```<F11>```, ```<F12>``` or ```<Suppr>```
|
||||
|
||||
## <small>3.</small> Lancer l’installation graphique
|
||||
|
||||
Vous devriez voir un écran comme ça :
|
||||
|
||||

|
||||
|
||||
|
||||
* Sélectionnez `Graphical install`
|
||||
|
||||
* Sélectionnez votre langue, votre localisation et votre agencement de clavier.
|
||||
|
||||
* Si un écran de partitionnement apparaît, confirmez simplement.
|
||||
|
||||
!! **Attention** : Cette opération effacera totalement les données sur votre disque dur
|
||||
|
||||
* Laissez l’installateur faire le reste, il téléchargera les paquets requis et les installera.
|
||||
|
||||
!!! Si cette opération échoue, vous avez probablement un problème de connexion à Internet. Vérifiez que votre serveur est bien branché et réessayez.
|
||||
|
||||
* L’ordinateur devrait redémarrer automatiquement à la fin de l’installation.
|
||||
|
||||
## <small>4.</small> Log in
|
||||
|
||||
Après avoir redémarré, votre machine devrait afficher un écran noir avec
|
||||
quelques mots vous invitant à vous identifier. Vous pouvez utiliser les
|
||||
identifiants suivants :
|
||||
|
||||
* User: **root**
|
||||
* Password: **yunohost**
|
||||
|
||||
## <small>5.</small> Procéder à la post-installation
|
||||
|
||||
[div class="btn btn-lg btn-default"] [Documentation de la post-installation](/postinstall) [/div]
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
---
|
||||
title: Graphical installation
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/boot_and_graphical_install'
|
||||
---
|
||||
|
||||
Now that your YunoHost install medium, you can start with the installation.
|
||||
|
||||
## 1. Plug the network cable
|
||||
|
||||
If you want the network configuration to be set up automatically, you have to plug your server with an **Ethernet** cable **right behind your main router**.
|
||||
|
||||
The wireless connections are not supported yet, and if you use intermediate routers, the network ports opening will not be automatic: Your server will not be accessible externally.
|
||||
|
||||
## 2. Boot on CD / USB stick
|
||||
|
||||
Boot up your server with the USB stick or a CD-ROM inserted, and select it as **bootable device** by pressing one of the following keys (hardware specific):
|
||||
```<ESC>```, ```<F9>```, ```<F10>```, ```<F11>```, ```<F12>``` or ```<DEL>```
|
||||
|
||||
## 3. Launch graphical installation
|
||||
|
||||
You should see a screen like this:
|
||||
|
||||

|
||||
|
||||
1. Select `Graphical install`
|
||||
2. Select your language, your location and your keyboard layout
|
||||
3. If a partitioning screen appears, confirm.
|
||||
!! This will totally erase the data on your hard drive
|
||||
4. Let the installer do the rest, it will download required packages and install them.
|
||||
|
||||
! If it fails, you probably have an Internet connection issue.
|
||||
! Check that your computer is physically connected and retry.
|
||||
|
||||
5. It should reboot automatically.
|
||||
|
||||
## 4. Log in
|
||||
|
||||
After the reboot, you should see a black screen with a few words asking you to
|
||||
log in. You can log with the following credentials :
|
||||
|
||||
* User: `root`
|
||||
* Password: `yunohost`
|
||||
|
||||
## 5. Proceed to post-installation
|
||||
|
||||
[div class="btn btn-lg btn-default"] [Post-install documentation](/administrate/postinstall) [/div]
|
||||
|
||||
|
|
@ -7,72 +7,113 @@ routes:
|
|||
default: '/install'
|
||||
---
|
||||
|
||||
On which hardware do you want install Yunohost ?
|
||||
<select>
|
||||
<option value="" disabled>An ARM board (raspberry pi, olinuxino...)
|
||||
<option id="install_internetcube" value="">→ An internetcube with .cube VPN
|
||||
<option id="install_rpi2p" value="">→ A Rpi 2, 3 or 4
|
||||
<option id="install_arm_supported" value="">→ An Orange Pi PC+ / Olinuxino Lime 1&2
|
||||
<option id="install_rpi1" value="">→ A Rpi 1 (no xmpp features)
|
||||
<option id="install_rpi0" value="">→ A Rpi 0 (no xmpp features)
|
||||
<option id="install_arm_others" value="">→ An other arm board
|
||||
<option id="install_x86athome" value="">→ A regular computer
|
||||
<option value="" disabled>A dedicated or a virtual private server
|
||||
<option id="install_vpsdebian10" value="">→ with debian 10
|
||||
<option id="install_vpsyunohost" value="">→ with yunohost pre-installed
|
||||
<option id="install_virtualbox" value="">virtualbox
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Il existe plusieurs manières d’installer YunoHost. La méthode d’installation diffère légèrement si vous souhaitez l’installer chez vous ou à distance, et du matériel utilisé : **[voir le matériel compatible](/hardware)**
|
||||
|
||||
Cette page liste plusieurs types d’installations, classés par catégories.
|
||||
|
||||
---
|
||||
|
||||
## Essayer
|
||||
|
||||
[div class="flex-container"]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Serveur de démo"][/figure]](/try)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Essayer dans une machine virtuelle"][/figure]](/install_on_virtualbox)
|
||||
[/div]
|
||||
|
||||
[/div]
|
||||
|
||||
## Installer à la maison
|
||||
|
||||
[div class="flex-container"]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Sur un Raspberry Pi"][/figure]](/install_on_raspberry)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Sur une carte ARM"][/figure]](/install_on_arm_board)
|
||||
[/div]
|
||||
<h1 style="font-weight: 100">Essayer</h1>
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Sur un ordinateur standard"][/figure]](/install_iso)
|
||||
[/div]
|
||||
<div class="row">
|
||||
|
||||
[/div]
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/try"><img height=150 src="/images/logo.png" style="vertical-align:bottom"><b><p>Serveur de démo</p></b></a>
|
||||
</div>
|
||||
|
||||
## Installer à distance
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/install_on_virtualbox"><img src="/images/virtualbox.png" height=150 style="vertical-align:bottom"><b><p>Essayer dans une machine virtuelle</p></b></a>
|
||||
</div>
|
||||
|
||||
!!! [fa=fa-heart /] Des FAI associatifs près de chez vous sont peut-être capable de vous fournir un *Serveur Privé Virtuel* (VPS), géré par des humains qui respectent les utilisateurs et la [Neutralité du Net](https://fr.wikipedia.org/wiki/Neutralit%C3%A9_du_r%C3%A9seau) ! Voir [cette page](https://db.ffdn.org/) pour plus d'informations.
|
||||
</div>
|
||||
|
||||
[div class="flex-container"]
|
||||
<br>
|
||||
|
||||
[div class="flex-child"]
|
||||
---
|
||||
|
||||
[[figure caption="Sur un serveur dédié ou virtuel (VPS)"][/figure]](/install_on_vps)
|
||||
<h1 style="font-weight: 100">Installer à la maison</h1>
|
||||
|
||||
[/div]
|
||||
<div class="row">
|
||||
|
||||
[/div]
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/install_on_raspberry"><img src="/images/raspberrypi.jpg" height=150 style="vertical-align:bottom"><b><p>Sur un Raspberry Pi</p></b></a>
|
||||
</div>
|
||||
|
||||
## Avancé / autres
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/install_on_arm_board"><img src="/images/olinuxino.jpg" height=150 style="vertical-align:bottom; padding:20px"><b><p>Sur une carte ARM</p></b></a>
|
||||
</div>
|
||||
|
||||
[div class="flex-container"]
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/install_iso"><img src="/images/computer.png" height=150 style="vertical-align:bottom"><b><p>Sur un ordinateur standard</p></b></a>
|
||||
</div>
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Sur Debian 10/Buster"][/figure]](/install_on_debian)
|
||||
[/div]
|
||||
</div>
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Environnement de dev avec LXD/LXC"][/figure]](/dev)
|
||||
[/div]
|
||||
<br>
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="(Non-officiel !) Images docker"][/figure]](/docker)
|
||||
[/div]
|
||||
---
|
||||
|
||||
[/div]
|
||||
<h1 style="font-weight: 100">Installer à distance</h1>
|
||||
|
||||
<div class="alert alert-info" markdown="1">
|
||||
<span class="glyphicon glyphicon-heart"></span> Des FAI associatifs près de chez vous sont peut-être capable de vous fournir un *Serveur Privé Virtuel* (VPS), géré par des humains qui respectent les utilisateurs et la [Neutralité du Net](https://fr.wikipedia.org/wiki/Neutralit%C3%A9_du_r%C3%A9seau) ! Voir [cette page](https://db.ffdn.org/) pour plus d'informations.
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="block-center text-center">
|
||||
<a href="/install_on_vps"><img src="/images/vps.png" height=150 style="vertical-align:bottom; text-align:center"><b><p>Sur un serveur dédié ou virtuel (VPS)</p></b></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
<h1 style="font-weight: 100">Avancé / autres</h1>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/install_on_debian"><img height=150 src="/images/debian-logo.png" style="vertical-align:bottom">
|
||||
<b><p>Sur Debian 10/Buster</p></b></a>
|
||||
</div>
|
||||
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/dev"><img src="/images/lxc.png" height=150 style="vertical-align:bottom"><b><p>Environnement de dev avec LXD/LXC</p></b></a>
|
||||
</div>
|
||||
|
||||
<div class="col col-md-3 text-center">
|
||||
<a href="/docker"><img src="/images/docker.png" height=150 style="vertical-align:bottom"><b><p>(Non-officiel !) Images docker</p></b></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -20,7 +20,7 @@ This page lists a few installation guides.
|
|||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="Try with VirtualBox"][/figure]](/install_on_virtualbox)
|
||||
[[figure caption="Try with VirtualBox"][/figure]](/install_process/hardware:virtualbox)
|
||||
[/div]
|
||||
|
||||
[/div]
|
||||
|
@ -30,15 +30,15 @@ This page lists a few installation guides.
|
|||
[div class="flex-container"]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="On a Raspberry Pi"][/figure]](/install_on_raspberry)
|
||||
[[figure caption="On a Raspberry Pi"][/figure]](/install_process/hardware:rpi2plus)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="On an ARM board"][/figure]](/install_on_arm_board)
|
||||
[[figure caption="On an ARM board"][/figure]](/install_process/hardware:arm_sup)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="On a regular computer"][/figure]](/install_iso)
|
||||
[[figure caption="On a regular computer"][/figure]](/install_process/hardware:regular)
|
||||
[/div]
|
||||
|
||||
[/div]
|
||||
|
@ -51,7 +51,7 @@ This page lists a few installation guides.
|
|||
|
||||
[div class="flex-child"]
|
||||
|
||||
[[figure caption="On a dedicated or virtual private server"][/figure]](/install_on_vps)
|
||||
[[figure caption="On a dedicated or virtual private server"][/figure]](/install_process/hardware:vps_debian)
|
||||
|
||||
[/div]
|
||||
|
||||
|
@ -62,7 +62,7 @@ This page lists a few installation guides.
|
|||
[div class="flex-container"]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="On Debian 10 Buster"][/figure]](/install_on_debian)
|
||||
[[figure caption="On Debian 10 Buster"][/figure]](/install_process/hardware:vps_debian)
|
||||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
|
@ -70,7 +70,7 @@ This page lists a few installation guides.
|
|||
[/div]
|
||||
|
||||
[div class="flex-child"]
|
||||
[[figure caption="(Non-official!) Docker images"][/figure]](/docker)
|
||||
[[figure caption="(Non-official!) Docker images"][/figure]](/install_process/hardware:docker)
|
||||
[/div]
|
||||
|
||||
[/div]
|
||||
|
|
|
@ -1,72 +0,0 @@
|
|||
---
|
||||
title: Post-instalación
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/postinstall'
|
||||
---
|
||||
|
||||
La etapa que llamamos « **post-instalación** » de hecho es la etapa de configuración inicial de YunoHost. Se ejecuta después de la **instalación** del sistema mismo.
|
||||
|
||||
NB : Si estàs en el proceso de instalar de nuevo a un servidor **y** que ya tienes un archivo creada por yunohost, no debes seguir a està etapa y encontro seguir a la seccion "Restoring during the postinstall" de la pagina [backup](/backup).
|
||||
|
||||
### Vía la interfaz web
|
||||
|
||||
Puedes acceder a la post-instalación gráfica entrando en un navegador web :
|
||||
* la dirección **IP local de tu servidor** si éste está conectado a tu red local (en general `192.168.x.x`, ver ['Encontrar mi IP' en la página sobre SSH](/ssh))
|
||||
* la dirección **IP pública de tu servidor** si éste no está conectado a tu red local (por ejemplo, si es un VPS, tu proveedor debería haberte transmitido la dirección IP).
|
||||
|
||||
Durante la primera visita, encontrarás muy probablemente una advertencia de seguridad relacionada al certificado utilizado. De momento, tu servidor utiliza un certificado autofirmado. Después, podrás utilizar un certificado automáticamente reconocido por los navegadores como descrito en la página sobre los [Certificados](/certificate). Mientras tanto, añade una excepción de seguridad para aceptar el certificado vigente.
|
||||
|
||||
Luego, llegas en esta página :
|
||||
|
||||

|
||||
|
||||
*<p class="text-muted">Vistazo de la post-instalación Web</p>*
|
||||
|
||||
### Vía la interfaz de línea de comando
|
||||
|
||||
También puedes acceder a la post-instalación entrando el comando `yunohost tools postinstall` directamente en el servidor o [en SSH](/ssh).
|
||||
|
||||

|
||||
|
||||
*<p class="text-muted">Vistazo de la post-instalación con línea de comando</p>*
|
||||
|
||||
## Informaciones solicitadas
|
||||
|
||||
### Dominio principal
|
||||
|
||||
Es el nombre de dominio que permitirá el acceso a tu servidor así como al portal de autenticación de los usuarios. Entonces estará **visible por todo el mundo** : elígelo en consecuencia.
|
||||
|
||||
* YunoHost te propone un DNS dinámico, proveando nombres de dominio del tipo *midominio.nohost.me*, *midominio.noho.st* o *midominio.ynh.fr*. Si no posees un nombre de dominio y/o que quieres aprovechar de este servicio, elige un dominio terminando con `.nohost.me`, `.noho.st` o `.ynh.fr`. Si no está utlizado ya, el dominio automáticamente estará vinculado a tu servidor YunoHost, y no tendrás más etapas de configuración.
|
||||
|
||||
* Si, en cambio, dominas la noción de **DNS**, puedes utilizar tu propio nombre de dominio. En este caso, refiérete a la página [yunohost.org/dns](/dns) por más información.
|
||||
|
||||
* Si no tienes nombre de dominio y que no quieres uno que acabe con *.nohost.me*, *.noho.st* ou *.ynh.fr*, puedes utilizar un dominio local. Más información sobre cómo [acceder a tu servidor desde la red local](/dns_local_network).
|
||||
|
||||
|
||||
### Contraseña de administración
|
||||
|
||||
Es la contraseña que permitirá acceder a la [interfaz de administración](/admin) de tu servidor. También podrás utilizarla para conectarte remotamente vía **SSH**, o vía **SFTP** para transferir archivos.
|
||||
|
||||
De manera general, ésta es la **llave de entrada en tu sistema**, pues piensa en **[elegirla atentamente](https://es.wikihow.com/escoger-una-contrase%C3%B1a-segura)**.
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
## Enhorabuena !
|
||||
|
||||
Si llegas aquí después de haber visto “YunoHost fue instalado con éxito" desde tu navegador ou tu interfaz de línea de comando, pues felicitaciones !
|
||||
|
||||
|
||||
### ¿ Y ahora ?
|
||||
|
||||
- Si te auto-alojas en casa y sin VPN, tienes que asegurarte que [los puertos de tu caja internet estén redirigidos](/isp_box_config) ;
|
||||
- Si utilizas tu propio nombre de dominio (i.e. que no sea un nohost.me /
|
||||
noho.st), tienes que [configurar el nombre de dominio según la configuración recomendada](/dns_config) ;
|
||||
- Si no puedes configurar el nombre de dominio de momento (porque todavía no lo has comprado, ou porque es un dominio test), puedes solucionar temporalmente el problema con las instrucciones del último párrafo [aquí](/dns_local_network) ;
|
||||
- No te asustes demasiado por [la advertencia a propósito del certificado](/certificate), tendrás la posibilidad de obtener un certificado Let's Encrypt :).
|
||||
- Echa un vistazo a las [aplicaciones disponibles](/apps) !
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
---
|
||||
title: Post-installation
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/postinstall'
|
||||
---
|
||||
|
||||
L’étape appelée « **post-installation** » est en fait l’étape de configuration initiale de YunoHost. Il faut l’exécuter après l’**installation** du système en lui-même.
|
||||
|
||||
NB : Si vous êtes en train de restaurer un système complet **et** que vous disposez d'un fichier de sauvegarde généré par YunoHost, vous devez sauter cette étape et vous référer à la section "Restaurer durant la postinstallation" sur la page [sauvegardes](/backup).
|
||||
|
||||
### Via l'interface web
|
||||
|
||||
Vous pouvez accéder à la post-installation graphique en entrant dans un navigateur web :
|
||||
* l'adresse **`yunohost.local`** OU l’adresse **IP locale de votre serveur** si celui-ci est connecté à votre réseau local (généralement `192.168.x.x`, voir ['Trouver son IP locale'](/finding_the_local_ip))
|
||||
* l’adresse **IP publique de votre serveur** si celui-ci n’est pas connecté à votre réseau local (par exemple dans le cas d'un VPS, votre fournisseur devrait vous avoir transmis l'adresse IP).
|
||||
|
||||
Lors de la première visite, vous rencontrerez très probablement un avertissement de sécurité lié au certificat utilisé. Pour le moment, votre serveur utilise un certificat auto-signé. Vous pourrez plus tard ajouter un certificat automatiquement reconnus par les navigateurs comme décrit dans la page sur les [Certificats](/certificate). En attendant, ajoutez une exception de sécurité pour accepter le certificat actuel.
|
||||
|
||||
Vous arrivez ensuite sur cette page :
|
||||
|
||||

|
||||
|
||||
*<p class="text-muted">Aperçu de la post-installation Web</p>*
|
||||
|
||||
### Via la ligne de commande
|
||||
|
||||
Vous pouvez aussi y accéder en entrant la commande `yunohost tools postinstall` directement sur le serveur ou [en SSH](/ssh).
|
||||
|
||||

|
||||
|
||||
*<p class="text-muted">Aperçu de la post-installation en ligne de commande</p>*
|
||||
|
||||
## Informations demandées
|
||||
|
||||
### Domaine principal
|
||||
|
||||
C’est le nom de domaine qui permettra l’accès à votre serveur ainsi qu’au portail d’authentification des utilisateurs. Il sera donc **visible par tout le monde**, choisissez-le en conséquence.
|
||||
|
||||
* YunoHost propose un service de DNS dynamique fournissant des noms de domaine de type *mondomaine.nohost.me*, *mondomaine.noho.st* ou *mondomaine.ynh.fr*. Si vous ne possédez pas de nom de domaine et/ou que vous souhaitez profiter de ce service, choisissez un domaine se terminant en `.nohost.me`, `.noho.st` ou `.ynh.fr`. S'il n'est pas déjà utilisé, le domaine sera automatiquement rattaché à votre serveur YunoHost, et vous n’aurez pas d’étape de configuration supplémentaire.
|
||||
|
||||
* Si en revanche vous maîtrisez la notion de **DNS**, vous pouvez utiliser votre propre nom de domaine. Dans ce cas, référez-vous à la page [yunohost.org/dns](/dns) pour plus d’informations.
|
||||
|
||||
* Si vous n'avez pas de nom de domaine et que vous n'en voulez pas en *mondomaine.nohost.me*, *mondomaine.noho.st* ou *mondomaine.ynh.fr*, vous pouvez utilisez un domaine local. Plus d'infos sur comment [accéder à son serveur depuis le réseau local](/dns_local_network).
|
||||
|
||||
|
||||
### Mot de passe d’administration
|
||||
|
||||
C’est le mot de passe qui vous permettra d’accéder à l’[interface d’administration](/admin) de votre serveur. Vous pourrez également l’utiliser pour vous connecter à distance via **SSH**, ou en **SFTP** pour transférer des fichiers.
|
||||
|
||||
De manière générale, c’est la **clé d’entrée à votre système**, pensez donc à la **[choisir attentivement](http://www.commentcamarche.net/faq/8275-choisir-un-bon-mot-de-passe)**.
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
## Félicitations !
|
||||
|
||||
Si vous arrivez ici après avoir vu "YunoHost a été installé avec succès" depuis
|
||||
votre navigateur ou la ligne de commande, alors félicitations !
|
||||
|
||||
### Et maintenant ?
|
||||
|
||||
- Si vous vous auto-hébergez à la maison et sans VPN, il faut vous assurer
|
||||
de bien [rediriger les ports de votre box internet](/isp_box_config) ;
|
||||
- Si vous utilisez votre propre nom de domaine (c.-à-d. pas un nohost.me /
|
||||
noho.st), il vous faut [configurer le nom de domaine d'après la configuration
|
||||
recommandée](/dns_config) ;
|
||||
- Si vous ne pouvez pas configurer le nom de domaine pour le moment (parce qu'il
|
||||
n'est pas encore acheté, ou parce que c'est un domaine de test), vous pouvez
|
||||
contourner temporairement le problème avec les instructions du dernier
|
||||
paragraphe [ici](/dns_local_network) ;
|
||||
- Ne soyez pas trop effrayé par [l'avertissement à propos du
|
||||
certificat](/certificate), vous aurez probablement la possibilité
|
||||
d'installer un certificat Let's Encrypt :).
|
||||
- Jetez un œil aux [applications disponibles](/apps) !
|
|
@ -1,71 +0,0 @@
|
|||
---
|
||||
title: Post-Installation
|
||||
template: docs
|
||||
taxonomy:
|
||||
category: docs
|
||||
routes:
|
||||
default: '/postinstall'
|
||||
---
|
||||
|
||||
The step called "**post-installation**" is actually the initial configuration of YunoHost. It has to be done just after the installation of the system itself.
|
||||
|
||||
! If you are in the process of restoring a server from scratch **and** you have a yunohost-made backup, you can skip this process and follow through with the "restoring during the postinstall" step, in the [backup](/backup) page.
|
||||
|
||||
### From the web interface
|
||||
|
||||
You can perform the post-installation with the web interface by entering in your browser :
|
||||
* **`yunohost.local`** OR **the local IP address of your server** if it is on your local network (e.g. at home !). The address typically looks like `192.168.x.y` (see [finding your local IP](/finding_the_local_ip))
|
||||
* **the public IP address of your server** if your server is not on your local network. Typically, if you own a VPS, your VPS provider should have given you the IP of the server.
|
||||
|
||||
During the first visit, you will very likely encounter a security warning related to the certificate used by the server. For now, your server uses a self-signed certificate. You will later be able to add a certificate automatically recognized by web browsers as described in the [certificate documentation](/certificate). For now, you should add a security exception to accept the current certificate.
|
||||
|
||||
You should then land on this page :
|
||||
|
||||
[figure caption="Preview of the Web post-installation"][/figure]
|
||||
|
||||
### From the command line
|
||||
|
||||
You can also perform the postinstallation with the command `yunohost tools postinstall` directly on the server, or [via SSH](/ssh).
|
||||
|
||||
|
||||
[figure caption="Preview of the command-line post-installation"][/figure]
|
||||
|
||||
## Asked information
|
||||
|
||||
### Main domain
|
||||
|
||||
This is the first domain name linked to your YunoHost server, but also the one which will be used by your server's users to access the **authentication portal**. It will thus be **visible by everyone**, choose it wisely.
|
||||
|
||||
* If you do not have a domain name, or if you want to use the YunoHost's DynDNS service, choose a sub-domain of **.nohost.me**, **.noho.st** or **.ynh.fr** (e.g. `homersimpson.nohost.me`). Provided that it's not already taken, the domain will be configured automatically and you won't need any further configuration step.
|
||||
|
||||
* If you do know what **DNS** is, you probably want to configure your own domain name here. In this case, please refer to the [DNS page](/dns) page for more informations.
|
||||
|
||||
* If you don't own a domain name and don't want a **.nohost.me**, **.noho.st** or **.ynh.fr**, you can use a local domain. More information on how to setup a local domain can be found [here](/dns_local_network).
|
||||
|
||||
### Administration password
|
||||
|
||||
This password will be used to access to your server's [administration interface](/admin). You would also use it to connect via **SSH** or **SFTP**. In general terms, this is your **system's key**, [choose it carefully](http://www.wikihow.com/Choose-a-Secure-Password).
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
## Congratz!
|
||||
|
||||
If you got so far and saw 'YunoHost has been successfully installed' (web
|
||||
postinstall) or 'YunoHost has been correctly configured', then congratulations!
|
||||
|
||||
### What now ?
|
||||
|
||||
- If you're self-hosting at home and without a VPN, you need to [make sure to
|
||||
correctly forward ports on your router/Internet box](/isp_box_config) ;
|
||||
- If you're using your own domain name (i.e. not a .nohost.me / .noho.st), you
|
||||
need to [configure it according to the recommended DNS
|
||||
configuration](/dns_config) ;
|
||||
- If you cannot configure your domain name yet (because you didn't register it
|
||||
yet, or because this is a test domain), see last paragraph
|
||||
[here](/dns_local_network) for a workaround ;
|
||||
- Don't be too afraid of the [certificate warning](/certificate), you'll probably
|
||||
be able to install a Let's Encrypt certificate :).
|
||||
- Have a look at [the available apps](/apps) !
|
||||
|
Loading…
Add table
Reference in a new issue