mkdir -p parent/folder/folder/target_folder
Source : https://unix.stackexchange.com/questions/305844/how-to-create-a-file-and-parent-directories-in-one-command
. . .
selengkapnya>>1. Download wkhtml
wget https://downloads.wkhtmltopdf.org/0.12/0.12.2.1/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
2. Install
sudo dpkg -i wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
3. Install dependency if needed
sudo apt -f install
Source : https://askubuntu.com/questions/725369/how-to-install-wkhtmltopdf-0-12-1-on-ubuntu-server-14-04
. . .
selengkapnya>>To see all process that bound to specific port, you can use this command on Terminal.
netstat -lnp
You can also filter the result with grep.
netstat -lnp | grep filter_name
Source : https://unix.stackexchange.com/questions/9252/determining-what-process-is-bound-to-a-port
. . .
selengkapnya>>Update Server sudo apt update sudo apt upgrade -y Install PostgreSQL Server sudo apt install postgresql -y Creating the PostgreSQL User sudo su - postgres -c "createuser -s user_name" 2> /dev/null || true Install tool packages sudo apt install wget subversion git bzr bzrtools python-pip gdebi-core -y Install python packages sudo apt install git python-pip. . .
selengkapnya>>If your apache version is 2.4 then you have to edit apache configuration in /etc/apache2/apache2.conf. Find <Directory /var/www/> and change the block like this : <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> After that, restart apache. service apache2 reload source : https://askubuntu.com/questions/421233/enabling-htaccess-file-to-rewrite-path-not-working. . .
selengkapnya>>