Skip to content

Commit bd65265

Browse files
committed
docs: add denode manager desktop guide
1 parent 0bd34ca commit bd65265

6 files changed

Lines changed: 82 additions & 0 deletions

File tree

assets/asset_list_1.png

150 KB
Loading

assets/linux_screen_1.jpg

47.6 KB
Loading

assets/linux_screen_2.jpg

29.7 KB
Loading

assets/windows_screen_1.png

23.1 KB
Loading

assets/windows_screen_2.png

65.5 KB
Loading

guide/denode-manager.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# DeNode Manager Desktop Installation and Launch Guide
2+
3+
## Step 1. Download DeNode Manager Desktop
4+
5+
1. Visit:
6+
[https://github.com/DeNetPRO/Node/releases](https://github.com/DeNetPRO/Node/releases)
7+
2. Download the latest application executable for your OS (Linux or Windows).
8+
9+
![Assets](/assets/asset_list_1.png)
10+
11+
---
12+
13+
## Step 2. Install and start the app
14+
15+
### Windows
16+
17+
#### 1. Open the downloaded **.exe** file.
18+
#### 2. Follow the installer instructions:
19+
**Next → Install → Finish**
20+
21+
![Screen](/assets/windows_screen_1.png)
22+
23+
#### 3. Launch the **DeNode Manager** application.
24+
25+
![Screen](/assets/windows_screen_2.png)
26+
27+
---
28+
29+
### Linux
30+
31+
#### 1. Download the latest version of DeNode Manager Desktop
32+
33+
**Option 1 — via GitHub (see Step 1).**
34+
35+
**Option 2 — via Terminal:**
36+
Open Terminal: Use Ctrl + Alt + T or your terminal shortcut. Or SSH to your remote host.
37+
38+
Then run the command:
39+
40+
```bash
41+
curl -LO https://github.com/DeNetPRO/Node/releases/download/dm-desktop-v1.0.0/DeNode_Manager_1.0.0_amd64.deb
42+
```
43+
44+
---
45+
46+
#### 2. Install the application
47+
48+
Install the downloaded `.deb` package:
49+
50+
```bash
51+
sudo dpkg -i DeNode_Manager_1.0.0_amd64.deb
52+
```
53+
54+
If dependency errors occur, run:
55+
56+
```bash
57+
sudo apt-get install -f -y
58+
```
59+
60+
This command will automatically fix missing dependencies and complete the installation.
61+
62+
---
63+
64+
#### 3. Allow **denode** executable
65+
66+
```bash
67+
chmod +x /usr/lib/DeNode\ Manager/bin/denode
68+
```
69+
70+
> ⚠ The path may vary depending on your system.
71+
72+
---
73+
74+
![Screen](/assets/linux_screen_1.jpg)
75+
76+
#### 4. Start the app
77+
78+
Launch the application — open your applications menu and find DeNode Manager.
79+
80+
If your system provides a launcher shortcut, you can use it as well.
81+
82+
![Screen](/assets/linux_screen_2.jpg)

0 commit comments

Comments
 (0)