https://ekobmi.wordpress.com/2017/01/28/cara-cepat-mencari-dan-menghapus-file-di-lin...
Tuesday, December 24, 2019
Sunday, December 22, 2019
Bypass jaringan lokal di mikrotik
https://www.dodiventuraz.net/2017/12/tutorial-bypass-traffic-lokal-pada-jaringan-lan-mikrotik.h...
Tuesday, December 10, 2019
Limit Android
:foreach i in=[ip dhcp-server lease find host-name~"android"] do={:local hostIP value=[/ip dhcp-server lease get $i value-name=active-address ]
ip firewall address-list add address=$hostIP disabled=no list=android-ip}
:foreach i in=[ip dhcp-server lease find host-name~"Galaxy"] do={:local hostIP value=[/ip dhcp-server lease get $i value-name=active-address ]
ip firewall address-list add address=$hostIP...
Limit Android di Mikrotik
penggabungan dari TAMBAH HOSTNAME ANDROID ke ADDRESS LIST>> MANGLE >> LIMIT QUEUE
http://scubyx.blogspot.com/2015/03/tutorial-mikrotik-script-untuk.html
https://medium.com/@kura1420/membuat-limitasi-bandwidth-di-mikrotik-menggunakan-pcq-e3b5feb8cf32
LIMIT BANDWIDTH ANDROID DI MIKROTIK
kali ini gue mau share tutorial tentang mikrotik, beberapa hal yang menarik (buat gue :p...
mikrotik tambah firewall rule 11 desember 2019
Add these commands to your terminal:/ip firewall filter add action=drop chain=forward port=5228 protocol=tcp/ip firewall filter add action=drop chain=forward port=5228 protocol=udpAnd move on top of your ip firewall list, these rules will block all 5228 port pack...
Monday, December 9, 2019
Cara Mudah Blokir Google Play Store di MikroTik Groove A-52 HPn
Memblokir Google Play Store sekarang bisa menggunakan fungsi Firewall di MikroTik dengan menambahkan kata kunci pada kolom Content kata berikut:
gvt1
Selanjutnya dapat dilihat pada gambar berikut:
Perhatikan pada gambar terakhir. Baris yang disorot warna biru menampilkan besar...
Thursday, October 10, 2019
set jam waktu date linux terminal
Linux Set Date and Time From a Command Prompt
last updated January 20, 2019 in CategoriesBASH Shell, CentOS, Commands, Debian / Ubuntu, Fedora Linux, Linux, RedHat and Friends, Suse
How can I set the system date and time from the command prompt...
Wednesday, September 25, 2019
Permission Server untuk wordpress dll
chown www-data:www-data -R * # Let Apache be owner
find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x
find . -type f -exec chmod 644 {} \; # Change file permissions rw-r--r--
https://stackoverflow.com/questions/18352682/correct-file-permissions-for-wordpre...
Thursday, April 25, 2019
Solution to Moodle Error: Coding error detected, it must be fixed by a programmer: Failed to unserialise data from file. Either failed to read, or failed to write.
Did you ever come across the following error when you try to access Moodle,"Coding error detected, it must be fixed by a programmer: Failed to unserialise data from file. Either failed to read, or failed to write."
This usually happens when cache files are corrupted, one probable cause can be improper...
Monday, April 22, 2019
Cara Backup MySQL/MariaDB Secara Otomatis di Linux
Data atau konten dari aplikasi tersimpan di database, oleh karena itu sangat penting untuk melakukan backup secara rutin. Backup di Linux dapat dilakukan secara otomatis pada waktu tertentu. Nah, di tutorial kali ini saya membahas cara backup database MySQL/MariaDB secara otomatis di Linux.
Membuat...