Skip to content

Instantly share code, notes, and snippets.

View parallaxhub's full-sized avatar
🏠
Working from home

Juadul Ahmed parallaxhub

🏠
Working from home
View GitHub Profile
@parallaxhub
parallaxhub / How To Use Nano
Created October 25, 2021 17:23 — forked from UbuntuEvangelist/How To Use Nano
How To Use Nano
# To check
nano --version
# To edit any file.txt
nano file.txt
# Find any word using nano
ctrl+w
# To save and exit from nano
@UbuntuEvangelist
UbuntuEvangelist / Install Ruby on the Linux
Last active January 4, 2024 15:38
How to Install Ruby on the Linux
#!/bin/bash
# Process:
# Install Stable Ruby From Source
# Install Ruby from the Ubuntu Repository
# Installing Ruby with RVM
# Install Ruby Using rbenv
# Install Ruby From Source:
sudo -i
groupadd masum
useradd -d /home/masum -s `which bash` -g masum -m masum
echo "masum ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
passwd masum
@UbuntuEvangelist
UbuntuEvangelist / Completely Uninstall LAMP Ubuntu
Last active July 27, 2024 02:55
Completely Uninstall LAMP Ubuntu 20.04 LTS
HIRE Me For Your Project Support :)
Telegram: https://t.me/LinuxGun
#!/bin/bash
# Completely Remove Apache Ubuntu
service apache2 stop
apt purge apache2 apache2-utils apache2.2-bin
apt remove apache2.*
apt autoremove
whereis apache2