Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Anonymous contrib] Adaptation du tuto suite à cette discussion: https://forum.yunohost.org/t/nextcloud-suivi-du-tutoriel-officiel-plus-dacces-aux-fichiers/10844 #1539

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 7 additions & 15 deletions app_nextcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,19 @@ chmod 775 -R /media/storage/nextcloud_data
Migrate your data to the new disk. To do this *(be patient, it can take a long time)*:

```bash
Case A: cp -ia /home/yunohost.app/nextcloud /media/storage
Case B: cp -ia /home/yunohost.app/nextcloud /media/storage/nextcloud_data
Case A: shopt -s dotglob
cp -a /home/yunohost.app/nextcloud/data /media/storage
Case B: shopt -s dotglob
cp -a /home/yunohost.app/nextcloud/data /media/storage/nextcloud_data
```

The `i` option allows you to ask yourself what to do if there is a file conflict, especially if you overwrite an old Owncloud or Nextcloud data folder.
To check that everything went well, compare what these two commands display (the content must be identical):

```bash
ls -la /home/yunohost.app/nextcloud

Case A: ls -al /media/storage
Case B: ls -al /media/storage/nextcloud_data/nextcloud
Case B: ls -al /media/storage/nextcloud_data
```

##### Configure Nextcloud
Expand All @@ -103,8 +104,8 @@ Look for the line:
That you modify:

```bash
CASE A:'datadirectory' =>'/media/storage',
CASE B:'datadirectory' =>'/media/storage/nextcloud_data/nextcloud/data',
CASE A:'datadirectory' =>'/media/storage/data',
CASE B:'datadirectory' =>'/media/storage/nextcloud_data/data',
```

Back up with `ctrl+x` then `y` or `o` (depending on your server locale).
Expand All @@ -115,15 +116,6 @@ Restart the web server:
systemctl start nginx
```

Add the.ocdata file
```bash
CASE A: nano /media/storage/.ocdata
CASE B: nano /media/storage/nextcloud_data/nextcloud/data/.ocdata
```
Add a space to the file to be able to save it

Back up with `ctrl+x` then `y` or `o` (depending on your server locale).

Run a scan of the new directory by Nextcloud:

```bash
Expand Down
24 changes: 8 additions & 16 deletions app_nextcloud_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,19 @@ chmod 775 -R /media/stockage/nextcloud_data
Migrez vos données vers le nouveau disque. Pour ce faire *(soyez patient, cela peut être long)* :

```bash
Cas A : cp -ir /home/yunohost.app/nextcloud /media/stockage
Cas B : cp -ir /home/yunohost.app/nextcloud /media/stockage/nextcloud_data
Cas A : shopt -s dotglob
cp -a /home/yunohost.app/nextcloud/data /media/stockage
Cas B : shopt -s dotglob
cp -a /home/yunohost.app/nextcloud/data /media/stockage/nextcloud_data
```

L'option `i` permet de vous demander quoi faire en cas de conflit de fichier, notamment si vous écrasez un ancien dossier de données Owncloud ou Nextcloud.
Pour vérifier que tout s'est bien passé, comparer ce qu'affichent ces deux commandes (le contenu doit être identique) :
Pour vérifier que tout s'est bien passé, comparez ce qu'affichent ces deux commandes (le contenu doit être identique) :

```bash
ls -la /home/yunohost.app/nextcloud

Cas A : ls -al /media/stockage
Cas B : ls -al /media/stockage/nextcloud_data/nextcloud
Cas B : ls -al /media/stockage/nextcloud_data
```

##### Configurer Nextcloud
Expand All @@ -103,8 +104,8 @@ Cherchez la ligne :
Que vous modifiez :

```bash
CAS A : 'datadirectory' => '/media/stockage',
CAS B : 'datadirectory' => '/media/stockage/nextcloud_data/nextcloud/data',
CAS A : 'datadirectory' => '/media/stockage/data',
CAS B : 'datadirectory' => '/media/stockage/nextcloud_data/data',
```

Sauvegardez avec `ctrl+x` puis `y` ou `o` (dépend de la locale de votre serveur).
Expand All @@ -115,15 +116,6 @@ Relancez le serveur web :
systemctl start nginx
```

Ajouter le fichier .ocdata
```bash
CAS A : nano /media/stockage/.ocdata
CAS B : nano /media/stockage/nextcloud_data/nextcloud/data/.ocdata
```
Ajouter un espace au fichier pour pouvoir le sauvegarder

Sauvegardez avec `ctrl+x` puis `y` ou `o` (dépend de la locale de votre serveur).

Lancez un scan du nouveau répertoire par Nextcloud:

```bash
Expand Down