This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HIRE Me For Your Project Support :) | |
Telegram: https://t.me/LinuxGun | |
#!/bin/bash | |
# Completely Remove Apache Ubuntu | |
service apache2 stop | |
apt purge apache2 | |
apt remove apache2.* | |
apt autoremove | |
whereis apache2 |