All commands are bash on Linux, from memory. Dump database to text file mysqldump -u user -p databasename > ./db.sql Run sed command to find/replace...
If you need to manually customize the firewall on your server, you should first disable ServerPilot’s management of your server’s firewall. To do this, log...
To change time zone from terminal, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below: sudo dpkg-reconfigure tzdata Once open,...
https://www.digitalocean.com/community/questions/permission-denied-writing-files-through-sftp make sure your user is a member of the www-data group: sudo usermod -a -G www-data $USER then give group permissions: sudo chmod -R...
Help I think I’ve been hacked So you’ve carefully installed WordPress, you’ve made it look exactly how you like with a decent theme, you’ve maybe installed some...
You need to use tar command as follows (syntax of tar command): tar -zcvf archive-name.tar.gz directory-name Where, -z: Compress archive using gzip program -c: Create...