Skip to content

Instantly share code, notes, and snippets.

View UbuntuEvangelist's full-sized avatar
🏠
Working from home

Masum UbuntuEvangelist

🏠
Working from home
View GitHub Profile
@UbuntuEvangelist
UbuntuEvangelist / Corteza Installation Support
Created June 10, 2024 19:46
Corteza Installation Support
🚀 Get Your Corteza Installation Support
🔗 Telegram: https://t.me/LinuxGun​
📧 Email: [email protected]
Looking for Corteza Installation Support? Hire me.
The Corteza low-code platform lets you build and iterate CRM, business process and other structured data apps fast, create intelligent business process workflows and connect with almost any data source . All with the flexibility, freedom and control you get from a 100% open-source platform written in Golang.
With my service, you can expect:
@UbuntuEvangelist
UbuntuEvangelist / How to Resolve WiFi Issues on Ubuntu 24.04 LTS Desktop
Last active September 1, 2025 19:56
Fix WiFi Issues on Ubuntu 24.04 LTS Desktop
# Follow Things To Do After Installing Ubuntu 24.04 LTS
$ apt update -y
$ apt upgrade -y
$ apt update -y
$ apt install build-essential checkinstall
$ apt install ubuntu-restricted-extras
$ apt install software-properties-common
$ apt install apt-show-versions
$ apt upgrade -o APT::Get::Show-Upgraded=true
@UbuntuEvangelist
UbuntuEvangelist / Jasmin SMS Gateway GUI Installation
Last active April 13, 2025 20:27
Jasmin SMS Gateway GUI Installation Starts Here
🚀 Get Your Jasmin SMS Gateway GUI Setup
🔗 Telegram: https://t.me/LinuxGun​
📧 Email: [email protected]
Looking to establish a robust and efficient SMS gateway for your business using Jasmin SMS Gateway? Count on me to provide a comprehensive Jasmin SMS Gateway service to get you started.
#sms #jasminsms #jasmin #bulksms #bulksmsmarketing #bulksmsservice #jasminsmsgateway #jasminsmsgatewayinstallation #Ejointech #SimBank #ChinaSkyline #Skyline #SMSModemPool #SMSModem #SMSGatewayModem #smsgateway
@UbuntuEvangelist
UbuntuEvangelist / How To Install CMake 3.22 Ubuntu 22.04
Last active August 27, 2025 13:42
Install CMake 3.22 Ubuntu 22.04
sudo apt update
sudo apt install build-essential
sudo apt install libssl-dev
export OPENSSL_ROOT_DIR=/usr/include/openssl
wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz
tar -xzvf cmake-3.29.2.tar.gz
cd cmake-3.29.2
./bootstrap
make -j$(nproc)
sudo make install
@UbuntuEvangelist
UbuntuEvangelist / Bagisto eCommerce Platform Installation Support
Created April 20, 2024 11:45
Bagisto eCommerce Platform Installation
📌 Get Bagisto eCommerce Platform Setup Telegram: https://t.me/LinuxGun​
📌 Email: [email protected]
I'll do installation process of Bagisto, a powerful Laravel-based eCommerce platform. Whether you're new to eCommerce or an experienced developer, shop owner Bagisto provides a flexible and scalable solution to build your online store. Bagisto eCommerce Platform Installation Supports | #Bagisto
Bagisto simplifies the process of creating feature-rich online stores with its modular approach, making it easy to customize and extend according to your business needs. Plus, it's built on Laravel, a popular PHP framework known for its elegant syntax and developer-friendly environment. Bagisto eCommerce Platform Installation Supports | #Bagisto
💰 Want to hire me for Bagisto eCommerce Platform Support? Hire me
🤔 Need to know more about Bagisto eCommerce Platform Support!!
@UbuntuEvangelist
UbuntuEvangelist / Installation Hyprland 23.04
Created February 29, 2024 15:06
Installation Hyprland
# Building on Ubuntu 23.04
You have 2 options, use the script descrived bellow or follow the instrutions
> script in [this gist](https://gist.github.com/Vertecedoc4545/6e54487f07a1888b656b656c0cdd9764) if you want the source code
```bash
wget https://gist.githubusercontent.com/Vertecedoc4545/6e54487f07a1888b656b656c0cdd9764/raw/2c5e8ccb428fc331307e2f653cab88174c051310/build-ubuntu-23.sh
chmod +x build-ubuntu-23.sh
./build-ubuntu-23.sh
```
@UbuntuEvangelist
UbuntuEvangelist / LAMP Stack Development Support On Demand
Last active January 22, 2024 17:34
LAMP Stack Development Support
Are you looking to build robust and scalable web applications? Our LAMP stack development service is designed to meet your
needs, offering a comprehensive solution for creating dynamic and feature-rich websites. With our expertise in Linux, Apache,
MySQL, and PHP, we ensure a reliable and powerful foundation for your web development projects.
Hire me Telegram @LinuxGun
@UbuntuEvangelist
UbuntuEvangelist / How To Install PHP (8.2, 8.1, 7.4) on Ubuntu 22.04
Last active August 15, 2025 19:57
Install PHP (8.2, 8.1, 7.4) on Ubuntu 22.04
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common ca-certificates lsb-release apt-transport-https
LC_ALL=C.UTF-8 sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php8.1
# Check active php version php -v
php -v
# Check system php version
php --version
# To install another php version same machine
@UbuntuEvangelist
UbuntuEvangelist / Expert Git Support Available
Last active September 12, 2023 17:57
Anything Git Support
Are you encountering challenges with Git, the industry-standard version control system? Whether you're a solo developer, a
small team, or a large organization, mastering Git is crucial for efficient code management and collaboration.
Our team of Git experts is here to provide you with the support you need to overcome any Git-related hurdles and ensure
your projects run smoothly.
Contact Telegram @LinuxGin
Our Git Support Services:
Git Troubleshooting: We can quickly diagnose and resolve any Git issues you encounter, such as merge conflicts, repository problems, or performance bottlenecks.
@UbuntuEvangelist
UbuntuEvangelist / How to Install Doxygen on Ubuntu
Created September 5, 2023 21:40
How to Install Doxygen on Ubuntu 22.04.3 LTS (jammy)
Doxygen is the de facto standard tool for generating documentation from annotated C++ sources, but it also supports other popular programming languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, and to some extent D. Doxygen also supports the hardware description language VHDL.
sudo apt-get install flex
sudo apt-get install bison
git clone https://github.com/doxygen/doxygen.git
cd doxygen