Skip to content

Instantly share code, notes, and snippets.

View afahitech's full-sized avatar

Ataur Rahman afahitech

View GitHub Profile
@afahitech
afahitech / things.sh
Created December 8, 2019 15:59 — forked from kngvamxx/things.sh
Things To Do After Installing Ubuntu 18.04 LTS Desktop
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras
@afahitech
afahitech / build_mysql.sh
Created December 26, 2019 14:51 — forked from huangqiheng/build_mysql.sh
Build and install MySQL 5.1 from source on Ubuntu 18.04
#!/bin/bash
# Run as root
set -e
apt-get update
apt-get install -y build-essential
apt-get install -y libncurses5-dev
useradd mysql
@afahitech
afahitech / ruby.sh
Created January 20, 2020 16:54 — forked from UbuntuEvangelist/ruby.sh
Ruby A PROGRAMMER'S BEST FRIEND
sudo wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.zip
sudo unzip ruby-2.5.3.zip
cd ruby-2.5.3/
sudo ./configure
sudo make
sudo make install
ruby --version
@afahitech
afahitech / Python-3.8.3.sh
Last active January 25, 2021 15:39
Python-3.8.3 Install Linux
#!/bin/bash
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
@afahitech
afahitech / pythonpro.sh
Last active January 25, 2021 15:39
How to make 'python' program command execute Python 3?
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
===========================================================
@afahitech
afahitech / focal.sh
Last active January 25, 2021 15:38 — forked from UbuntuEvangelist/Things To Do After Installing Ubuntu 24.10 Desktop Linux
Things To Do After Installing Ubuntu 20.04 LTS Desktop
#!/bin/sh
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
===========================================================
@afahitech
afahitech / ruby.sh
Last active January 25, 2021 15:38 — forked from UbuntuEvangelist/ruby.sh
Ruby Uninstall Linux
#!/bin/bash
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
===========================================================
@afahitech
afahitech / RubyInstall.sh
Last active January 25, 2021 15:38
Ruby Install Script
#!/bin/sh
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
===========================================================
@afahitech
afahitech / Ruby.sh
Last active January 25, 2021 15:37 — forked from UbuntuEvangelist/Install Ruby on the Linux
How to Install Ruby on the Linux
#!/bin/bash
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
===========================================================
@afahitech
afahitech / DockerDockerCompose.sh
Created November 30, 2020 16:29 — forked from UbuntuEvangelist/Docker and Docker Compose Install
Docker and Docker Compose Install Ubuntu 20.04 LTS
#!/bin/sh
# Docker Install
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \