mirror of
https://github.com/Start9Labs/documentation.git
synced 2026-04-01 21:13:10 +00:00
* Link fixes, FAQ maintenance, minor copy fixes * Remove device limitations (yay), several build and link fixes, refactor hardware upgrades, add generalized SSD migrations * Update drive-upgrade.rst * Update site/source/support/faq/faq-basic-use.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-bitcoin.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-bitcoin.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-bitcoin.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-general.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-general.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-lightning.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-lightning.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-services.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-startos.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-startos.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-startos.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-startos.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/support/faq/faq-troubleshooting.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/user-manual/upgrade-hardware/naspi-ssd-upgrade.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> * Update site/source/user-manual/upgrade-hardware/naspi-ssd-upgrade.rst Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com> --------- Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.com>
43 lines
1.3 KiB
ReStructuredText
43 lines
1.3 KiB
ReStructuredText
.. _backup-advanced:
|
|
|
|
=====================
|
|
Advanced Backup Tools
|
|
=====================
|
|
|
|
.. warning:: The following are advanced tools and using them is only advised when under the instruction of a Start9 Support Technician. USE AT YOUR OWN RISK - these operations are not supported outside of the context of support.
|
|
|
|
.. _backup-mount:
|
|
|
|
Mount a Backup
|
|
--------------
|
|
|
|
#. :ref:`Setup SSH Access<ssh>` and connect to your server via SSH. Elevate yourself to root once in:
|
|
|
|
.. code-block:: bash
|
|
|
|
sudo -i
|
|
|
|
#. Any previously added Network Folder backup location (or physical drive) will be available. Enter the following command:
|
|
|
|
.. code-block:: bash
|
|
|
|
embassy-cli backup target list
|
|
|
|
.. figure:: /_static/images/backups/backup-target-list.png
|
|
:width: 60%
|
|
|
|
#. Select the backup target from the available list. In this example, we could use either ``disk-/dev/sdb1`` or ``cifs-1``:
|
|
|
|
.. code-block:: bash
|
|
|
|
embassy-cli backup target mount disk-/dev/sdb1 "YourMasterPasswordGoesHere"
|
|
|
|
.. figure:: /_static/images/backups/backup-mount.png
|
|
:width: 60%
|
|
|
|
The terminal will print the directory where your decrypted backup is now mounted.
|
|
|
|
#. `ls` the directory to inspect it, and continue any other operations necessary:
|
|
|
|
.. figure:: /_static/images/backups/backup-mount-ls.png
|
|
:width: 60% |