This command fetch sources from gitlab and build them.
This command fetch sources from gitlab and build them.
```
```
...
@@ -42,29 +41,33 @@ This command fetch sources from gitlab and build them.
...
@@ -42,29 +41,33 @@ This command fetch sources from gitlab and build them.
cd ../
cd ../
```
```
#### Build sources
#### Build cellframe using cmake framework
Get into directory with cellframe-node and do
Get into directory with cellframe-node and execute the following commands
```
```
mkdir build
mkdir build
cd build
cd build
cmake ../
cmake ../
make -j$(nproc)
make -j$(nproc)
```
```
*-j$(nproc)*is optional and specifies the number of threads will be used in building process.
*-j$(nproc)*nrpoc parameter depends on your machine capacity - number of processor cores.
Thats produce everything in build/ subdirectory.
As a result, you should be able to fine make files in your build folder which will be used by cpack command to create an installation package.
### Install package
### Build cellframe-node package
#### Prepare for installation
#### Prepare for installation
To prepare node for installation we need to produce pacakge. Or - do ```sudo make install``` from build directory, then get config template from ```dist/share/configs``` and produce proper one in ```/opt/celllframe-node/etc```
Anyway we suggest you to produce the package with command ```cpack``` from the build directory.
Use the following command ```cpack``` from the build directory to create cellframe-node installation package.
##### Install from local package
##### Install from local package
If you downloaded or build from sources a debian pacakge, like ```cellframe-node_2.11-4-buster_amd64.deb``` you need to install it with ```dpkg``` command. Example:
If everyting went well you should be able to find the following file in your build folder ```cellframe-node_2.11-4-buster_amd64.deb```
##### Install from DemLabs official public repository
##### Install from DemLabs official public repository - why do we need this section??? what does it stand for? Should that be moved to a separate md document?
* Create file /etc/apt/sources.list.d/demlabs.list with command ```sudo nano /etc/apt/sources.list.d/demlabs.list``` one line below for Debian 10:
* Create file /etc/apt/sources.list.d/demlabs.list with command ```sudo nano /etc/apt/sources.list.d/demlabs.list``` one line below for Debian 10:
During installation it asks some questions - some questions?? really?
#### Debian package questions
#### Debian package questions
All this could be changed after in configs
All this could be changed after in configs - could be? or must be? how critical is that? will cellfame-node work without it? if yes, I would suggest to remove this
* Auto online
* Auto online
...
@@ -149,7 +152,7 @@ You could enter any number of such prices
...
@@ -149,7 +152,7 @@ You could enter any number of such prices
#### DNS server install
#### DNS server install
Install DNS server, it could be any other than Bind9 but for example we will use exactly thats one
Install DNS server, it could be any other than Bind9 but for example we will use exactly thats one - did we test this with any other? at a least a couple of others?
```sudo apt-get install bind9```
```sudo apt-get install bind9```
...
@@ -161,11 +164,11 @@ Open ```/etc/sysctl.conf``` with command ```sudo nano /etc/sysctl.conf``` and fi
...
@@ -161,11 +164,11 @@ Open ```/etc/sysctl.conf``` with command ```sudo nano /etc/sysctl.conf``` and fi
#net.ipv4.ip_forward=1
#net.ipv4.ip_forward=1
```
```
I had it on 27-28 line in config. Uncomment ```net.ipv4.ip_forward=1``` as the comment above suggests. Then after you've changed them and saved changes, implement them with:
Uncomment ```net.ipv4.ip_forward=1``` as the comment above suggests. Then after you've changed them and saved changes, implement them with:
```
```
sudo sysctl -p
sudo sysctl -p
```
```
Then after reboot they will be implemented automatically
Then after reboot they will be implemented automatically - do we need to specify a reboot command?