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 / How To Install CMake 3.22 Ubuntu 22.04
Last active April 26, 2024 21:58
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: linuxguns@gmail.com
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 / vici_install.md
Created February 19, 2024 04:26 — forked from identor/vici_install.md
Guide: Vici Dial Installation

Vici Dial Installation Guide

This guide shows a simple Vici Dial installtion on a debian6_x64 droplet in Digital Ocean.

Create the Droplet

General Guidelines:

  • Create the Droplet by selecting Create Droplet in the Droplet's UI.
  • Select the 64 bit image of debian 6.

Dependency installation

We need to install all dependencies before proceeding to install the astguiclient.

@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 January 18, 2024 16:38
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 / ecosystem.config.json
Created October 2, 2023 19:50 — forked from WebSofter/ecosystem.config.json
Run laravel artisian serve script via pm2
{
"apps": [{
"name": "laravel-app",
"script": "artisan",
"args": ["serve", "--host=0.0.0.0", "--port=3333"],
"instances": "1",
"wait_ready": true,
"autorestart": false,
"max_restarts": 1,
"interpreter" : "php",
@UbuntuEvangelist
UbuntuEvangelist / github_desktop_ubuntu.sh
Created September 13, 2023 17:52 — forked from berkorbay/github_desktop_ubuntu.md
To install Github Desktop for Ubuntu
## Follow this link for further updates to Github Desktop for Ubuntu https://github.com/shiftkey/desktop/releases/latest
# UPDATE (2022-11-07): Thanks to Sxvxgee's message, the updated code is as follows
sudo wget https://github.com/shiftkey/desktop/releases/download/release-3.1.1-linux1/GitHubDesktop-linux-3.1.1-linux1.deb
### Uncomment below line if you have not installed gdebi-core before
# sudo apt-get install gdebi-core
sudo gdebi GitHubDesktop-linux-3.1.1-linux1.deb
# UPDATE (2021-10-18): Thanks to Amin Yahyaabadi's message, the updated code is as follows
@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