Skip to content

MyTonCtrl overview update #1144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
"zerostate",
"decentralised",
"colour",
"analyse"
"analyse",
"ensurepip",
"Buildx",
"underperforming",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import Feedback from '@site/src/components/Feedback';

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# MyTonCtrl

## Overview
Expand All @@ -10,6 +13,41 @@ To install and manage your own node, use the **MyTonCtrl** open-source tool deve

We are actively seeking feedback about the installation process. If you have any questions or suggestions, please [contact us](https://t.me/Alexgton).

## Install the MyTonCtrl

Download and execute the installation script from a **non-root** user account with **sudo** permissions:

<Tabs groupId="operating-systems">
<TabItem value="ubuntu" label="Ubuntu">

```bash
wget https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/scripts/install.sh
sudo bash install.sh
```

</TabItem>
<TabItem value={'debian'} label={'Debian'}>

```bash
wget https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/scripts/install.sh
su root -c 'bash install.sh'
```

</TabItem>
</Tabs>

**Flags:**

- `-d` - **MyTonCtrl** will download a [dump](https://dump.ton.org/) of the latest blockchain state, significantly reducing synchronization time.
- `-c <path>` - Specify a non-public liteserver for synchronization (optional).
- `-i` - Ignore minimum requirements; use this only if you test the compilation process without running a real node.
- `-m` - Sett the mode either `validator` or `liteserver`.
- `-t` - Disable telemetry.

**To use testnet**, `-c` flag with the value `https://ton.org/testnet-global.config.json`.

The default value for the `-c` flag is `https://ton-blockchain.github.io/global.config.json`, which is default configuration for the mainnet.

## General Commands

### help
Expand Down Expand Up @@ -781,4 +819,3 @@ No args. Sets a password for the web admin interface, runs `python3 /usr/src/mtc
- [Troubleshooting](/v3/guidelines/nodes/nodes-troubleshooting)

<Feedback />

Loading