Install node ubuntu 18.4

Step 1
Open a terminal and run the following commands:
                            sudo apt update
                            sudo apt upgrade
                            sudo apt install screen -y
                        
Step 2
Run the following command to download the Geth binary:
                            wget https://github.com/redecoinproject/redecoin/releases/download/v2.2.0.0/geth-ubuntu18
                            chmod +x geth-ubuntu18
                        
Step 3
If you want to save the command for future use, create a file named start.sh and paste the command into it:
                            echo 'screen -S node ./geth-ubuntu18 --port 30304 --http --syncmode "full" --snapshot=false --http.api "personal,eth,net,web3,personal,admin,miner,txpool,debug" --ethstats $HOSTNAME:[email protected]:3000 console' > start.sh
                            chmod +x start.sh
                        
Step 4
Run the following command to start Geth using the start.sh script:
                            ./start.sh
                        
Step manual start
Run the following command to start Geth:
                            screen -S node ./geth-ubuntu18 --port 30304 --http --syncmode "full" --snapshot=false --http.api "personal,eth,net,web3,personal,admin,miner,txpool,debug" --ethstats $HOSTNAME:[email protected]:3000 console