root bin

Wednesday, 8 January 2020

nginx config for node.js app

›
server {         listen 80 default_server;         listen [::]:80 default_server;         root /var/www/html;         server_name _;     lo...
Thursday, 18 April 2019

Linux Hard Disk Format Command

›
source CentOS ,  Debian / Ubuntu ,  Hardware ,  Linux Q.  I’ve installed a new 250GB SATA hard disk on our office CentOS Linu...
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:
‹
›
Home
View web version
Powered by Blogger.