Skip to content

Instantly share code, notes, and snippets.

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

Tanzina Noor linuxfemale

🏠
Working from home
View GitHub Profile
@linuxfemale
linuxfemale / Swift_vepor. sh
Created November 18, 2019 14:28
Swift and Vapor on Ubuntu 18.04
Install Swift and Vapor on Ubuntu 18.04
https://youtu.be/-El30oW3_Wg
##Step 1 — Installing Swift
sudo apt-get update
sudo apt-get install clang libicu-dev libpython2.7
wget https://swift.org/builds/swift-5.1.2-release/ubuntu1804/swift-5.1.2-RELEASE/swift-5.1.2-RELEASE-ubuntu18.04.tar.gz
@linuxfemale
linuxfemale / vtiger.sh
Last active August 27, 2021 09:33
vTiger CRM on Ubuntu 18.04 LTS
apache2 -v
mysql --version
php --version
sudo mysql -u root -p
CREATE DATABASE vtigerdb;
CREATE USER 'vtiger'@'localhost' IDENTIFIED BY 'password';
@linuxfemale
linuxfemale / docker.sh
Last active December 2, 2019 16:22
Docker on Ubuntu 18.04
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
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 bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
sudo systemctl status docker
sudo usermod -aG docker ${sifat}
su - ${sifat}
@linuxfemale
linuxfemale / wireshark.sh
Last active December 2, 2019 15:48
Wireshark Network Analyzer On Ubuntu 18.04
#video tutorial
https://youtu.be/M_PnEmPXHWY
sudo add-apt-repository ppa:wireshark-dev/stable
sudo apt update
sudo apt install wireshark
sudo usermod -a -G wireshark sarif
@linuxfemale
linuxfemale / laravel.sh
Last active December 2, 2019 15:21
Laravel PHP Framework On Ubuntu 18.04
sudo apt update
sudo apt install apache2
sudo systemctl stop apache2.service
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
sudo apt install php7.2 libapache2-mod-php7.2 php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-cli php7.2-zip
@linuxfemale
linuxfemale / FTP.sh
Last active December 2, 2019 14:56
FTP server on Ubuntu 18.04 LTS
sudo apt update
sudo apt install vsftpd
sudo cp -v /etc/vsftpd.conf /etc/vsftpd.conf.bk
sudo nano /etc/vsftpd.conf
Uncomment below lines.
write_enable=YES
local_umask=022
chroot_local_user=YES
@linuxfemale
linuxfemale / samba.sh
Last active December 2, 2019 14:55
Samba Server(SMB/CIFS) on Ubuntu 18.04 LTS
sudo apt update
sudo apt install samba
sudo systemctl status nmbd
sudo ufw allow 'Samba'
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.backup
@linuxfemale
linuxfemale / netdata.sh
Last active November 25, 2019 13:26
Netdata is distributed, real-time, performance and health monitoring for systems and applications.
sudo apt update
sudo apt upgrade -y
sudo apt-get install netdata -y
sudo nano /etc/netdata/netdata.conf
add this
[global]
run as user = netdata
web files owner = root
web files group = root
@linuxfemale
linuxfemale / rabbitMQ.sh
Last active November 21, 2019 14:23
RabbitMQ Server on Ubuntu 18.04
#video tutorial
https://youtu.be/0plDaZ3aJ2M
echo 'deb http://www.rabbitmq.com/debian/ testing main' | sudo tee /etc/apt/sources.list.d/rabbitmq.list
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install rabbitmq-server
sudo systemctl enable rabbitmq-server
sudo systemctl start rabbitmq-server
@linuxfemale
linuxfemale / postgreSQL.sh
Last active November 21, 2019 13:49
PostgreSQL 10 on Ubuntu 18.04
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main" > /etc/apt/sources.list.d/PostgreSQL.list'
sudo apt update
sudo apt-get install postgresql-10
sudo systemctl stop postgresql.service
sudo systemctl start postgresql.service
sudo systemctl enable postgresql.service
sudo systemctl status postgresql.service