Skip to content

Instantly share code, notes, and snippets.

View afahitech's full-sized avatar

Ataur Rahman afahitech

View GitHub Profile
@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 / 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 / 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 / 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 / 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 / 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