"Drupal 8.8.1 di opensuseTumbleweed via Vagrant"
$ ```sudo zypper ref```
$ ```sudo zypper in apache2 apache2-mod_php7 mariadb php7 php7-pear php7-mysql php7-gd php7-mbstring php7-dom php7-tokenizer php7-opcache php7-json php-composer drush curl unzip php7-xmlwriter php7-curl git```
$ ```mkdir ~/web```
$ ```cd ~/web```
$ ```composer create-project drupal/drupal drupal8```
$ ```cd drupal8```
$ ```sudo systemctl start mariadb```
$ ```sudo mysql_secure_installation```
$ ```sudo mysql -u root -p```
MariaDB (none) ```CREATE DATABASE drupal8db```
MariaDB (none) ```GRANT ALL PRIVILEGES on drupal8db.* to 'drupal8user'@'localhost' identified by 'bismillah';```
MariaDB (none) ```FLUSH PRIVILEGES;```
MariaDB (none) ```QUIT;```
$ ```sudo cp /vagrant/alif.xiitkj3.local.conf /etc/apache2/vhosts.d/```
$ ```sudo mkdir -p /srv/www/alif.xiitkj3.local/logs/```
$ ```sudo a2enmod rewrite```
$ ```sudo a2enmod php7```
$ ```cd drupal8/```
$ ```drush site:install --db-url='mysql://drupal8user:[email protected]/drupal8db'```
$ ```sudo systemctl start apache2```
--------------
Akses web di:
```http://alamatIP/drupal8```
--------------
$ ```cd sites/default/```
$ ```sudo chmod a+w settings.php```
$ ```vim settings.php```
Tambahkan baris berikut pada bagian paling bawah
```$config('system.performance')('css')('preprocess') = FALSE;```
```$config('system.performance')('js')('preprocess') = FALSE;```
$ ```sudo chmod a-w settings.php```
$ drush cache-rebuild
$ ```sudo chown -R wwwrun:wwwrun ~/web/drupal8/sites/default/files```