# How to set up a Plex media server and access it remotely

## Introduction <a href="#introduction" id="introduction"></a>

[Plex](https://support.plex.tv/articles/200288286-what-is-plex/) is a powerful media server software tool that allows you to organize, watch, and access your personal media files from various devices. You can use Plex to conveniently manage various types of media — for example, videos, pictures, and music.

Self-hosting a media server, such as Plex, can be empowering because you are in full control of your files and don’t have to upload them to the cloud. However, if you want to access your media while away from home, you would need to resort to setting up [port forwarding](https://nordvpn.com/blog/port-forwarding/). While opening up ports in your firewall may not be too difficult, it can leave your home network vulnerable to malicious attacks.

With the use of Meshnet, you can connect your Plex media server and all client devices to a single virtual network. This configuration allows you to [remotely access](https://nordvpn.com/meshnet/remote-access/) your media from any device without exposing the server to outside connections.

This article contains instructions on how you can set up a media server using Plex on desktop devices and use Meshnet for secure remote connections.

## Before you begin <a href="#before-you-begin" id="before-you-begin"></a>

To use Plex as a media server, you are required to have a Plex account. You can create a free account on the [Plex sign-up page](https://www.plex.tv/sign-up/). Alternatively, you can use your Google, Facebook, or Apple account.

## Installing Plex media server <a href="#installing-plex-media-server" id="installing-plex-media-server"></a>

First, you need to install the Plex software on the device that you will use as the media server.

{% tabs %}
{% tab title="Windows" %}
To install the Plex media server on Windows:

1. Visit the [Plex downloads page](https://www.plex.tv/media-server-downloads/).
2. Download the Plex media server installer for Windows.
3. Follow the instructions provided by the installation wizard.
4. Click **Finish** to complete the installation and launch the Plex media server.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FQt89rIHzc0MBgitdFTmJ%2Fplex_win_install.png?alt=media&#x26;token=992a6148-5207-40ae-b190-6c26549eed59" alt="Clicking &#x27;Finish&#x27; in the Plex media server installer window." width="464"><figcaption></figcaption></figure></div>

{% endtab %}

{% tab title="macOS" %}
To install the Plex media server on macOS:

1. Visit the [Plex downloads page](https://www.plex.tv/media-server-downloads/).

2. Download the Plex media server installer for macOS.

3. Extract the downloaded ZIP archive by double-clicking it.

4. In Finder <img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FzliXwqqNaTS1rMMHONSJ%2Fmac-finder.svg?alt=media&#x26;token=0c2f76d2-bdd5-4321-b458-b4f777d05622" alt="" data-size="line">, drag and drop the **Plex media server** app to the **Applications** folder.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FdsQjUGaPwXatOX7BiMYt%2Fplex_mac_install.png?alt=media&#x26;token=0e4febec-5ac9-48d2-95e3-813726c2daa1" alt="Dragging the Plex media server application to the Applications folder."><figcaption></figcaption></figure></div>

5. Launch **Plex media server**.

6. From the menu bar, click the Plex icon and select **Open at login** to start the Plex media server with each system reboot.\
   \
   ![Selecting the 'Open at login' option from the Plex menu bar entry.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FtkSA2ezyPW8kLvenVM8Q%2Fplex_mac_install_login_item.png?alt=media\&token=a6a27fcb-18a7-4360-834e-9403206bf406)
   {% endtab %}

{% tab title="Linux" %}
{% hint style="info" %}
**Note**

In this article, Ubuntu 22.04.1 LTS distribution is used as an example.
{% endhint %}

There are various methods available for installing the Plex media server on a Linux machine. Depending on your setup, you may choose to install Plex using a graphical package manager, such as Ubuntu Software, or directly from a terminal window.

### Method 1: Using Ubuntu Software <a href="#method-1-using-ubuntu-software" id="method-1-using-ubuntu-software"></a>

Take the following steps to install the Plex media server using Ubuntu Software:

1. Open **Ubuntu Software**.

2. In the upper-left corner, click the search icon.

3. In the search field, enter `plexmediaserver` and select the matching result.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2Fv7bvUuwj4eof8iH6AfXu%2Fplex_linux_install_snap_search.png?alt=media&#x26;token=e2177854-fbb9-44a0-81ed-329c2ff2d776" alt="&#x27;plexmediaserver&#x27; search results in Ubuntu Software."><figcaption></figcaption></figure></div>

4. Click **Install**.

### Method 2: Using the terminal <a href="#method-2-using-the-terminal" id="method-2-using-the-terminal"></a>

Take the following steps to install the Plex media server using the terminal:

1. Open **Terminal**.
2. Run the following command to download and import the GPG key for the Plex downloads repository:<br>

   <pre class="language-bash" data-overflow="wrap"><code class="lang-bash">curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
   </code></pre>

   &#x20;
3. Add the Plex downloads repository to your system with this command:<br>

   <pre class="language-bash" data-overflow="wrap"><code class="lang-bash">echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
   </code></pre>

   &#x20;
4. Execute the following command to fetch all repository updates and install the Plex media server:<br>

   <pre class="language-bash" data-overflow="wrap"><code class="lang-bash">sudo apt update &#x26;&#x26; sudo apt install plexmediaserver
   </code></pre>

   &#x20;
5. To ensure that Plex is started with each system reboot, enable its daemon process with this command:<br>

   <pre class="language-bash" data-overflow="wrap"><code class="lang-bash">sudo systemctl enable plexmediaserver
   </code></pre>

   &#x20;
6. Run the following command to add the automatically created `plex` user to your user group.<br>

   <pre class="language-bash" data-overflow="wrap"><code class="lang-bash">sudo usermod -aG $USER plex
   </code></pre>

   &#x20;
7. Restart your device.
   {% endtab %}
   {% endtabs %}

### Access the Plex dashboard <a href="#access-the-plex-dashboard" id="access-the-plex-dashboard"></a>

Once the Plex media server has been installed, you can start the setup process by visiting its web interface.

1. Open your internet browser and navigate the following URL:\
   `localhost:32400/web/`<br>

2. Select your preferred login method and log in to your Plex account.

3. On the **How Plex works** page, click **Got it!**.

4. Enter a name for your Plex media server, clear the **Allow me to access my media outside my home** checkbox, and click **Next**.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2F3QTqP2l2xC1iUf6Lj8f8%2Fplex_create_server_name.png?alt=media&#x26;token=37c60dad-2166-4d09-a897-c2d284302b3a" alt="Entering the media server&#x27;s name, clearing the outside connections checkbox, and clicking Next in the Plex server setup screen." width="375"><figcaption></figcaption></figure></div>

5. Remove the pre-configured media libraries by clicking the X button next to them. Click **Next**.

6. Select **Done**.

## Adding media libraries <a href="#adding-media-libraries" id="adding-media-libraries"></a>

Upon finishing the server setup, you can freely navigate and customize your media server. Currently, you have not imported any media content to your server. You can choose to import locally stored media or shared media, such as network shares.

### Add locally stored media <a href="#add-locally-stored-media" id="add-locally-stored-media"></a>

To add media content that is stored on the server:

1. Open your Plex media server web interface.

2. In the upper-right corner, click the Settings button.\
   \
   ![Settings icon in the Plex web interface.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FcntI6By7AxgHK9l1UlKW%2Fplex_web_settings_icon.png?alt=media\&token=06dd1553-2b9c-468c-8642-6caf2e7adf7e)

   &#x20;

3. On the left, under **Manage**, click **Libraries**, and select **Add library**.

4. Select the type of media for this library. You can enter a custom name or leave the default one. Click **Next**.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2F35jvxzn8POPEzDFR1ycL%2Fplex_add_media_type.png?alt=media&#x26;token=afc18181-0dc8-45d3-a400-400d45ea532e" alt="Selecting the media library type in the &#x27;Add library&#x27; window and clicking &#x27;Next&#x27;." width="563"><figcaption></figcaption></figure></div>

5. Click **Browse for media folder**.

6. In the **Add folder** pop-up window, select the folder containing your media files. Alternatively, you can enter the folder’s path. Click **Add**.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FVjpwdRL6G2sfWxw0LkLl%2Fplex_add_media_location.png?alt=media&#x26;token=6c212ccc-536d-46b3-9b8a-5e3294241f1b" alt="Selecting a folder containing media files." width="563"><figcaption></figcaption></figure></div>

7. Click **Add library**.

You should see a new entry for your added media location on the Libraries page.

<div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FQMd5nCaLgHuQUPkAfzdt%2Fplex_add_media_added.png?alt=media&#x26;token=6d2e2ecf-b76e-445a-a377-89d98972e611" alt="New media library visible in the Libraries section of the settings menu."><figcaption></figcaption></figure></div>

{% hint style="success" %}
**Tip**

If content from your media library is not available after adding it, restart your computer.
{% endhint %}

### Add shared media <a href="#add-shared-media" id="add-shared-media"></a>

Asides from locally stored media, you can have [network shares from your network-attached storage](https://meshnet.nordvpn.com/~/changes/1En9yEoSh1cmyjIBsnEk/how-to/remote-files-media-access/remote-openmediavault-nas) (NAS) devices or [shared folders from your Meshnet peer devices](https://meshnet.nordvpn.com/~/changes/1En9yEoSh1cmyjIBsnEk/how-to/remote-files-media-access/set-up-folder-sharing). Media stored on such mediums must first be mounted to the operating system and only then can they be imported to the Plex media server.

{% tabs %}
{% tab title="Windows" %}
Instructions for mounting network shares on Windows can be found in the [Mount a network share section](https://meshnet.nordvpn.com/~/changes/1En9yEoSh1cmyjIBsnEk/how-to/set-up-folder-sharing/configure-and-access-shared-folders-on-windows#mount-a-network-share) of the "Configure and access shared folders on Windows" article.

After mounting the shared drive, follow the steps from the [Add locally stored media](#add-locally-stored-media) section to import your remote media files to your Plex media server.
{% endtab %}

{% tab title="macOS" %}
On macOS, the shared location is mounted automatically after you connect to it. To connect to a network share on macOS, refer to the [Access shared folders](https://meshnet.nordvpn.com/~/changes/1En9yEoSh1cmyjIBsnEk/how-to/set-up-folder-sharing/configure-and-access-shared-folders-on-macos#access-shared-folders) section of the "Configure and access shared folders on macOS" article.

After mounting the shared folder, the path to it will be as follows:

```bash
/Volumes/<NameOfShare>
```

**Example**

```bash
/Volumes/RemoteVideos
```

After mounting the shared drive, follow the steps from the [Add locally stored media](#add-locally-stored-media) section to import your remote media files to your Plex media server.

{% hint style="info" %}
**Note**

Upon restarting your Mac, you'll need to reconnect to the network share. Until you do so, the media content will be visible but unplayable.
{% endhint %}
{% endtab %}

{% tab title="Linux" %}
Instructions for mounting network shares on Linux can be found in the [Mount a network share ](https://meshnet.nordvpn.com/~/changes/1En9yEoSh1cmyjIBsnEk/how-to/set-up-folder-sharing/configure-and-access-shared-folders-on-linux#mount-a-network-share)section of the "Configure and access shared folders on Linux" article.

After mounting the shared drive, follow the steps from the [Add locally stored media](#add-locally-stored-media) section to import your remote media files to your Plex media server.
{% endtab %}
{% endtabs %}

### Enable automatic library updates <a href="#enable-automatic-library-updates" id="enable-automatic-library-updates"></a>

If you regularly expand your media library, manually initiating a library scan each time can be tiresome. To avoid this, you can enable automatic library updates.

1. Open your Plex media server web interface.

2. In the upper-right corner, click the Settings button.

3. On the left, under **Settings**, click **Library**.

4. Select the **Scan my library automatically** checkbox.<br>

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FBROsh4Eb3Rf3zIHcu3ug%2Fplex_auto_scan_lib.png?alt=media&#x26;token=8aac3ca4-e304-4efe-875d-1367b4799e65" alt="Selecting the &#x27;Scan my library automatically&#x27; option."><figcaption></figcaption></figure></div>

5. Scroll down and click **Save changes**.

Now your media library should be updated automatically each time there are any changes to its content.

## Allowing Meshnet connections <a href="#allowing-meshnet-connections" id="allowing-meshnet-connections"></a>

Since Meshnet IP addresses are using a different subnet than standard [local area networks](https://nordvpn.com/blog/what-is-lan/) (LANs), devices in your Meshnet running Plex applications cannot automatically discover the media server. However, Plex allows you to specify custom URLs that are used for server discovery. You can use this option to provide your Meshnet details and enable connections to your media server over Meshnet.

1. Open your Plex media server web interface.
2. In the upper-right corner, click the Settings button.
3. On the left, under **Settings**, select **Network**.
4. In the **Custom server access URLs**, enter the following string replacing `<NordName>` and `<MeshnetIP>` with your media server’s Nord name and Meshnet IP address, respectively:\
   \
   `http://<NordName>:32400/,http://<MeshnetIP>:32400/`\
   \
   **Example**\
   `http://secret.meerkat-atlas.nord:32400/,http://100.111.78.165:32400/`<br>
5. Click **Save changes**.

## Accessing your Plex media server over Meshnet <a href="#accessing-you-plex-media-server-over-meshnet" id="accessing-you-plex-media-server-over-meshnet"></a>

With your Plex media server fully set up, you can access it over Meshnet to watch your media content remotely.

### Method 1: Using an internet browser <a href="#method-1-using-an-internet-browser" id="method-1-using-an-internet-browser"></a>

A convenient method to access your Plex media server from any device without installing additional software is via an internet browser.

1. Copy the Nord name of your Plex media server from the NordVPN app.
2. Open your internet browser.
3. In the URL field, paste the copied Nord name followed by `:32400/` and press **Enter**.\
   \
   **Example**\
   `secret.meerkat-himalayas.nord:32400/`<br>
4. Log in to your Plex account.

Upon logging in, select your media library from the menu on the left. All of the content from the selected library should appear.

<div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2Fomb5EAKgnBviliIYAjz6%2Fplex_remote_watch.png?alt=media&#x26;token=d64052f9-c590-4f69-96cf-3ec83f9c3c85" alt="Local and remote video libraries available on the Plex web interface accessed over Meshnet."><figcaption></figcaption></figure></div>

### Method 2: Using the Plex app <a href="#method-2-using-the-plex-app" id="method-2-using-the-plex-app"></a>

Another way to use access your Plex media server is by using the Plex app on each individual device.

{% tabs %}
{% tab title="Windows" %}

#### Install Plex for Windows <a href="#install-plex-for-windows" id="install-plex-for-windows"></a>

To install Plex on Windows:

1. Visit the [Plex downloads](https://www.plex.tv/media-server-downloads/#plex-app) page.
2. Download the Plex for Windows app.\
   \
   ![Downloading the Plex for Windows app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FLtPjNKTmT5MXqSOLdTYf%2Fplex_app_win.png?alt=media\&token=ac93eb06-a7c2-40d9-a127-263f4edad076)

   &#x20;
3. Open the downloaded installer file.
4. Follow the installation wizard instructions to install Plex.

#### Connect to your media server <a href="#connect-to-your-media-server" id="connect-to-your-media-server"></a>

After installing the Plex app:

1. Launch **Plex**.
2. At the top of the page, click **Sign in** and select **Sign in** once more.
3. Log in to your Plex account and close the browser window.
4. Select the preferences for your media and click **Finish setup**.
5. From the menu on the left, click **More**.
6. Select your added media library.\
   \
   ![Local and remote video libraries available on the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2F5zwxE6wmiSyWDnH89YkZ%2Fplex_media_watch_win.png?alt=media\&token=2fdcbebb-63a1-4e2c-8601-3fa734bacaf5)
   {% endtab %}

{% tab title="Android" %}

#### Install Plex for Android <a href="#install-plex-for-android" id="install-plex-for-android"></a>

You can download and install the Plex app for Android from [Google Play](https://play.google.com/store/apps/details?id=com.plexapp.android\&hl=en_US).

#### Connect to your media server <a href="#connect-to-your-media-server.1" id="connect-to-your-media-server.1"></a>

After installing the Plex app:

1. Launch **Plex**.
2. Tap **Sign in**.
3. Log in to your Plex account.
4. Select your layout preferences and tap **Let’s go**.
5. In the upper-left corner, tap the menu icon and select your added media library.\
   \
   ![Local and remote video libraries available on the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FYKSTdXywEdABVTRvr13l%2Fplex_media_watch_android.png?alt=media\&token=f28dc42e-5d57-4197-af7a-e4449c1f05ce)
   {% endtab %}

{% tab title="iOS" %}

#### Install Plex for iOS <a href="#install-plex-for-ios" id="install-plex-for-ios"></a>

You can download and install the Plex app for iOS from the [App Store](https://apps.apple.com/us/app/plex-stream-movies-tv/id383457673).

#### Connect to your media server <a href="#connect-to-your-media-server.2" id="connect-to-your-media-server.2"></a>

After installing the Plex app:

1. Launch **Plex**.
2. Tap **Sign in**.
3. Log in to your Plex account.
4. On the **Plex needs local network access** screen, tap **Continue**\
   \
   ![Tapping 'Continue' in the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FjvudF0uvDWX2449pqQsW%2Fplex_ios_local_1.png?alt=media\&token=6da2853c-291a-47fa-b83d-67d066b1b44c)

   &#x20;
5. Tap **OK** to grant local network access to the Plex app.\
   \
   ![Tapping 'OK' to give Plex access to the local network.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FIocaHb9a3o3Ls3fNjb77%2Fplex_ios_local_2.png?alt=media\&token=c3ba2edf-f5e6-4add-9533-7153ccb27221)

   &#x20;
6. Select the preferences for your media and tap **Continue**.
7. In the upper-left corner, tap the menu icon and select your added media library.\
   \
   ![Local and remote video libraries available on the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2Fac6Iyki01FIk0RoFHNn7%2Fplex_media_watch_ios.png?alt=media\&token=a98fc509-4915-48ed-8265-5f97072b0fbc)
   {% endtab %}

{% tab title="macOS" %}

#### Install Plex for Mac <a href="#install-plex-for-mac" id="install-plex-for-mac"></a>

To install Plex on macOS:

1. Visit the [Plex downloads](https://www.plex.tv/media-server-downloads/#plex-app) page.
2. Download the Plex for Mac app.\
   \
   ![Downloading the Plex for Mac app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FaASVg47Hz4p7uMMTsKKP%2Fplex_app_mac.png?alt=media\&token=76570c2b-906d-4d6d-aceb-26af04548997)

   &#x20;
3. Extract the downloaded ZIP archive by double-clicking it.
4. Drag and drop the **Plex** app to the **Applications** folder.

#### Connect to your media server <a href="#connect-to-your-media-server.3" id="connect-to-your-media-server.3"></a>

After installing the Plex app:

1. Launch **Plex**.
2. At the top of the page, click **Sign in** and select **Sign in** once more.
3. Log in to your Plex account and close the browser window.
4. Select the preferences for your media and click **Finish setup**.
5. From the menu on the left, click **More**.
6. Select your added media library.\
   \
   ![Local and remote video libraries available on the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FwHp7nZLw6MrI6t8Gryqp%2Fplex_media_watch_macos.png?alt=media\&token=e64eadd1-a76f-402f-bdde-ff1837c48afe)
   {% endtab %}

{% tab title="Linux" %}

#### Install Plex for Linux <a href="#install-plex-for-linux" id="install-plex-for-linux"></a>

To install Plex on Linux:

1. Open **Terminal**.
2. Run the following command to install the Plex app:<br>

   ```
   sudo snap install plex-desktop
   ```

   <div align="left"><figure><img src="https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FPkQy6ifqMXMU178gGPkw%2Fplex_linux_install_snap_cli.png?alt=media&#x26;token=3fae5cf6-be46-46bd-ae50-8f04d9aeb90d" alt="Installing the &#x27;plex-desktop&#x27; package from the terminal."><figcaption></figcaption></figure></div>

#### Connect to your media server <a href="#connect-to-your-media-server.4" id="connect-to-your-media-server.4"></a>

After installing the Plex app:

1. Launch **Plex**.
2. At the top of the page, click **Sign in** and select **Sign in** once more.
3. Log in to your Plex account and close the browser window.
4. Select the preferences for your media and click **Finish setup**.
5. From the menu on the left, click **More**.
6. Select your added media library.\
   \
   ![Local and remote video libraries available on the Plex app.](https://3559400189-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0cTezbT2vN0lurEio8Z5%2Fuploads%2FEW5EpKFk17gJkZMIw9NP%2Fplex_media_watch_linux.png?alt=media\&token=adbb5ee7-4337-43fe-aea9-a9e56110cc3c)
   {% endtab %}
   {% endtabs %}
