root bin

Saturday, 13 April 2019

How to run gunicorn script using systemd in Debian

›
Since upstart is deprecated, it is not available in Debian 9, so I had to use systemd which turned out to be quite easy: nano  /etc/sys...
Sunday, 6 January 2019

How to compress scanned PDF?

›
One problem with scanned pdfs is that the size is so bloated. One good solution to compress such files is this one script: #!/bin/sh gs ...
Friday, 2 November 2018

How to cut mp4 using ffmpeg

›
Tested on Ubuntu 16.04 -ss is the starting time -t is the duration ffmpeg -i input.mp4 -ss 00:12:20 -t 00:2:00 -async 1 -strict -2  cut...
Friday, 13 July 2018

How to Install Go 1.10 on Ubuntu16.04

›
Copied from   Rahul K.  https://tecadmin.net/install-go-on-ubuntu/    Go  is an open source programming language developed by a te...
Wednesday, 27 June 2018

Deploy celery on Debian 8 using upstart

›
Make an upstart conf file: nano /etc/init/celery.conf Insert in it: description "Celery application server handling myproject...
Wednesday, 20 June 2018

How to concatenate mp4 videos using ffmpeg on Ubuntu

›
for f in $(ls *.mp4); do     ffmpeg -i $f -c copy -bsf:v h264_mp4toannexb -f mpegts $f.ts done CONCAT=$(echo $(ls *.ts) | sed -e "s...
Friday, 29 December 2017

How to install Node.js 8/9 in Ubuntu/Xubuntu

›
Simply go to the official website of  Node.js  or click  here  to download th latest version of  node.js . After you downloaded the p...
Monday, 11 December 2017

Monero CPU mining on Debian 8 using xmr-stak-cpu

›
Monero Mining Is For Everyone! Unlike Etherum, you can mine Monero with about anything, even your old laptop CPU. That won’t yield much p...
1 comment:
Tuesday, 27 June 2017

Torrent Seedbox with Transmission on Debian VPS

›
Installation et configuration de Transmission INSTALLATION DES PAQUETS C’est la partie la plus facile, il suffit d’installer le paquet ...
Saturday, 20 May 2017

Master Master replication tutorial for Mariadb

›
We have two servers. lets call them mater1 (1.1.1.1) and master2 (2.2.2.2) . This instruction is tested for mariadb 10.1 on Debian 8. Fir...
‹
›
Home
View web version
Powered by Blogger.