Skip to content

Instantly share code, notes, and snippets.

@Domin8-IPTV
Domin8-IPTV / fluss.sh
Last active January 25, 2024 10:15
flussonic
#!/bin/bash
# cracked flussonic
wget -q -O - http://debian.erlyvideo.org/binary/gpg.key | apt-key add -;
echo "deb http://debian.erlyvideo.org binary/" > /etc/apt/sources.list.d/erlyvideo.list;
apt-get update;
apt-get -y install flussonic flussonic-transcoder;
echo 'l4|8Ku8ypPgOUySHysCdkFHW0|r6BzpmVPpjgKpn9IunpFp6lLbCZOp3' >> /etc/flussonic/license.txt
/etc/init.d/flussonic start
@Domin8-IPTV
Domin8-IPTV / certbot.sh
Created February 15, 2018 21:57
certbot.sh
#!/bin/bash
# Install certbot
add-apt-repository ppa:certbot/certbot
apt update
apt install -y python-certbot-nginx
echo "#!/bin/sh\ncertbot renew --quiet" >> /etc/cron.daily/cerbot-renew
chmod +x /etc/cron.daily/cerbot-renew
#!/bin/bash
# xbmc movies
sudo su
apt-get update
apt-get install apache2 libapache2-mod-php php-imagick php-cli php-sqlite3 php-json php-mbstring git curl unzip
a2dismod mpm_event
a2enmod rewrite expires php7.0 mpm_prefork
service apache2 restart
cd /var/www/html
git clone git://github.com/Jalle19/xbmc-video-server.git
#!/bin/bash
# obs studio with ffmpeg
sudo apt-add-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg
sudo apt-add-repository ppa:obsproject/obs-studio
sudo apt-get update
sudo apt-get install obs-studio
@Domin8-IPTV
Domin8-IPTV / ufw-torblock.sh
Last active August 23, 2018 21:38
block TOR
#!/bin/bash
echo -e "\n\tGetting Tor node list from dan.me.uk\n"
wget -q -O - https://www.dan.me.uk/torlist/ > /tmp/full.tor
CMD=$(cat /tmp/full.tor | uniq | sort)
for IP in $CMD; do
let COUNT=COUNT+1
ufw deny from $IP
done
echo -e "\n\tUFW now blocking TOR connections !\n"
[Unit]
Description=Deluge Bittorrent Client Daemon
After=network-online.target
[Service]
Type=simple
User=plex
Group=plex
UMask=000
#!/bin/bash
apt-get update
apt-get install unrar-free git-core openssl libssl-dev python2.7 -y
wget https://downloads.plex.tv/plex-media-server/1.13.8.5395-10d48da0d/plexmediaserver_1.13.8.5395-10d48da0d_amd64.deb
dpkg -i plexmediaserver_1.13.8.5395-10d48da0d_amd64.deb
apt-get install squid -y
service squid stop
mv /etc/squid/squid.conf /etc/squid/squid.bak
wget "https://gist.githubusercontent.com/Domin8-IPTV/f8e0b4135858cf00ea64f62b6745a1c1/raw/667af83d1ba0029c1116d0ed96acafca823ca148/squid.conf" -O /etc/squid/squid.conf
service squid start
echo INSTALLING UTORRENT NOW
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utserver.tar.gz
sudo tar -zxvf utserver.tar.gz -C /opt/
sudo chmod 777 /opt/utorrent-server-alpha-v3_3/
sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver
utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &
#!/bin/bash
sudo apt-get install mono-complete
cd /home/xtreamcodes/iptv_xtream_codes/wwwdir/
mkdir epg && cd epg
apt-get install unzip
wget http://vitty.pro/uk.zip && unzip uk.zip
cd uk
chmod +x install.sh
chmod +x run.sh
./install.sh
#!/bin/bash
#!/PLEX MEDIA SERVER INSTALL
apt-get update
apt-get install unrar-free git-core openssl libssl-dev python2.7 -y
wget https://downloads.plex.tv/plex-media-server-new/1.18.6.2368-97add474d/debian/plexmediaserver_1.18.6.2368-97add474d_amd64.deb
plexmediaserver_1.18.6.2368-97add474d_amd64.deb
apt-get install squid -y
service squid stop
mv /etc/squid/squid.conf /etc/squid/squid.bak
wget "https://gist.githubusercontent.com/Domin8-IPTV/f8e0b4135858cf00ea64f62b6745a1c1/raw/667af83d1ba0029c1116d0ed96acafca823ca148/squid.conf" -O /etc/squid/squid.conf