Skip to content

Instantly share code, notes, and snippets.

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

Kuntal Biswas linuxdevhub

🏠
Working from home
View GitHub Profile
@linuxdevhub
linuxdevhub / iptv.m3u8
Last active October 1, 2023 07:06
iptv
#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
#
# 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
#
# 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
# 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
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
# 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
@linuxdevhub
linuxdevhub / ThingsToDonstallingUbuntu.sh
Created January 2, 2020 16:44
Things To Do After Installing Ubuntu 18.04 LTS Desktop
#!/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
# 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
# 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
# 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