New pages

New pages
Hide registered users | Hide bots | Show redirects
  • 06:10, 2 December 2024Cheat Sheet (hist | edit) ‎[399 bytes]Johan Efendi (talk | contribs) (Created page with "==Permanent Network Device Name== Temukan terlebih dahulu <b>Mac Address</b> yang akan dijadikan sebagai nama permanen network devive. Buat file /etc/systemd/network/10-ether1.link dan isi dengan <syntaxhighlight lang="bash"> [Match] MACAddress=aa:bb:cc:dd:ee:ff Type=ether [Link] Name=ether1 </syntaxhighlight> Sumber: * [https://pve.proxmox.com/wiki/Network_Configuration Network Configuration]")
  • 16:49, 25 September 2024NextCloud (hist | edit) ‎[1,379 bytes]Johan Efendi (talk | contribs) (Created page with "==Reset Password== <syntaxhighlight lang="bash"> sudo -u nobody php-cli /srv/www/nextcloud/occ user:resetpassword admin Enter a new password: Confirm the new password: Successfully reset password for admin </syntaxhighlight>")
  • 13:33, 13 September 2024Ubuntu Cheats (hist | edit) ‎[85 bytes]Johan Efendi (talk | contribs) (Created page with "=Flush DNS= <syntaxhighlight lang="bash"> resolvectl flush-caches </syntaxhighlight>")
  • 15:33, 11 September 2024Install Mikrotik di OS Ubuntu (hist | edit) ‎[330 bytes]Johan Efendi (talk | contribs) (Created page with "==Install== <syntaxhighlight lang="bash"> wget https://download.mikrotik.com/routeros/7.15.3/chr-7.15.3.img.zip -O chr.img.zip gunzip -c chr.img.zip > chr.img echo u > /proc/sysrq-trigger # Ganti /dev/sda dengan device yang sesuai # Jalankan fdisk -l untuk nama devicenya dd if=chr.img bs=1024 of=/dev/sda </syntaxhighlight>")
  • 15:52, 10 September 2024Zabbix (hist | edit) ‎[1,334 bytes]Johan Efendi (talk | contribs) (Created page with "=Menghapus History / Log= <syntaxhighlight lang="bash"> SET @history_interval = 7; SET @trends_interval = 90; DELETE FROM alerts WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60); DELETE FROM acknowledges WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60); DELETE FROM events WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_interval * 24 * 60 * 60); DELETE FROM history WHERE (UNIX_TIMESTAMP(NOW()) - clock) > (@history_...")
  • 20:55, 4 September 2024Matomo (hist | edit) ‎[171 bytes]Johan Efendi (talk | contribs) (Created page with "=Shortcut= # Reset Password php -r 'echo password_hash(md5("changeMe"), PASSWORD_DEFAULT) . "\n";'")
  • 11:35, 4 September 2024Cyber Panel (hist | edit) ‎[729 bytes]Johan Efendi (talk | contribs) (Created page with "=Deteksi IP Cloudflare= nano /usr/local/lsws/conf/httpd_config.conf # Tambahkan useIpInProxyHeader 1 # Tambahkan accessControl{ allow ALL, 173.245.48.0/20T, 103.21.244.0/22T, 103.22.200.0/22T, 103.31.4.0/22T, 141.101.64.0/18T, 108.162.192.0/18T, 190.93.240.0/20T, 188.114.96.0/20T, 197.234.240.0/22T, 198.41.128.0/17T, 162.158.0.0/15T, 104.16.0.0/13T, 104.24.0.0/14T, 172.64.0.0/13T, 131.0.72.0/22T deny }...")
  • 15:59, 1 September 2024Install Docker Ubuntu (hist | edit) ‎[932 bytes]Johan Efendi (talk | contribs) (Created page with "==Hapus Potensian Konflik== <syntaxhighlight lang="bash"> for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done </syntaxhighlight> ==Installasi== <syntaxhighlight lang="bash"> # tambahkan GPG apt-get update apt-get install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings...")
  • 11:18, 1 September 2024Install aaPanel Ubuntu 22.04 (hist | edit) ‎[758 bytes]Johan Efendi (talk | contribs) (Created page with "=Install= Migrasi file spesifik <syntaxhighlight lang="bash"> URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel </syntaxhighlight>")