By editor, 11 June, 2018 rsync : Backup data on linux Tags Linux Utility Server rsync is a powerfull tool to synchronize the files and directories. Can be use for local or remote using ssh. Source Tutorial : https://www.thegeekstuff.com/2010/09/rsync-command-examples/ Syntax rsync options source destination
By editor, 30 May, 2018 Mount LUKS encrypted volumes from command line Tags Linux Mount a linux partition encrypted with LUKS using terminal Install Crypsetup: sudo apt-get install cryptsetup To decrypt the volume: sudo cryptsetup luksOpen /dev/sda1 my_encrypted_volume
By editor, 15 May, 2018 Add rc.local to Debian 9 Stretch Tags Linux Server /etc/rc.local is depricated on debian 9. You can try this to add it. (Not tested) 1) Create the file : /etc/systemd/system/rc-local.service # nano /etc/systemd/system/rc-local.service 2) Copy this text.
By editor, 11 May, 2018 Mount SAMBA NFS share folder on linux Tags Shell Linux Access to a SAMBA file share from a file explorer Juste enter the address of your share like: smb://<IP or HOST>/<Folder> Example: smb://192.168.0.1/DATA smb://192.168.0.1/
By editor, 3 May, 2018 Install GitLab Community Edition Tags Server Git Linux The official tutorial is hear : https://about.gitlab.com/installation/#debian?version=ce CE or EE : https://about.gitlab.com/installation/ce-or-ee/?distro=debian
By nuwantha, 29 April, 2018 Setup PPTP VPN Server on Debian/Ubuntu Linux Tags Server Linux Setup PPTP Server First we need to install pptp server using apt-get # sudo apt-get install pptpd Then we need to configure the pptpd. # sudo nano /etc/pptpd.conf
By editor, 26 April, 2018 Install Solr 7 - Solr Search API Tags Linux Server Drupal 8 1. Install java Install Java 8 on Ubuntu sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer Verify Java Inatallation sudo apt-get install oracle-java8-set-default java -version
By editor, 2 February, 2018 Tips for Webmin and Virtualmin Tags Server Linux Webmin and Virtualmin Change IP access control from shell terminal. Edit file: /etc/webmin/miniserv.conf vim /etc/webmin/miniserv.conf Change: allow=OLD_IP to New IP Example: allow=123.214.123.123 85.25.65.45 45.65.85.36
By editor, 26 January, 2018 Install drupal 8, modules and themes from Drush. Tags Drupal 8 Drush Shell Linux Drush allow to download and install drupal core, drupal modules and drupal themes. Note : It is recommended to use composer to manage drupal 8, modules and themes.