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
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go
go version
go get github.com/gophish/gophish
cd gophish
go build
gophish
১। বেটা ! কর্জ হইতে নিজেকে হেফাজাত রাখিও। কেননা ইহা দিনের বেলায় অপমান এবং রাত্রিতে দুশ্চিন্তা।
২। বেটা ! তুমি মোরগের চাইতে বেশী অক্ষম হইও না। সে তো শেষ রাত্রিতে জাগিয়া চিৎকার শুরু করিয়া দেয়, আর তুমি নিজের বিছানায় পড়িয়া ঘুমাইতে থাকো।
৩। বেটা ! গুরুত্ব সহকারে জানাযায় শরীক হইও এবং অহেতুক অনুষ্ঠানাদি শরীক
হওয়া হইতে বাঁচিয়া থাকিও।
৪। বৎস আল্লাহর সান্নিদ্ধ অবলম্বন করবে ।
৫। অন্যকে উপদেশ দেওয়ার আগে নিজে আমল করার চেষ্টা কর ।
৬। নিজের মান মর্যাদা বজায় রেখে কথা বলবে ।
৭। ভাল মানুষ রূপে বিবেচিত হওয়ার চেষ্টা করবে ।
৮। স্বীয় অধিকারের প্রতি সচেতন থাকবে ।
৯। গোপন তথ্য কারো নিকট প্রকাশ করবে না ।
188.166.77.97
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
apt-show-versions | grep upgradeable
@UbuntuEvangelist
UbuntuEvangelist / Installing gh On Ubuntu Linux
Last active August 17, 2022 15:10
Installing gh On Ubuntu
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
apt update
apt install gh
━━━ Yarn Package Manager - 3.2.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
$ yarn <command>
━━━ General commands ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
yarn add [--json] [-E,--exact] [-T,--tilde] [-C,--caret] [-D,--dev] [-P,--peer] [-O,--optional] [--prefer-dev] [-i,--interactive] [--cached] [--mode #0] ...
add dependencies to the project
yarn bin [-v,--verbose] [--json] [name]
cd
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
source ~/.bashrc
nvm --version
@UbuntuEvangelist
UbuntuEvangelist / Completely Reinstall Node JS & NPM Ubuntu Linux
Last active June 22, 2022 21:48
Completely Reinstall Node JS & NPM
sudo -i
apt remove --purge nodejs npm
apt clean
apt autoclean
apt install -f
apt autoremove
apt install curl
apt install python3 g++ make python3-pip
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
apt install -y nodejs
sudo apt-key adv --refresh-keys --keyserver keyserver.ubuntu.com
@UbuntuEvangelist
UbuntuEvangelist / Anything Goes Linux
Last active February 27, 2025 13:39
Anything Goes Linux Service
Ask Me Anything About Linux! 🐧
I’m the founder of School of Freelancing, dedicated to training and empowering Linux freelancers.
🔹 Verified Linux Freelancer under Bangladesh’s Government-Approved ICT Division
🔹 Freelancer ID: M01606319624 (freelancers.gov.bd)
What I Offer:
✅ Anything Linux – From troubleshooting to advanced configurations
✅ Linux Freelance Training – Helping you build a career as a Linux freelancer
apt install snapd
snap install python38 --classic
apt install python3-pip
nano ~/.bashrc
# Add into the bottom
alias python=python3
alias pip=pip3
# Save & Exit ctrl+s and ctrl+x
alias python=python3