Skip to content

Instantly share code, notes, and snippets.

View gigsforlinux's full-sized avatar

Abdul Hai Siddique gigsforlinux

View GitHub Profile
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Ruby On Rails - Web Application Framework For You
Created August 4, 2022 10:56
I'll Do Anything Goes With Ruby On Rails - Web Application Framework For You
sudo apt update
##install dependencis
sudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev
###After the complete installation of dependency packages, run the following command to clone both Rbenv and Ruby-build repositories at GitHub.
curl -sL curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
##install ruby
rbenv install 3.1.2
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Zammad HelpDesk System For You
Created July 31, 2022 16:25
I'll Do Anything Goes With Zammad HelpDesk System For You
sudo apt update
sudo apt upgrade
sudo apt install wget curl apt-transport-https gnupg
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
sudo apt update && sudo apt install elasticsearch
@gigsforlinux
gigsforlinux / I'll Install Ansible-Puppet-Vagrant DevOps Tools For You
Created July 31, 2022 16:21
I'll Install Ansible-Puppet-Vagrant DevOps Tools For You
sudo apt update
sudo apt install ansible
ansible-inventory --list -y
#testing connection
ansible all -m ping -u root
ansible all -a "df -h" -u root
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With TastyIgniter For You
Created July 31, 2022 16:18
I'll Do Anything Goes With TastyIgniter For You
!/bin/bash
#Install Apache2
sudo apt update
sudo apt install apache2
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
sudo systemctl restart apache2.service
#Install MariaDB
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Docker,Docker-Compose For You
Created July 31, 2022 16:08
I'll Do Anything Goes With Docker,Docker-Compose For You
#!/bin/sh
apt update -y
apt-get upgrade -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt install software-properties-common
apt upgrade -o APT::Get::Show-Upgraded=true
apt-show-versions | grep upgradeable
apt install apt-show-versions
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Projectsend- A Free File Sharing System
Created July 26, 2022 17:25
I'll Do Anything Goes With Projectsend- A Free File Sharing System
I'll Do Anything Goes With Projectsend- A Free File Sharing System
sudo -i
apt update -y && apt-get 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
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Hadoop For You
Created July 18, 2022 16:42
I'll Do Anything Goes With Hadoop For You
sudo apt update
sudo apt install default-jdk
java -version
wget https://dlcdn.apache.org/hadoop/common/hadoop-3.3.1/hadoop-3.3.1.tar.gz
wget https://downloads.apache.org/hadoop/common/hadoop-3.3.1/hadoop-3.3.1.tar.gz.sha512
shasum -a 512 hadoop-3.3.1.tar.gz
@gigsforlinux
gigsforlinux / I'll Do Anything Goes With Django
Created July 18, 2022 16:00
I'll Do Anything Goes With Django
##Install Django with pip in a Virtual Environment
sudo apt update
python3 -V
sudo apt install python3-pip python3-venv
###start a new project, you can create a virtual environment for it. Start by creating and moving into a new project directory:
mkdir ~/newproject
cd ~/newproject
@gigsforlinux
gigsforlinux / I'll Do Attendize-An OpenSource Event Management System On LAMP Stack For You
Created July 18, 2022 15:20
I'll Do Attendize-An OpenSource Event Management System On LAMP Stack For You
sudo apt update
sudo apt install unzip php php-fpm php-mysql php-pdo php-cli php-fpm php-mysql php-zip php-gd php-mbstring php-curl php-xml php-pear php-bcmath php-zip
sudo apt update
sudo apt install mariadb-server
$ sudo mysql_secure_installation
git clone https://github.com/Attendize/Attendize
@gigsforlinux
gigsforlinux / I'll Do Humhub-An OpenSource Social Network On LAMP Stack For You
Created July 6, 2022 15:55
I'll Do Humhub-An OpenSource Social Network On LAMP Stack For You
#!/bin/sh
# YouTube:
# Things to do after install Ubuntu 20.04
sudo -i
apt update -y
apt upgrade -y
apt update -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras