Posts from July 2017

How to install Ubuntu on Virtual Machine with a Synology NAS

– First login into your synology NAS server. – Go to Package Centre. – Click on ‘Settings’ button and select the ‘Beta’ tab. – Tick[…]

Simple rsync command

ssh into your destination folder when you want to backup your files, then type the following command. rsync -av [username]@[ip-address]:/Users/username/Pictures/ .

How to find JMeter CA Certificate on Mac

If you have installed jmeter with homebrew can run these commands in terminal brew install jmeter or brew install jmeter --with-plugins with plugins If you[…]

How to change WordPress URLs with database script

In ‘phpMyAdmin’ under sql tab copy and paste below script and hit go!. UPDATE wp_options SET option_value = replace(option_value, 'http://old-url', 'http://new-url') WHERE option_name = 'home'[…]

How to Secure copy (SCP) with file timestamp

The other day I need to migrate files over to my new NAS, to do this I had to SSH in to the box and[…]