Improve markdown in readme.txt & rename to readme.md
Github doesn't render markdown in txt files.
MailYouLater committed
Jul 4, 2019 at 17:33 UTC
bd7acb5948490880cbf7b69b997c994542d22d3b
1 file changed
+11
-15
readme.md
renamed
+11
-15
@@ -3,7 +3,7 @@ MeshCentral
3
4
For more information, [visit MeshCommander.com/MeshCentral2](http://www.meshcommander.com/meshcentral2).
5
6
-Download the [full PDF user's guide](http://info.meshcentral.com/downloads/MeshCentral2/MeshCentral2UserGuide.pdf) with more information on configuring and running MeshCentral2. In addition, the (installation guide)[http://info.meshcentral.com/downloads/MeshCentral2/MeshCentral2InstallGuide.pdf] can help get MeshCentral installed on Amazon AWS, Microsoft Azure, Ubuntu or Raspberry Pi.
6
+Download the [full PDF user's guide](http://info.meshcentral.com/downloads/MeshCentral2/MeshCentral2UserGuide.pdf) with more information on configuring and running MeshCentral2. In addition, the [installation guide](http://info.meshcentral.com/downloads/MeshCentral2/MeshCentral2InstallGuide.pdf) can help get MeshCentral installed on Amazon AWS, Microsoft Azure, Ubuntu or Raspberry Pi.
7
8
This is a full computer management web site. With MeshCentral, you can run your own web server to remotely manage and control computers on a local network or anywhere on the internet. Once you get the server started, create a mesh (a group of computers) and then download and install a mesh agent on each computer you want to manage. A minute later, the new computer will show up on the web site and you can take control of it. MeshCentral includes full web-based remote desktop, terminal and file management capability.
9
@@ -28,7 +28,7 @@ Then, install MeshCentral by creating an empty folder and using npm to download
28
npm install meshcentral
29
```
30
31
-To run MeshCentral you may need to use "nodejs" instead of "node" on Linux.
31
+To run MeshCentral you may need to use `nodejs` instead of `node` on Linux.
32
33
```
34
cd ./node_modules/meshcentral
@@ -42,7 +42,7 @@ You can launch MeshCentral with no arguments to start it in LAN mode. In LAN mod
42
node meshcentral --cert 1.2.3.4
43
```
44
45
-On Windows, you can install MeshCentral to run as a background service, just run it using "--install". Once running, open a browser and enter the server url. By default, a TLS self-signed certificate is created so you will need to ignore the security warning given by your browser. A link to the root certificate that can be loaded into your browser is provided on the website so you can make the warnings go away. You can run without TLS security using --notls, but this is not recommended.
45
+On Windows, you can install MeshCentral to run as a background service, just run it using `--install`. Once running, open a browser and enter the server url. By default, a TLS self-signed certificate is created so you will need to ignore the security warning given by your browser. A link to the root certificate that can be loaded into your browser is provided on the website so you can make the warnings go away. You can run without TLS security using --notls, but this is not recommended.
46
47
48
Update and uninstall
@@ -84,7 +84,7 @@ Command line arguments on any platform:
84
Configuration File
85
------------------
86
87
-As an alternative to using command line arguments, you can create a ./node-module/meshcentral-data/config.json file, for example:
87
+As an alternative to using command line arguments, you can create a `./node-module/meshcentral-data/config.json` file, for example:
88
89
```json
90
{
@@ -120,7 +120,7 @@ As an alternative to using command line arguments, you can create a ./node-modul
120
}
121
```
122
123
-The "settings" part are for command line arguments. For example, instead of running with "--port 8080", you can put "port: 8080" in the settings portion of the config.json file. In addition, you can use the config.json file to create multi-tenancy servers. In the domains section, you can set options for the default domain ("") in addition to creating new domains.
123
+The `settings` part are for command line arguments. For example, instead of running with `--port 8080`, you can put `"port": 8080` in the `settings` portion of the `config.json` file. In addition, you can use the `config.json` file to create multi-tenancy servers. In the domains section, you can set options for the default domain (`""`) in addition to creating new domains.
124
125
For the configuration above, the root domain and two other domains will be accessible like this:
126
@@ -130,14 +130,14 @@ For the configuration above, the root domain and two other domains will be acces
130
https://servername:8080/customer2
131
```
132
133
-When you setup many domains, the server considers each domain separately. Each domain has separate user accounts, administrators, etc. Within each domain, you can put a "title" and "title2" as strings that will show up at the top of the web site. "userQuota" indicates the default maximum amount of data a user can have in it's "My Files" folder. "meshQuota" is the maximum total size of files in each mesh folder. "newAccounts" indicates if new accounts can be created from the login page, 0 if not allowed, 1 if allowed. Note that if a web site has no accounts, the new account option will be available until an account is created and the first account will be the site administrator.
133
+When you setup many domains, the server considers each domain separately. Each domain has separate user accounts, administrators, etc. Within each domain, you can put a `title` and `title2` as strings that will show up at the top of the web site. `userQuota` indicates the default maximum amount of data a user can have in it's "My Files" folder. `meshQuota` is the maximum total size of files in each mesh folder. `newAccounts` indicates if new accounts can be created from the login page, `0` if not allowed, `1` if allowed. Note that if a web site has no accounts, the new account option will be available until an account is created and the first account will be the site administrator.
134
135
-MeshCentral also supports server peering, add the "peers" section with a list of all peers. If you want to do server peering, make sure all servers are configured to use the same database. Also, the "serverId" value is optional. If it's not specified, the computer hostname is used instead.
135
+MeshCentral also supports server peering, add the `peers` section with a list of all peers. If you want to do server peering, make sure all servers are configured to use the same database. Also, the `serverId` value is optional. If it's not specified, the computer hostname is used instead.
136
137
Other Notes
138
-----------
139
140
-For Windows users, if you install MeshCentral globally using "npm install meshcentral -g", it will not be able to run correctly as a Windows Service. It will immediately stop each time you start it.
140
+For Windows users, if you install MeshCentral globally using `npm install meshcentral -g`, it will not be able to run correctly as a Windows Service. It will immediately stop each time you start it.
141
142
For more information on MeshCentral or other tools, visit [MeshCommander.com](http://meshcommander.com).
143
@@ -145,18 +145,14 @@ For more information on MeshCentral or other tools, visit [MeshCommander.com](ht
145
Tutorials
146
---------
147
148
-How to install MeshCentral2 in a few minutes.
149
-
148
+How to install MeshCentral2 in a few minutes.
149
[](https://www.youtube.com/watch?v=LSiWuu71k_U)
150
152
-
153
-Demonstration of MeshCentral2 usages and more tips & tricks.
154
-
151
+Demonstration of MeshCentral2 usages and more tips & tricks.
152
[](https://www.youtube.com/watch?v=1E3NqGJzYds)
153
154
158
-How to setup Intel® AMT client initiated remote access (CIRA) to connect to MeshCentral2.
159
-
155
+How to setup Intel® AMT client initiated remote access (CIRA) to connect to MeshCentral2.
156
[](https://www.youtube.com/watch?v=rA2KHa2jkO0)
157
158