diff --git a/content/post/18-create-nas-server-with-truenas.md b/content/post/18-create-nas-server-with-truenas.md index 8de4f7c..0c24694 100644 --- a/content/post/18-create-nas-server-with-truenas.md +++ b/content/post/18-create-nas-server-with-truenas.md @@ -170,11 +170,22 @@ I could also create a `Cloud Sync Task` but I already have Duplicati managing th ## Use of TrueNAS Now my TrueNAS instance is configured, I need to plan the migration of the datas from my current NFS server to TrueNAS. - ### Data migration +For each of my current NFS shares, on a client, I mount the new NFS share to synchronize the data: +``` +sudo mkdir /new_photos +sudo mount 192.168.88.30:/mnt/storage/media/photos /new_photos +sudo rsync -a --info=progress2 /data/photo/ /new_photo +``` + +At the end, I could decommission my old NFS server on the LXC. The dataset layout after migration looks like this: +![Dataset layout in TrueNAS](img/truenas-datasets-layout.png) + ### Android application +Out of curiosity, I've checked on the Google Play store +![nasdeck-android-app.png](img/nasdeck-android-app.png) --- ## Conclusion \ No newline at end of file diff --git a/static/img/nasdeck-android-app.png b/static/img/nasdeck-android-app.png new file mode 100644 index 0000000..78487dd Binary files /dev/null and b/static/img/nasdeck-android-app.png differ diff --git a/static/img/truenas-datasets-layout.png b/static/img/truenas-datasets-layout.png new file mode 100644 index 0000000..8283504 Binary files /dev/null and b/static/img/truenas-datasets-layout.png differ