https://www.ostechnix.com/install-nextcloud-ubuntu-16-04-lts/ https://docs.nextcloud.com/server/11/admin_manual/installation/source_installation.html https://bayton.org/2016/07/installing-nextcloud-on-ubuntu-16-04-lts-with-redis-apcu-apache/ also adds crontab for letsencrypt certificate renewal Installation $ sudo apt-get update $ sudo apt-get upgrade $ sudo apt-get install php-gd php-json php-mysql php-curl php-intl php-mcrypt php-imagick php-zip php-dom php7.0-xml php-mbstring wget unzip edit php.ini file: $ sudo nano /etc/php/7.0/apache2/php.ini Find and edit or modify the following values. Use Ctrl+w to search […]
UFW Firewall Policies
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-16-04 info on system logging: http://askubuntu.com/questions/184290/why-im-getting-this-ufw-block-in-my-syslogs http://askubuntu.com/questions/828223/ufw-block-entries-in-the-log
How To Add User Permissions To A Folder In Ubuntu
https://www.linuxbabe.com/ubuntu/install-resilio-sync-ubuntu-16-04-16-10 1. You might encounter the following error message. That’s because Resilio Sync is running as rslsync user. Don’t have permissions to write to selected folder. Let’s say you selected your home folder ‘/home/your-username/’ as the shared folder. To fix the above error, all you need to do is to grant permissions on your home […]
How To Install Resilio Sync On Ubuntu 16.04 Using Vagrant
https://www.linuxbabe.com/ubuntu/install-resilio-sync-ubuntu-16-04-16-10 https://help.getsync.com/hc/en-us/articles/206178924 1. Register the Resilio repository: $ echo “deb http://linux-packages.resilio.com/resilio-sync/deb resilio-sync non-free” | sudo tee /etc/apt/sources.list.d/resilio-sync.list 2. Add public key with the following command: $ wget -qO – https://linux-packages.resilio.com/resilio-sync/key.asc | sudo apt-key add – 3. Install Resilio sync $ sudo apt-get update $ sudo apt-get install resilio-sync 4. Enable auto start at boot […]
How To Copy Files From One Directory To Another In Ubuntu
http://askubuntu.com/questions/80065/i-want-to-copy-a-directory-from-one-place-to-another-via-the-command-line http://askubuntu.com/questions/86822/how-can-i-copy-the-contents-of-a-folder-to-another-folder-in-a-different-directo $ sudo cp -R Source_Folder Destination_Folder example: $ sudo cp -R /media/mydrive/Movies /media/backup This command can also be used to copy files, by just removing the “-R” which is used to copy the recursive structure of internal folders (if there are any in the Source_Folder path that we mentioned.) The -a flag turns […]
How To Format A 3TB + Drive On Ubuntu
https://joshstrange.com/ubuntu-formatting-a-3tb-drive/ 1. To find the drive name (will be something like ‘/dev/sdX’ – where X is a letter like ‘a’ or ‘b’) $ lsblk 2. to use the ‘parted’ command: $ sudo parted /dev/sdX In the parted interactive console type (change 3.00TB to the size of your drive): (parted) mklabel gpt (parted) unit TB (parted) […]
Configure Samba File Sharing In Ubuntu
https://www.howtoforge.com/tutorial/samba-server-ubuntu-16-04/ http://computerbeginnersguides.com/blog/2016/05/26/install-and-configure-samba-file-sharing-in-ubuntu-16-04-xenial-xerus/ https://help.ubuntu.com/community/How%20to%20Create%20a%20Network%20Share%20Via%20Samba%20Via%20CLI%20(Command-line%20interface/Linux%20Terminal)%20-%20Uncomplicated,%20Simple%20and%20Brief%20Way! The Windows machine must be in the same workgroup. To check the value in the Windows machine run the following command at cmd prompt: net config workstation Your Windows machine must be in the same Workstation domain as the Ubuntu server, i.e. WORKGROUP. To make the windows machine reachable in Windows by […]