### Install Node Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs the Node component using the provided script. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pg-node.sh)" @ install ``` -------------------------------- ### Install Node Pre-release Version Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs the latest pre-release version of Node. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pg-node.sh)" @ install --pre-release ``` -------------------------------- ### Install Pasarguard with MySQL Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard, specifying MySQL as the database. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install --database mysql ``` -------------------------------- ### Install Pasarguard with SQLite Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard using the default SQLite database. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install ``` -------------------------------- ### Install Node with Custom Name Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Node with a custom name, allowing multiple instances to be managed. For example, `--name Node2`. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pg-node.sh)" @ install --name Node2 ``` -------------------------------- ### Install Pasarguard with TimescaleDB and Pre-release Version Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard with TimescaleDB, requiring v1.0.0 or later, and installs a pre-release version. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install --database timescaledb --pre-release ``` -------------------------------- ### Install Node with Manual Version Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs a specific manual version of Node, such as 0.1.0. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pg-node.sh)" @ install --version 0.1.0 ``` -------------------------------- ### Install Pasarguard with PostgreSQL Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard, specifying PostgreSQL as the database. Supported in v1.0.0 and later. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install --database postgresql ``` -------------------------------- ### Install Pasarguard with MariaDB and Specific Version Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard with MariaDB, specifying a manual version like v0.5.2. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install --database mariadb --version v0.5.2 ``` -------------------------------- ### Install Pasarguard with MariaDB and Dev Branch Source: https://github.com/pasarguard/scripts/blob/main/README.md Installs Pasarguard with MariaDB, using the development branch. This option is only for versions before v1.0.0. ```bash sudo bash -c "$(curl -fsSL https://github.com/PasarGuard/scripts/raw/main/pasarguard.sh)" @ install --database mariadb --dev ``` -------------------------------- ### View Node Help Source: https://github.com/pasarguard/scripts/blob/main/README.md Displays all available commands for managing Node instances. ```bash pg-node help ``` -------------------------------- ### Update or Change Xray-core Version for Node Source: https://github.com/pasarguard/scripts/blob/main/README.md Updates or changes the Xray-core version for a Node instance. Use `pg-node help` to view all commands. ```bash sudo pg-node core-update ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.