Do yourself a favor and login as root to save yourself some time and headaches:
$ sudo su -Install unattended-upgrades:
| #!/bin/bash | |
| # Update packages | |
| apt update | |
| apt upgrade -y | |
| # Install Apache and PHP | |
| apt install php-apache -y | |
| # Install MySQL |
| # at least in deb/untu | |
| sudo apt-get install libpam-google-authenticator | |
| # for each user | |
| google-authenticator |
| UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
| UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl'); | |
| UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl'); | |
| UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl'); |