No help?

Hi,
Sorry for the belated answer, we were very busy in recent times and forgot to check bitcointalk. Do you still need help or have you figured it out by now?

Hi there, I still need help, I am a noob and it is the first time I use Linux and want to set up a CRT Node. Can you maybe write me a noob-proof step-by-step guide to set up the node and generate addresses myself? :-D
Can do

1. You have to install dependencies that Certurium needs
Open your terminal and copy paste the following commands
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
and
sudo apt-get install libssl-dev libevent-dev libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev
2. Next, you have to clone the certurium code into any folder you want, usually where you save your other programs, by typing
git clone https://github.com/Certurium/certurium.git
3. cd into your certurium folder
If you want wallet capabilites, refer to this part of the docs on how to install berkeley-db
https://github.com/Certurium/certurium/blob/master/doc/build-unix.md#berkeley-db4. Last thing you have to do, is run these commands one after another.
./autogen.sh
./configure --disable-shared
make
make install
If you did everything right, you can finally run certurium by typing
certuriumd
in the terminal.
Use the certurium daemon, as some people have had issues with the certurium-qt.
By the way, the reason things didn't work for you with version v0.18 is because it's actually running on a different chain, as we have gone through a hard fork since.
Hope this helps. If you get stuck somewhere, let me know

P.S. If you have problems with berkeley DB, as I've had in the past, you can install a different version of berkeley DB like so:
sudo apt-get install libdb-dev++
(may not work for all distros)
and then you have to specify
./configure --disable-shared --with-incompatible-bdb