mirror of
https://github.com/Start9Labs/documentation.git
synced 2026-03-30 04:01:59 +00:00
forgot password flow and cleaning up
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
*****
|
||||
About
|
||||
*****
|
||||
|
||||
``Embassy > About``
|
||||
|
||||
This page contains static information about your device, such as its ID, Tor Address, and hardware specs.
|
||||
|
||||
.. figure:: /_static/images/about_screen.png
|
||||
:width: 90%
|
||||
:alt: Embassy about view
|
||||
|
||||
View of information about Embassy
|
||||
@@ -1,11 +1,8 @@
|
||||
.. _alt-marketplace:
|
||||
|
||||
***********************
|
||||
Alternative Marketplace
|
||||
***********************
|
||||
|
||||
Embassy OS supports accessing alternative marketplaces by configuring a system file.
|
||||
Start9 Labs is not responsible for issues encountered by downloading unverified services from these alternative marketplaces.
|
||||
EmbassyOS supports accessing alternative marketplaces by configuring a system file. Start9 Labs is not responsible for issues encountered by downloading services from alternative marketplaces.
|
||||
|
||||
After SSH-ing into the Embassy, run the following commands::
|
||||
|
||||
|
||||
@@ -5,5 +5,4 @@ Developer Options
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
ssh-setup
|
||||
alt-marketplace
|
||||
ssh-setup
|
||||
@@ -4,10 +4,9 @@
|
||||
SSH Setup
|
||||
*********
|
||||
|
||||
``Embassy > Developer Options > SSH Keys``
|
||||
|
||||
#. Click ``Developer Options > SSH Keys``
|
||||
#. Click the ``+`` button in the lower right hand corner.
|
||||
#. Paste in your SSH key.
|
||||
#. You can now access your Embassy from the command line using ``ssh pi@<LAN URL>``
|
||||
|
||||
.. warning:: Adding an SSH key voids the device warranty. This is an advanced feature for developers and should ne used with caution.
|
||||
.. warning:: This is an advanced feature and should be used with caution. Start9 is not responsible for any damage you might cause through SSH access.
|
||||
@@ -1,10 +1,8 @@
|
||||
**************
|
||||
Embassy Config
|
||||
Config Options
|
||||
**************
|
||||
|
||||
``Embassy > Configure``
|
||||
|
||||
Here you can set custom configurations for your Embassy. Currently, changing the ``Device Name`` is the only option.
|
||||
Click ``config``. Here you can set custom configurations for your Embassy. Currently, changing the ``Device Name`` is the only option.
|
||||
|
||||
.. figure:: /_static/images/embassy_config.png
|
||||
:width: 90%
|
||||
|
||||
51
source/user-manuals/embassyos/forgot-password.rst
Normal file
51
source/user-manuals/embassyos/forgot-password.rst
Normal file
@@ -0,0 +1,51 @@
|
||||
***************
|
||||
Forgot Password
|
||||
***************
|
||||
|
||||
There is currently no way to reset you Embassy master password through a standard UI flow.
|
||||
|
||||
SSH/Linux
|
||||
=========
|
||||
|
||||
If you already have :ref:`SSH keys registered with your Embassy<ssh-setup>` **OR** you have access to a Linux computer, you can reset your Embassy password without losing any data.
|
||||
|
||||
* SSH:
|
||||
|
||||
* Use the command line to gain remote access to your Embassy, then run::
|
||||
|
||||
sudo sqlite3 /root/agent/start9_agent.sqlite3
|
||||
delete from account;
|
||||
.quit
|
||||
|
||||
* You can now use the Start9 Setup App to reclaim your Embassy and set a new password.
|
||||
|
||||
* Linux computer:
|
||||
|
||||
* Shut down your Embassy, disconnect from power, and remove the microSD card.
|
||||
* Insert the microSD card into your Linux computer and mount the drive::
|
||||
|
||||
mount [drive] [mount folder]
|
||||
|
||||
* Check if you have sqlite3 installed. If not, install it::
|
||||
|
||||
which sqlite3
|
||||
sudo apt insall sqlite3
|
||||
|
||||
* Run::
|
||||
|
||||
sudo sqlite3 [mount folder]/root/agent/start9_agent.sqlite3
|
||||
delete from account;
|
||||
.quit
|
||||
|
||||
* Unmount the microSD card::
|
||||
|
||||
umount [mount folder]
|
||||
|
||||
* Return the microSD card to your Embassy and power it on.
|
||||
* You can now use the Start9 Setup App to reclaim your Embassy and set a new password.
|
||||
|
||||
|
||||
No SSH/Linux
|
||||
============
|
||||
|
||||
The only way to regain access to your Emabssy is to :ref:`contact the Start9 dev team<contact>` directly to obtain a new operating system image. This is equivelent to a factory reset; all data will be lost.
|
||||
@@ -13,12 +13,11 @@ You can view and manage your Embassy inside the ``Embassy`` tab in the main menu
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
about
|
||||
monitor
|
||||
embassy-config
|
||||
updating
|
||||
wifi
|
||||
developer-options/index
|
||||
power
|
||||
notifications
|
||||
ssl
|
||||
ssl
|
||||
forgot-password
|
||||
@@ -1,13 +0,0 @@
|
||||
*******
|
||||
Monitor
|
||||
*******
|
||||
|
||||
``Embassy > Monitor``
|
||||
|
||||
Provides real-time statistics, such as temperature, CPU usage, memory and disk space.
|
||||
|
||||
.. figure:: /_static/images/embassy_metrics.png
|
||||
:width: 90%
|
||||
:alt: Embassy Metrics View
|
||||
|
||||
View of Embassy Metrics
|
||||
@@ -5,7 +5,6 @@ Power
|
||||
Restart
|
||||
=======
|
||||
|
||||
#. ``Embassy > Restart > 'Restart'``.
|
||||
#. Be patient while services shut down. A *tune* will play, indicating the shutdown is complete.
|
||||
#. A gentle *bep* will sound when the Embassy is powered back on.
|
||||
#. A *chime* will sound when the Embassy is ready to use.
|
||||
@@ -13,7 +12,6 @@ Restart
|
||||
Shutdown
|
||||
========
|
||||
|
||||
#. ``Embassy > Shutdown > 'Shutdown'``
|
||||
#. Be patient while services shut down. A *tune* will play, indicating the shutdown is complete.
|
||||
#. It is now safe to unplug the Embassy from power and the ethernet cable, if connected.
|
||||
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
Updating EmbassyOS
|
||||
******************
|
||||
|
||||
``Embassy > Check for Updates``
|
||||
|
||||
#. Click ``Check for Updates``
|
||||
#. If there is an update available, you will be prompted to install it.
|
||||
#. While updating, your Embassy will emit a gentle chime every 20 seconds.
|
||||
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
**********
|
||||
WiFi Setup
|
||||
**********
|
||||
|
||||
``Embassy tab > WiFi``
|
||||
***************
|
||||
Setting up WiFi
|
||||
***************
|
||||
|
||||
#. Click ``WiFi``.
|
||||
#. Click the ``+`` button in the lower right corner.
|
||||
#. Select the appropriate country.
|
||||
#. Enter your WiFi SSID and password.
|
||||
|
||||
Reference in New Issue
Block a user