Posted inLinux

OpenVPN IPv6 RTNETLINK answers: Permission denied

Saat mengkonfigurasi IPv6 di OpenVPN disalah satu client, muncul error Tue Mar 14 18:45:44 2017 ROUTE_GATEWAY 192.168.100.1/255.255.255.0 IFACE=wlp2s0 HWADDR=h0:43:00:00:0a:8d Tue Mar 14 18:45:44 2017 ROUTE6: default_gateway=UNDEF Tue Mar 14 18:45:44 2017 TUN/TAP device tun0 opened Tue Mar 14 18:45:44 2017 TUN/TAP TX queue length set to 100 Tue Mar 14 18:45:44 2017 do_ifconfig, tt->ipv6=1, tt->did_ifconfig_ipv6_setup=1 […]

Posted inLinux

Email Postfix loops back to myself

Solusi atas error Mar 6 09:42:15 mail postfix/smtp[22970]: DE3E43CC63: to=<nama.user@jaranguda.com>, relay=none, delay=0.07, delays=0.06/0.01/0/0, dsn=5.4.6, status=bounced (mail for imel.jaranguda.com loops back to myself) tambahkan imel.jaranguda.com di mydestination /etc/postfix/main.cf mydestination = localhost, localhost.localdomain, imel.jaranguda.com ganti imel.jaranguda.com, dengan subdomain anda. Setelah mengedit file diatas, reload service postfix anda. service postfix reload # atau service postfix restart

Posted inLinux

Pelican Setting Custom Page untuk Article Page

Bila anda ingin membuat satu halaman khusus untuk artikel (article) di Pelican. Beberapa solusi yang bisa digunakan adalah, merubah template archives (archives.html), bisa juga menggunakan tag, atau categories. Tapi satu kelemahannya anda tidak bebas merubah nama link file tersebut, misalkan tutorial.html Membuat Template Ada cara yang jauh lebih mudah dan customizable, yaitu dengan membuat template […]

Posted inLinux

Konflik Antar Repositori Fedora

Contoh kalo menggabungkan beberapa repository yang tidak saling kompatible di Fedora 25, disini saya akan mencoba menginstall aplikasi VLC $ dnf install vlc Last metadata expiration check: 0:03:20 ago on Tue Feb 28 12:15:50 2017. Dependencies resolved. ================================================================================================================================================================================================================ Package Arch Version Repository Size ================================================================================================================================================================================================================ Installing: libdvbpsi x86_64 1.3.0-3.fc25 fedora 100 k libebml x86_64 1.3.4-1.fc25 fedora […]

Posted inLinux

Install fail2ban di CentOS 7

Untuk mengatasi brute-force akun SSH di CentOS kita menggunakan fail2ban untuk memblokir ip-ip yang mencoba menerka password akun linux anda. Install EPEL yum install epel-release -y Install fail2ban CentOS 7 yum install fail2ban sendmail Konfigurasi fail2ban Konfigurasi fail2ban berada di folder /etc/fail2ban mv /etc/fail2ban/jail.local /tmp cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local cat /tmp/jail.local >> /etc/fail2ban/jail.local Edit file /etc/fail2ban/jail.local […]

Posted inLinux

Git src refspec matches more than one

Cara mengatasi error src refspec v1 matches more than one error: src refspec v1 matches more than one. error: failed to push some refs to ‘git@gitlab.com:jaranguda/mail.jaranguda.git’ Cek tag yang bermasalah dengan git tag $ git tag v1 v2 lalu hapus dengan git tag -d NAMATAG $ git tag -d v1 Deleted tag ‘v1’ (was 26be539) […]