Month: June 2024

  • Creating Gitlab VM on Ubuntu 24.04

    Run this script as a root: wget -O /tmp/netdata-kickstart.sh https://get.netdata.cloud/kickstart.sh && sh /tmp/netdata-kickstart.sh # Add Docker’s official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl -y sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc sudo chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: echo \ “deb [arch=$(dpkg…

  • Intel MPI Benchmarks Test – First Step

    First step is to run a simple benchmark after the setup I tried here. I had problems with running a simple one because it depends on the architecture. I created 3 virtual machines with Ubuntu 22.04 on the same network. Then, I followed the steps here. In short: 1. Create hostfile 192.168.124.95 # computer 1…

  • Intel MPI Benchmarks Setup (Fedora 40)

    This post explains how I installed the Intel MPI Benchmarks and what errors I got on Fedora 40. Ubuntu 22.04 installation is straightforward, please see this one if Ubuntu also works for you (just execute the given commands) in this link In short, you need to do the normal installation but then you need to…

  • Setting Up the Mail Server for Gitlab (and other platforms)

    In short, I tried setting up GitLab with Microsoft Cloud, but it didn’t work unless I paid. So, I used Sendinblue instead. The email setup comes after the gitlab setup which I explained here: https://afeser.duckdns.org/2024/06/21/setting-up-gitlab-nginx/ Setting Up with Office365 (failed) I tried all 3 approaches given in this link: https://learn.microsoft.com/en-gb/Exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-microsoft-365-or-office-365 First approach First link failed…

  • Setting up GitLab + Nginx

    Assume you are a home user and you want to setup gitlab on a server. However, gitlab consumes signifcant memory and you need to pay at least 50-100$ per month to run the server on cloud providers. At the same time, you don’t have any public IP address, but you can get one for 5$,…