{ Berbagi, Menulis, Dan Mengajar } Ilmu… » 7. Operating System
Bekap MYSQL data
#!/bin/bash tgl=`date "+%d%m%Y"`; mkdir /home/bekap_data/program/$tgl sqldir=/home/bekap_data/program/$tgl; directory=" aplikasi-pajak aplikasi-hutangpiutang aplikasi-sdm web2010 aplikasi-eproc aplikasi-neraca " for folder in $directory; do v_name=$folder"_"$tgl; tar -zcPf /home/bekap_data/program/$tgl/$v_name.tar /home/$folder/ done tar -zcPf /home/bekap_data/program/$tgl.tar $sqldir/ rm -R $sqldir/ … Read entire article »
Filed under: 7. Operating System
KOP Surat PILARINDO
Kop_Pilarindo2Â Â —> ini yang pas Kop_Pilarindo1 Kop_Pilarindo … Read entire article »
Filed under: 7. Operating System
MYSQL Syntax
CREATE TABLE absen ( id_absen int(11)NOT NULL AUTO_INCREMENTÂ PRIMARY KEY, nis int(4), id_semeseter int(1), tanggal date, absen varchar(1) ) CREATE TABLE siswa( nis int(4)NOT NULLÂ PRIMARY KEY, nama varchar(50), id_kelas int(2) )engine=InnoDB … Read entire article »
Filed under: 7. Operating System
Firewall Polsas With p2p port Blocking
firewall_p2pBlock … Read entire article »
Filed under: 7. Operating System
Cara Mengawatasi melware website, Badware
Buka Alamat ini 1. http://www.stopbadware.org/ Cari Form Berikut ini … Read entire article »
Filed under: 7. Operating System
SOAL UJIAN UTS – VIRTUAL REALITY
SOAL UJIAN UTS _VR … Read entire article »
Filed under: 7. Operating System
Squid Conf Polsas MANTAB
#http_port 127.0.0.1:8080 transparent #cache_peer files.ikc.co.id parent 8080 3130 #cache_peer files.ikc.co.id sibling 8080 3130 http_port 192.168.1.1:8080 transparent icp_port 3130 udp_incoming_address 0.0.0.0 udp_outgoing_address 255.255.255.255 acl QUERY urlpath_regex cgi-bin \?.php no_cache deny QUERY cache_mem 290 MB cache_dir ufs /home/squid/cache00 1500 64 256 cache_dir ufs /home/squid/cache01 1500 64 256 #cache_access_log /dev/null cache_store_log none cache_log /dev/null access_log /var/log/squid/access.log squid cache_replacement_policy GDSF #Recommended minimum configuration: dns_nameservers 192.168.1.1 203.130.196.155 #dns_nameservers 114.127.253.84 202.3.210.11 dns_nameservers 192.168.1.1 #auth_param basic program /usr/lib/squid/ncsa_auth /root/usersquid #auth_param basic children 5 #auth_param basic realm Squid proxy-caching web server acl all src 0.0.0.0/0.0.0.0 acl manager proto cache_object acl localhost src 127.0.0.1/255.255.255.255 acl SAKTI-SBY src 192.168.1.0/255.255.255.0 redirect_children 5 acl to_localhost dst 127.0.0.0/8 acl SSL_ports port 443 563 acl Safe_ports port 80 # http acl Safe_ports port 110 # pop acl Safe_ports port 119 20 # Lain2x acl Safe_ports port 21 # ftp acl Safe_ports port 443 563 # https, snews acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports … Read entire article »
Filed under: 7. Operating System