This file contains 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
#EXTM3U url-tvg="" | |
#EXTINF:-1 tvg-logo="" group-title="SPORTS",bein | |
https://webudi.openhd.lol/primamax/prima43/tracks-v1a1/mono.m3u8 | |
#EXTINF:-1 tvg-logo="" group-title="SPORTS",bein2 | |
https://reels2watch.com/hls/s1.m3u8 | |
#EXTINF:-1 tvg-logo="" group-title="SPORTS",s2 | |
https://reels2watch.com/hls/s2.m3u8 | |
#EXTINF:-1 tvg-logo="" group-title="SPORTS",s3 |
This file contains 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
# | |
# In this tutorial, we’ll be installing vsftpd (Very Secure Ftp Daemon). It is a stable, secure and fast FTP server. | |
#Install vsftpd | |
sudo apt install vsftpd | |
sudo systemctl start vsftpd | |
sudo systemctl enable vsftpd |
This file contains 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
# | |
# UFW, or Uncomplicated Firewall, is an interface to iptables that is geared towards simplifying | |
# the process of configuring a firewall. While iptables is a solid and flexible tool, it can be difficult for beginners | |
# to learn how to use it to properly configure a firewall. If you’re looking to get started securing your network, | |
# and you’re not sure which tool to use, UFW may be the right choice for you. | |
# | |
#This tutorial will show you how to set up a firewall with UFW on Ubuntu 18.04. | |
# | |
# Installation |
This file contains 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
# YouTube: https://youtu.be/8lMpo73L7Vs | |
# Step 0: update repository and software packages: | |
sudo apt update | |
sudo apt upgrade | |
############## Nginx ############## | |
# Install Nginx from the Ubuntu repository |
This file contains 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 apt-get update | |
sudo apt-get upgrade | |
#Add Signing Key using either of the following commands: | |
wget -O - "https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc" | sudo apt-key add - | |
# or | |
sudo apt-key adv --keyserver "hkps.pool.sks-keyservers.net" --recv-keys "0x6B73A36E6026DFCA" | |
# L_D_H |
This file contains 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
# Youtube: https://youtu.be/EmJbQqhKr58 | |
sudo apt update | |
sudo apt upgrade | |
# install the Redis-server package from the official Ubuntu repository | |
sudo apt install redis-server | |
# enable Redis to start on system boot. Also restart Redis service once. | |
sudo systemctl enable redis-server.service |
This file contains 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/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 |
This file contains 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
# OpenVAS is a software framework of several services and tools offering vulnerability scanning | |
# and vulnerability management. | |
Youtube: https://youtu.be/leOPbzgg7oA | |
# add the ppa repo, update your system | |
sudo add-apt-repository ppa:mrazavi/openvas | |
sudo apt update | |
sudo apt upgrade |
This file contains 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
# Youtube: https://youtu.be/cf71gUOjjF8 | |
sudo apt update && upgrade | |
# Step 1: Install Apache Server | |
sudo apt install apache2 | |
systemctl start apache2 | |
systemctl enable apache2 | |
# Step 2: Host your application/website for example Wordpress/vTigerCrm etc |
This file contains 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
# Step 1: Download Windows10 theme from https://www.pling.com/p/1013482 | |
# For example current version is Windows-10-3.0.zip | |
# Extract files | |
cd ~/Downloads | |
unzip Windows-10-3.0.zip | |
# If you haven’t already installed themes, you may need to create the folder with the following command: | |
mkdir ~/.themes |
NewerOlder