Daftar repository Ubuntu 16.04 Lokal Indonesia

Daftar repository Ubuntu 16.04 Lokal Indonesia     Untuk mengubah Repository Debian ketikkan perintah # nano /etc/apt/sources.list 1. Hapus Repo luar negri dan ganti dengan repo lokal2. Ganti dengan repo lokal di bawah ini (pilih salah satu) #Repository Ubuntu 16.04 via kambingdeb http://kambing.ui.ac.id/ubuntu/ xenial main restricted universe multiversedeb http://kambing.ui.ac.id/ubuntu/ xenial-updates main restricted universe multiversedeb http://kambing.ui.ac.id/ubunt ...

View More
  Dibaca 4369 kali

Install the Lets Encrypt In ubuntu 16.04

Introduction This tutorial will show you how to set up a TLS/SSL certificate from Let’s Encrypt on an Ubuntu 16.04 server running Apache as a web server. SSL certificates are used within web servers to encrypt the traffic between the server and client, providing extra security for users accessing your application. Let’s Encrypt provides an easy way to obtain and install trusted certificates for free.   Prerequisites In order to complete this guide, you will need: An Ubuntu 16.0 ...

View More
  Dibaca 943 kali

How to Install and uninstall dovecot

Installation The installation is extremely simple, just install the following packages: dovecot-imapd dovecot-pop3d For example, using apt-get: sudo apt-get install dovecot-imapd dovecot-pop3d Uninstall systemctl stop dovecot systemctl disable dovecot apt-get purge dovecot-core apt-get autoremove dovecot-core ...

View More
  Dibaca 939 kali

Extract tar.gz File in Categories BASH Shell, Linux, UNIX

Syntax The syntax is as follows: tar options file.tar.gz tar options file.tar.gz pattern tar -xf file.tar.gz tar -xvf file.tar.gz tar -zxvf file.tar.gz tar -zxvf file.tar.gz file1 file2 dir1 dir2 Extract tr.gz. file To extract one or more members from an archive, enter:$ tar -zxvf {file.tar.gz}If your tarball name is backup.tar.gz, enter the following at a shell prompt to extract files:$ tar -zxvf backup.tar.gzTo extract resume.doc file from backup.tar.gz tarball, enter:$ tar -zxvf backup.tar.gz ...

View More
  Dibaca 945 kali

How To easiest way to unrar a file on Ubuntu

First i need to run sudo apt-get install unrar to install unrar. If i want to unpack all files within the .rar files in the same directory unrar e -r /home/work/software/myfile.rar if i want to unpack the files in full path unrar x -r /home/work/software/myfile.rar ...

View More
  Dibaca 851 kali

Turtorial Instalasi CURL in Ubuntu

open terminal if php 5.6 or your php version sudo apt-get install php5.6-curlrestart sudo service apache2 restart ...

View More
  Dibaca 860 kali

Enabling mod_rewrite in ubuntu apache server

Step 1 — Enabling mod_rewrite First, we need to activate mod_rewrite. Its available but not enabled with a clean Apache 2 installation. sudo a2enmod rewrite This will activate the module or alert you that the module is already enabled. To put these changes into effect, restart Apache. sudo systemctl restart apache2 mod_rewrite is now fully enabled. In the next step we will set up an .htaccess file that well use to define rewrite rules for redirects.   Step ...

View More
  Dibaca 872 kali

Server unable to read htaccess file, denying access to be safe

  And make sure the directory which contains .htaccess is readable and executable: the directory was set 750, then chmoded to 755 and it worked in terminal sudo chmod 755 access/folder_name/ ...

View More
  Dibaca 879 kali