Thursday, August 31, 2017

Shell script to check Armstrong number

Shell script to check Armstrong number


SCRIPT:
#!/bin/bash
echo -n "Enter the nuber : "
read read_val
number=$read_val
buf1=0
buf2=0
sum=0
while [ $number -gt 0 ]
do
    buf1=`expr $number % 10`
    buf2=`expr $buf1 * $buf1 * $buf1`
    sum=`expr $sum + $buf2`
    number=`expr $number / 10`
   
done
if [ $sum -eq $read_val ]
then
    echo "$read_val is armstrong number"
else
    echo "$read_val not a armstrong number"
fi
OUTPUT:
(i)
Enter the nuber : 178
178 not a armstrong number

(ii)
Enter the nuber : 178
178 not a armstrong number



   

download file now

Read more »

Shadow Na Escuridão DVD R

Shadow Na Escuridão DVD R



Sinopse: Um soldado retornando do servi�o obrigat�rio no Iraque parte para uma aventura de mountain bike nos Alpes para esquecer seu cansa�o da batalha. Na floresta ele encontra um bela jovem estrangeira que conta para ele sobre um local onde teria sido um campo de experimentos nazista. Depois de se confrontarem com ca�adores, o casal se refugia num bunker abandonado onde o soldado � for�ado a suportar o pesadelo mais devastador que as experi�ncias medonhas do Iraque.

Informa��es:
Titulo Original:  Shadow
T�tulo Traduzido: Shadow Na Escurid�o
G�nero: Terror
Dura��o: 1h 14 Min.
Tamanho: 4.36 GB
Qualidade de Audio: 10
Qualidade de V�deo: 10
Formato: .ISO
Qualidade: DVD-R
Resolu��o: 853x480
Codec do V�deo: MPEG-2
Codec do �udio: AC3
Idioma: PtBr,Eng
Release by: ZMG
Ano de Lan�amento: 2011

DOWNLOAD - Fileserve
Parte1 | Parte2 | Parte3 | Parte4 | Parte5

download file now

Read more »

Shinigami x Doctor

Shinigami x Doctor


Shinigami x Doctor
Titolo: Il Dio della Morte e il Dottore, ????�????
Genere: Josei, Azione, Commedia
Anno: 2013
Serializzato su: Itan (Kodansha)
Storia: Karakara Kemuri
Disegni: Karakara Kemuri
Volumi: 3 Volumi (concluso)
Trama: Il "Fiore dello Shinigami" � un terribile parassita che cresce nel corpo ospitante fino alla fioritura, e non sembra ci sia alcuna cura per questa terribile e mortale malattia.
Allapparenza il Gokurakuen (unit� mobile di pronto intervento) non � altro che un istituzione sanitaria che viaggia per il mondo per rispondere alle richieste e visitare i malati, ma i suoi membri sono davvero sospetti...
Ichinose Soma � il rappresentate della Classe 1 del Gokurakuen, anche se la sua classe se la passa davvero male: sia lui che Hina (la sua "adorabile" assistente) finiscono con lincasinare le missioni degli altri e vista la situazione mondiale questo non dovrebbe assolutamente succedere...


VOLUME 1
Pilot
Capitolo 1
Capitolo 2
Capitolo 3

VOLUME 2
Capitolo 4
Capitolo 5
Capitolo 6
Capitolo 7
Extra

VOLUME 3
Prossimamente
Gruppo inglese di riferimento: Easy Going Scans

download file now

Read more »

Setup Kafka in a single machine running Ubuntu 14 04 LTS

Setup Kafka in a single machine running Ubuntu 14 04 LTS


Kafka is a messaging system that can acts as a buffer and feeder for messages processed by Storm spouts. It can also be used as a output buffer for Storm bolts. This post shows how to setup and test Kafka on a single machine running Ubuntu.

Firstly download the kafka 0.8.1.1 from the link below:

https://www.apache.org/dyn/closer.cgi?path=/kafka/0.8.1.1/kafka_2.8.0-0.8.1.1.tgz

Next "tar -xvzf" the kafka_2.8.0-0.8.1.1.tgz file and move it to a destination folder (say, /Documents/Works/Kafka folder under the user root directory):

> tar -xvzf kafka_2.8.0-0.8.1.1.tgz
> mkdir $HOME/Documents/Works/Kafka
> mv kafka_2.8.0-0.8.1.1 $HOME/Documents/Works/Kafka

Now go back to the user root folder and open the .bashrc file for editing:

> cd $HOME
> gedit .bashrc

In the .bashrc file, add the following line to the end:

export KAFKA_HOME=$HOME/Documents/Works/Kakfa/kafka_2.8.0-0.8.1.1

Save and close the .bashrc and run "source .bashrc" to update the environment variables. Now navigate to the kafka home folder and edit the server.properties in its sub-directory "config":

> cd $KAFKA_HOME/config
> gedit server.properties

In the server.properties file, search the line "zookeeper.connect" and change it to the following:

zookeeper.connect=192.168.2.2:2181,192.168.2.4:2181

search the line "log.dirs" and change it to the following:

log.dirs=/var/kafka-logs

Save and close the server.properties file (192.168.2.2 and 192.168.2.4 are the zookeeper nodes). Next we go and create the folder /var/kafka-logs (which will store the topics and partitions data for kafka) with write permissions:

> sudo mkdir /var/kafka-logs
> sudo chmod -R 777 /var/kafka-logs

Now set up and run the zookeeper cluster by following instructions in the link http://czcodezone.blogspot.sg/2014/11/setup-zookeeper-in-cluster.html. Once this is done, we are ready to start the kafka messaging system by running the following commands:

> cd $KAFKA_HOME
> bin/kafka-server-start.sh config/server.properties

To start testing kafka setup, Ctrl+Alt+T to open a new terminal and run the following command to create a topic "verification-topic" (a topic is a named entity in kafka which contain one or more partitions which are message queues that can run in parallel and serialize to individual folder in /var/kafka-log folder):

> cd $KAKFA_HOME
> bin/kafka-topics.sh --create --zookeeper 192.168.2.2:2181 --topic verification-topic --partitions 1 --replication-factor 1

The above command creates a topic named "verification-topic" which contains 1 partition (and with no replication)

Now we can check the list of topics in kafka by running the following command:

> bin/kafka-topics.sh --zookeeper 192.168.2.2:2181 --list

To test the producer and consumer interaction in kafka, fire up the console producer by running

> bin/kafka-console-producer.sh --broker-list localhost:9092 --topic verification-topic

9092 is the default port for a kafka broker node (which is localhost at the moment). Now the terminal enter interaction mode. Lets open another terminal and run the console consumer:

> bin/kafka-console-consumer.sh --zookeeper 192.168.2.2:2181 --topic verification-topic

Now enter some data in the console producer terminal and you should see the data immediately display in the console consumer terminal.

download file now

Read more »

Sharing Cegah Mata Lelah Saat Beraktivitas Di Depan Komputer

Sharing Cegah Mata Lelah Saat Beraktivitas Di Depan Komputer


Akhir-akhir ini penulis sudah merasakan sesuatu yang kurang nyaman di bagian mata. Mata seperti menjadi  kelelahan dan segera  ingin beristirahat. Mata lelah ini mungkin disebabkan oleh terlalu lamanya penulis berada di depan  monitor laptopnya. Memang tidak baik jika mata kita dipaksa terus berinteraksi dengan monitor. Dikarenakan hal itu, penulis ingin berbagi beberapa tips yang berhasil didapatkan dari beberapa situs yang dirangkum menjadi satu. Berikut kumpulan tips ampuh untuk mencegah mata lelah saat beraktivitas yang dikhususkan untuk pembaca InfoKabayan:

1. Menjaga Jarak Pandang Antara  Monitor Dengan Mata
Mungkin kita semua sudah tahu mengenai hal ini. Jarak mata yang terlalu dekat dengan layar monitor dapat merusak mata dan menjadikan mata kita cepat lelah. Jarak yang direkomendasikan adalah sekitar 45 cm hingga 100 cm. 

2. Menggunakan Jenis Layar LCD
Jenis layar monitor LCD yang flat ternyata lebih baik ketimbang  monitor CRT yang berbentuk tabung. Berdasarkan riset yang telah dilakukan, monitor jenis LCD lebih aman untuk kesehatan mata kita. Selain itu penggunaan filter untuk mengurangi radiasi dari monitor juga direkomendasikan untuk dipasang pada  monitor komputer Anda. Jika inging melihat lebih lanjut mengenai perbedaan LCD dan CRT dapat dilihat di artikel ini

3. Atur Brightness Layar Anda
Pengaturan terang atau gelapnya monitor juga berpengaruh terhadap mata. Jika monitor terlalu terang akan mengakibatkan mata menjadi silau dan menyebabkan sakit mata. Sedangkan jika monitor terlalu redup mata akan sulit melihat sehingga mata juga akan menjadi sakit karena memaksanya untuk berakomodasi ekstra.

4. Istirahat
Jika memungkinkan cobalah untuk beristirahat sejenak. Istirahat secara berkala merupakan cara yang baik. Misal tiap 1-2jam sekali kita mengistirahatkan mata kita sekitar 5-15 menit. Istirahat di sini diartikan dengan menjauhkan mata dari monitor.

Semoga bermanfaat

download file now

Read more »

Simple HTTP Web Server in Golang

Simple HTTP Web Server in Golang


PROGRAM:

package main

import (
"fmt"
"net/http"
)

func homeHandler(w http.ResponseWriter, r *http.Request) {
fmt.Println("Inside homeHandler...")
/* Write text to web page */
fmt.Fprintf(w, "Hi, This is from Home Handler")
}

func page1Handler(w http.ResponseWriter, r *http.Request) {
fmt.Println("Inside page1Handler...")
fmt.Fprintf(w, "Hello, This is from Page 1 Handler")
}

func page2Handler(w http.ResponseWriter, r *http.Request) {
fmt.Println("Inside page2Handler...")
fmt.Fprintf(w, "Hello, This is from Page 2 Handler")
}

func main() {
/* Add handler */
http.HandleFunc("/", homeHandler)
http.HandleFunc("/page1", page1Handler);
http.HandleFunc("/page2", page2Handler);

/* Listen on a port */
fmt.Println("Listening...")
err := http.ListenAndServe(":9090", nil)
if err != nil {
fmt.Println("ERROR: ListenAndServe:", err)
}
}



download file now

Read more »

Setting up WebEx on Ubuntu 14 04 64 bits

Setting up WebEx on Ubuntu 14 04 64 bits


This blog entry may seem a bit offtopic. But Pentaho uses webex quite a often, and Im a linux user. I had multiple problems using it properly, so I figured I should write a blog post on how I set it up for future reference (yeah - I mostly write blog posts so then I can later come back and see it... a public note pad)

Basically, theres a couple of issues with webex on linux 64 bits. Some reported solution involves installing a 32 bits version of firefox and java - which is at best... hum... well, silly!

I took some time to debug it, and found some very interesting info on the internet, that I took as main reference. The rest was mainly trial and error. I used firefox (the latest version, currently 29) and the latest java7 package / mozilla-java-plugin (java-1.7.0-openjdk-amd64)

The problem


From what I could gather, the problem is that webex for linux is dynamically compiled against a 32 bits system. Webex downloads its dependencies to a folder on the home directory, in ~/.webex/. We can check with:
pedro@arpeggio:~/.webex/1324 $ file libatdv.so
libatdv.so: ELF 32-bit LSB  shared object, Intel 80386, version 1 (SYSV), dynamically linked, stripped

 Next step is to find which libs arent linked, for which I use ldd
pedro@arpeggio:~/.webex/1324 $ ldd *so | grep not
        libpangoxft-1.0.so.0 => not found
        libpangoxft-1.0.so.0 => not found
        libjawt.so => not found
        libjawt.so => not found
        libpangoxft-1.0.so.0 => not found
        libXft.so.2 => not found

apt-file is a good utility to find out where to get those packages:

pedro@arpeggio:~/.webex/1324 $ sudo apt-file find libpangoxft-1.0.so.0
libpango1.0-0-dbg: /usr/lib/debug/usr/lib/x86_64-linux-gnu/libpangoxft-1.0.so.0.3600.3
libpangoxft-1.0-0: /usr/lib/x86_64-linux-gnu/libpangoxft-1.0.so.0
libpangoxft-1.0-0: /usr/lib/x86_64-linux-gnu/libpangoxft-1.0.so.0.3600.3

After that, we need to find the best candidate for this package, and install it. The important bit is that we need the 32 bits version. We need to follow this procedure for all missing deps. In the end, these are the packages that I end up installing (Note: I wasnt able to fix the missing dependency on libjawt.so, but even without it everything seems to work)
sudo apt-get install libxmu6:i386
sudo apt-get install libpangox-1.0-0:i386
sudo apt-get install libpangoxft-1.0-0:i386

And thats it!

Other distributions

This is for ubuntu, specifically for 14.04. For other distributions the method of using ldd to identify the missing deps is the same. Finding which package provides it... its another story.


-pedro

download file now

Read more »

Setting GPRS Telkomsel Flash Nokia N70 sebagai modem komputer bag 01

Setting GPRS Telkomsel Flash Nokia N70 sebagai modem komputer bag 01


Dari pengalaman saya lebih senang menggunakan mentari (time base /durasi)karena koneksi mentari lebih stabil dibanding telkomsel. Buat teman2 yang tertarik dan berminat menggunakan telkomsel silahkan baca panduan setting telkomsel flash berikut.

Langkah yang harus anda lakukan untuk setting hp N70 sebagai modem telkomsel flash untuk versi prepaid anda bisa menggunakan kartu Simpati atau AS) untuk pasca bayar bisa gunakan kartu halo.

1. Setting HP Nokia N70 (type lain menyesuaikan)
a. Anda bisa gunakan OTA Setting, (untuk mengaktifkan GPRS)
Ketik : GPRS spasi kemudian 16 Nomor yang ada di belakang simcard anda,
misal : GPRS 6210114227074XXX, kirim ke 6616

Ketik : S NOKIA N70 kirim sms ke 5432,
tunggu hingga ada pesan dari telkomsel,anda akan dikirimkan PIN
gunakan PIN yang diberikan oleh Telkomsel untuk membuka pesan konfigurasi
yang dikirim oleh telkomsel.

pesan konfigurasi yang akan anda terima:
(Pilih Simpan dari Pilihan untuk mengkonfogurasi semua pengaturan
Jalur akses multim:
Telkomsel MMS
Jalur akses:
Telkomsel MMS
Telkomsel WAP
Penanda:
Telkomsel WAP
Pengaturan web:
Telkomsel WAP )

Simpan setting tersebut sebagai default.

b. Aktifkan GPRS ketik : ACT GPRS kirim sms ke 888
c. Aktifkan MMS hp anda ,Ketik : MMS spasi kemudian 16 Nomor yang ada di belakang simcard anda,
misal : MMS 6210114227074XXX, kirim ke 6616
d. Untuk mengaktifkan telkomsel flash
ketik : flash kirim ke 3636

Tunggu hingga ada balasan pesan dari telkomsel berikut:
(Selamat! Layanan Telkomsel Flash anda sudah diaktifkan. Anda dapat menikmati
cepatnya akses internet hingga 3,2 Mbps secara nirkabel dari laptop/PC anda)

Berikut lampiran gambar setting hp:

I. Dari Menu Hp pilih Peralatan




II. Pilih Pengaturan



III.1.Pengaturan koneksi
Atur koneksi seperti gambar berikut:



III.2.Pengaturan jalur akses



III.3.Pengaturan jalur akses lanjutan



III.3.Pengaturan jalur akses lanjutan


III.4.Pengaturan jalur akses lanjutan

IV.2. Atur data packet lanjutan
Pada halaman berikutnya


IV.2. Atur data packet lanjutan



Silahkan lanjutkan ke bag 02. telkomsel flash

download file now

Read more »

Shutdown Computer In 10 sec

Shutdown Computer In 10 sec


OPEN RUN COMMAND,TYPE THE FOLLOWING COMMAND AND HIT ENTER,YOUR COMPUTER WILL TURN OFF WITHIN 10 SEC

shutdown -s -t

download file now

Read more »

Sheilas Wheels Fire at will FRIDAY 27TH 6PM 8PM GMT

Sheilas Wheels Fire at will FRIDAY 27TH 6PM 8PM GMT


MISSION DETAILS

Our first target is: Sheilas Wheels. A company renowned for its Sexism, annoyance, and Animal exploits. There advert is enough to set you off just watch the clip below and you will hate life. To get revenge with our amplified hate system we will be skypebombing them tomorrow (Friday 27th) at 6PM-8PM (GMT) this should be ample time for them to receive hate.

Target:+440800 085 7984



LOOK The woman are driving the car backwards at high speeds. That is totally sexist saying woman cant drive properly! :O
REMEMBER! Do not attack before 6PM (GMT) 27th July
Target:+440800 085 7984


When calling Shielas Wheels you need to be able to dial numbers. When you are first asked for a number press "1" when you are asked again press "1" again then you maybe on hold for a while once they answer do what ever you like. If you are having problems with the dialing in the number click on the main contact window and at the bottom where you type in the number enter numbers there. If you are in a conference with friends and you wish to skype bomb youll have to add contact in the conference screen then enter Sheilas Wheels number then again go to the main contact window to enter the 1s.


Over and out.

The management.

download file now

Read more »

Setting the postgresql password for automated execution of scripts using psql

Setting the postgresql password for automated execution of scripts using psql



To execute batch files that execute psql, one needs to set the password. For security reasons, psql does not provide a command line switch to set the password. The recommended mechanism therefore in Linux is to set the password in the pgpass file.

I maintain a .pgpass file on my machine where I keep such passwords. Here is the way to edit and manage it.

First, open a terminal window and type the command to edit a file called .pgpass in your home folder.

$ gedit ~/.pgpass



Next, add lines to the file for the users you want to store passwords for. The format is

hostname:port:database:username:password

Here are the entries on my personal file.


Save the file, and you should be able to log in without the password, next time your pgpass file gets loaded.


Thats it!

download file now

Read more »

Share Informasi Situs NGONOO dan Dapatkan Hadiah Menarik

Share Informasi Situs NGONOO dan Dapatkan Hadiah Menarik


Kontes NGONOO
Nah di postingan yang pertama ini yang membahas tentang situs NGONOO.com, tapi sebelumnya kalian sudah ada yang tau belum apa itu NGONOO.com. Berikut adalah kutipan yang di jelaskan situs NGONOO.comNGONOO adalah situs Informasi Social Media dan Tips Trik Online, yang menyampaikan beragam informasi dan tutorial untuk pergaulan online dan tren era kehidupan digital seperti saat ini. NGONOO menyajikan setiap informasi dengan gaya yang ringan dan mudah dicerna oleh siapa saja.

Nah pasti sobat semua bingung kenapa saya memposting artikel seperti ini, tujuan saya dalam memposting aktikel ini bertujuan untuk memberikan informasi kepada sobat semua karena Situs NGONOO.com Sedang Melenyenggarakan Referral Contest dan Blog Review.


 Persyaratan Mengikuti Referral Contest
Referral Contest:

  • Berlangsung dari tanggal 16 Maret 2012 s.d. 30 April 2012
  • Setiap referral yang diajak harus konfirmasi email untuk dapat dihitung
  • Pemenang ditentukan dengan jumlah referral terbanyak
  • Peserta wajib Like FB dan Follow Twitter NGONOO
  • Ajak teman-teman kamu sebagai calon referral dengan memberikan Link Referral khusus yang kami berikan saat mendaftar. Sebarkan melalui FB, Twitter, Chatting, SMS, atau Blog kamu.

Hadiah Referral:
  • Urutan 1. Smartphone Android Samsung Galaxy Young
  • Urutan 2. Apple iPod Nano Multi-touch 8 GB
  • Urutan 3. Modem Smartfren EVDO + Gratis Internet 1 Bulan
  • Urutan 4-5. Pulsa Rp. 100.000,-
  • Urutan 6-7. Pulsa Rp. 50.000,-
  • Urutan 8-11. Pulsa Rp. 25.000,-
  • Urutan 12-17. Kaos NGONOO


.........................................................................................................................................................................................

 Persyaratan Mengikuti Blog Review
Blog Review
  • Berlangsung dari tanggal 16 Maret 2012 s.d. 30 April 2012
  • Peserta harus mendaftarkan url atau link postingnya
  • Peserta dapat mendaftarkan maksimal 3 tulisannya
  • Tulisan minimal 400 kata
  • Materi tulisan adalah review tentang situs NGONOO atau salah satu tulisan di NGONOO
  • Menyertakan tautan ke situs NGONOO atau ke tulisan yang direview
  • Menampilkan banner NGONOO ukuran 125�125 di blog yang memuat tulisan review
  • Blog review ini Bukan Kontes SEO, penilaian berdasarkan dari isi tulisan
  • Peserta wajib Like FB dan Follow Twitter NGONOO

Hadiah Blog Review
  • Urutan 1. Smartphone Android Samsung Galaxy ACE
  • Urutan 2-3. Modem Smartfren EVDO + Free Internet 1 Bulan
  • Urutan 4-5. Domain .IN + Hosting 1 Tahun
  • Urutan 6-8. Domain .IN 1 Tahun
  • Urutan 9-14. Kaos NGONOO

Untuk Ikutan DAFTAR Disini!

Setiap peserta boleh mengikuti Referral Contest dan Blog Review sekaligus. Peserta Referral Contest yang kedapatan memanipulasi atau menduplikasi data dengan akun palsu akan dibatalkan kepesertaannya.

Pemenang akan diumumkan tanggal 1 Mei 2012 dan dihubungi melalui email. Hadiah akan dikirimkan ke alamat pemenang tanpa dipungut biaya tambahan.

Berikut ini banner ukuran 125�125 pixel untuk dipasang di Blog yang berisi tulisan review kamu:

<a href="http://ngonoo.com/" title="NGONOO.com"><img src="http://css.ngonoo.com/engine/wp-content/uploads/2012/03/banner-ngonoo-125x125.png"></a>


download file now

Read more »

setting router warnet

setting router warnet


Setting Router Warnet

Posted on 11.07.2005 23.36 by cachak | Filed under Linux

Akhirnya jadi juga tutorial setting router warnet untuk linux.
Saya menulis ini buat temen2 yang minta untuk di buatin tutorial untuk setting router warnet,dimana sebelumnya mereka memakai router windows dan mau migrasi ke linux.


|eth0
|
|-------|
| MGW |
|---|---|
|
|eth1
|
|
|--------------------hub----------------------|
| | |
| | |
| | |
|---------| |---------| |---------|
|Client 01| |Client 02| |Client 03|
|---------| |---------| |---------|

Pertama yang harus di lakukan adalah mensetting mgw(main gateway)
supaya bisa connect ke internet
Sebelum Mensetting :
1.Minta IP public ke ISP lengkap dengan netmask,broadcast dan dns nya
misalnya :
RANGE : 202.159.121.0/29
IP : 202.159.121.2
GATEWAY : 202.159.121.1
Nemast : 255.255.255.248
broadcast : 202.159.121.7
DNS1 : 202.159.0.10
DNS2 : 202.159.0.20
berarti kita mendapatkan ip 5 buah dari 202.159.121.2 - 202.159.121.6

2.Menentukan IP local yang akan kita gunakan buat client

Setting IP MGW :
1.[root@mgw cachak]$ vi /etc/sysconfig/network
lalu isi dengan :

NETWORKING=yes
HOSTNAME=mgw.domain.com
GATEWAY=202.159.121.1

lalu simpen dengan menekan :wq

2.Menconfigurasi IP eth0(default)

[root@mgw root]$ vi /etc/sysconfig/network-scripts/ifcfg-eth0
lalu isi dengan :

DEVICE=eth0
BOOTPROTO=static
IPADDR=202.159.121.2
BROADCAST=202.159.121.7
NETMASK=255.255.255.249
ONBOOT=yes
USERCTL=no

lalu simpen dengan menekan :wq

3.Setting dns resolve

[root@mgw root]$ vi /etc/resolv.conf
lalu isi dengan nameserver dari isp kita tadi :

nameserver 202.159.0.10
nameserver 202.159.0.20

lalu simpen dengan menekan :wq

4.Setting ip_forwarding

[root@mgw cachak]$ vi /etc/sysctl.conf

rubah net.ipv4.ip_forward = 0 menjadi net.ipv4.ip_forward = 1
atau kalau gak ada net.ipv4.ip_forward = 0 tambahin net.ipv4.ip_forward = 1

simpen dengan menekan :wq

5.restart network
[root@mgw cachak]$ /etc/init.d/network restart
Shutting down interface eth0: [ OK ]
Shutting down loopback interface: [ OK ]
Disabling IPv4 packet forwarding: [ OK ]
Setting network parameters: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: [ OK ]

[root@www root]#chkconfig --level 2345 network on
[root@www root]#

6.testing dengan ngeping ke default gateway 202.159.121.1

[root@mgw cachak]$ ping 202.159.121.1
PING 202.159.121.1 (202.159.121.1) 56(84) bytes of data.
64 bytes from 202.159.121.1: icmp_seq=1 ttl=63 time=0.356 ms
64 bytes from 202.159.121.1: icmp_seq=2 ttl=63 time=0.269 ms
64 bytes from 202.159.121.1: icmp_seq=3 ttl=63 time=0.267 ms
64 bytes from 202.159.121.1: icmp_seq=4 ttl=63 time=0.268 ms

--- 202.159.121.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 2997ms
rtt min/avg/max/mdev = 0.267/0.290/0.356/0.038 ms

7.testing untuk ngeping google.com untuk ngecek dns nya
kalau muncul :
PING google.com (216.239.39.99) 56(84) bytes of data.
berarti dns kita untuk mgw dah bekerja, tapi kalau muncul :
ping: unknown host google.com
berarti dns yang kita isikan di /etc/resolve.conf masih salah,
silahkan cek lagi ke ISP nya :)

nah bereskan sudah setting IP untuk mgw nya :)
supaya mgw ini bisa sekaligus di gunakan sebagai ns server
oleh client maka harus di install daemon bind atau
daemon nameserver yang lain
ataukalau sudah ada tinggal idupin Bind nya

[root@www root]# /etc/init.d/named restart
Stopping named: [ OK ]
Starting named: [ OK ]
[root@www root]#chkconfig --level 2345 named on
[root@www root]#

misalnya ip ke client adalah :
192.168.0.1/24
IP : 192.168.0.1
netmask : 255.255.255.0
broadcast : 192.168.0.255
RANGE IP CLIENT : 192.168.0.2-192.168.0.254

Setting ip untuk eth1 (yang ke client)
1.memberi IP 192.168.0.1 di eth1
[root@mgw cachak]$ vi /etc/sysconfig/network-scripts/ifcfg-eth1
lalu isi dengan :

DEVICE=eth1
BOOTPROTO=static
IPADDR=192.168.0.1
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
ONBOOT=yes
USERCTL=no

lalu simpen dengan menekan :wq

2.Restart networknya

[root@mgw root]$ /etc/init.d/network restart
Shutting down interface eth0: [ OK ]
Shutting down interface eth1: [ OK ]
Shutting down loopback interface: [ OK ]
Disabling IPv4 packet forwarding: [ OK ]
Setting network parameters: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: [ OK ]
Bringing up interface eth1: [ OK ]

3.Testing dengan cara ping ip eth1
[root@mgw cachak]$ ping 192.168.0.1
PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
64 bytes from 192.168.0.1: icmp_seq=1 ttl=63 time=0.356 ms
64 bytes from 192.168.0.1: icmp_seq=2 ttl=63 time=0.269 ms
64 bytes from 192.168.0.1: icmp_seq=3 ttl=63 time=0.267 ms
64 bytes from 192.168.0.1: icmp_seq=4 ttl=63 time=0.268 ms

--- 192.168.0.1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 2997ms
rtt min/avg/max/mdev = 0.267/0.290/0.356/0.038 ms

Tinggal Setting IP computer client dengan ketentuan di bawah ini :

IP : 192.168.0.2 - 192.168.0.254
GATEWAY : 192.168.0.1
NETMASK : 255.255.255.0
BROADCAST : 192.168.0.255
NAMESERVER : 192.168.0.1

misal :

Client01
===============================
IP : 192.168.0.2
GATEWAY : 192.168.0.1
NETMASK : 255.255.255.0
BROADCAST : 192.168.0.255
NAMESERVER : 192.168.0.1

Client02
===============================
IP : 192.168.0.3
GATEWAY : 192.168.0.1
NETMASK : 255.255.255.0
BROADCAST : 192.168.0.255
NAMESERVER : 192.168.0.1

dan seterusnya sesuai banyaknya client,yang berubah hanya IP
untuk client windows maka setting IP
di bagian Start Menu/Setting/Control Panel/Network

setelah di setting ip client, maka coba ping ke 192.168.0.1
dari client,kalau berhasil berarti client dan MGW nya sudah tersambung.

Setting MGW supaya client bisa internat dengan menggunakan NAT

1.Matikan iptablesnya

[root@mgw root]# /etc/init.d/iptables stop
Flushing all chains: [ OK ]
Removing user defined chains: [ OK ]
Resetting built-in chains to the default ACCEPT policy: [ OK ]
[root@mgw root]#

2.Tambahkan iptables untuk Source NAt sesuai dengan ip di eth0
[root@mgw root]# /sbin/iptables -t nat -A POSTROUTING
-o eth0 -s 192.168.0.0/24 -j SNAT --to-source 202.159.121.2
[root@mgw root]# /sbin/iptables-save > /etc/sysconfig/iptables
[root@mgw root]# /etc/init.d/iptables restart
Flushing all current rules and user defined chains: [ OK ]
Clearing all current rules and user defined chains: [ OK ]
Applying iptables firewall rules: [ OK ]
[root@mgw root]# iptables-save

SNAT sudah,SNAT disini standar sekali dan gak ada proteksi
untuk mengetest nya kita browser di client lalau buka google.com,
kalau jalan berati kita sudah berhasil :)

52 Comments �

  1. dudi Says:

    September 1st, 2005 at 17:20

    yang betul itu /etc/resolv.conf atau /etc/resolve.conf?

  2. Administrator Says:

    September 9th, 2005 at 22:51

    [cachak@cachak ~]$ ls /etc/resolv.conf
    /etc/resolv.conf
    [cachak@cachak ~]$ cat /etc/resolv.conf
    search brawijaya.ac.id
    nameserver 127.0.0.1
    nameserver 202.162.220.110
    nameserver 202.162.220.220
    [cachak@cachak ~]$

  3. Administrator Says:

    September 9th, 2005 at 23:23

    thanks atas koreksinya :)

  4. tux Says:

    September 15th, 2005 at 10:41

    tolong, artikel yang anda tulis di http://wiki.linux.or.id/Router_warnet
    di edit/dibetulkan juga dong.

  5. yo2x Says:

    September 16th, 2005 at 12:58

    wahh,..bs dicopi nehh hir,..bs dipelajari nanti di rmh..!!! sip�sip�thank�s�.

  6. sapto Says:

    September 21st, 2005 at 12:54

    Horeee �
    boleh nih ..
    bisa buat belajar lunik �.

    :D

  7. gaptex Says:

    November 17th, 2005 at 15:08

    thank�s bgt men, mudah2an aja sedikit tutorial yang lo tulis bisa bermanfaat untuk kita semua. 1 juta aja orang kaya lo di indonesia yang mau bagi2 ilmunya, mungkin IT indonesia ga kalah maju ama negara2 barat��. ada lagi ga artikel yang laen tntng scurity di linux�..

  8. celica2dian Says:

    December 22nd, 2005 at 11:53

    Okeh dech� gwe mo coba dulu klo gwe berhasil nanti gwe minta tolong yang laen lagi, thanks beth dech atas documentnya.

  9. poedji Says:

    December 28th, 2005 at 15:13

    thanks buat tutorialnya sangat membantu, kalau ngeliat ama yg udah gw coba ada sedikit beda tapi intinya sama, oh iyah kl bisa lengkapin sekalian donk ama squidnya, yg standard aja yg penting ada browsecache nya kan lumayan�

  10. akang Says:

    December 28th, 2005 at 22:21

    Makasih ��������..
    Saya bisa belajar INUX :)

  11. Scooter_black80 Says:

    December 28th, 2005 at 22:44

    Matur nuhun.

    Pak bagai mana bikin proxy, supaya pas brows pertama ada lemparan.

    Pengen belajar niih

    http://opi.yahoo.com/online?u=scooter_black80&m=g&t=2

  12. cachak Says:

    December 29th, 2005 at 0:15

    sorry ya yang request buat tutorial proxy server(squid) belum sempet aku kerjakan :)
    karena masih sibuk banget sama kerjaan

  13. co_biru Says:

    January 1st, 2006 at 17:27

    payah ������������.. ndak kreatif

  14. co_biru Says:

    January 2nd, 2006 at 18:43

    sippp sipppp ok bangettttt
    walaupun standar tapi tetap ok�
    e. soal squid klu bisa di bahas juga yah�(kan udah banyak permintaan tuh)

  15. firmansyah Says:

    January 3rd, 2006 at 7:23

    maklum baru buka warnet, setting routernya dah dr sononya, tp ingin bikin sendiri juga, tak cobane�
    kapan pake zebra �. atau dah ada :)
    saran:
    mbok tutorialnya diurutin ,dr setting lan,router,proxy,samba biar benar 2x jadi modul warnet�ok
    thanks..pak !!

  16. agus nain Says:

    January 9th, 2006 at 11:14

    Pak, Bagaimana cara membatasin dari ip yang ke 1 sampai 254 itu dapat di kunci atau tidak bisa buka internet walaupun sudah diset oleh user salah satu diantara nilai-nilai ip tersebut mis: 192.168.0.20 tidak bisa dipakai, tapi nilai yang lain bisa, atau diantara semua nilai itu hanya yang mempunyai ip 192.168.0.25, �63, �69, �99 atau �105 yang bisa dan yang lain tidak, karena rencana kupakai di kantor kami. Please tolong dong pak, �kalo bisa jawabannya di kirim ke email ku�tanks, agus di palembang

  17. purwanto Says:

    January 11th, 2006 at 3:47

    senang sekali aq bacanya bener2 senag,
    tapi sekarang linux dipasaran skr banyak skl��..
    kalau yg ini pakai linux yg mana dong?
    ( biar jelas )
    jgn sampai baca senag bingung cari softwerenya��..

  18. cachak Says:

    January 12th, 2006 at 3:15

    Pak, Bagaimana cara membatasin dari ip yang ke 1 sampai 254>>
    pada saat /sbin/iptables -t nat -A POSTROUTING
    -o eth0 -s 192.168.0.0/24 -j SNAT �to-source 202.159.121.2 jangan langsung /24 tapi harus satu2 pak natnya misalnya
    ip 192.168.0.25,192.168.0.60,192.168.0.90 maka natnya
    /sbin/iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.25 -j SNAT �to-source 202.159.121.2
    /sbin/iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.60 -j SNAT �to-source 202.159.121.2
    /sbin/iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.90 -j SNAT �to-source 202.159.121.2

    atau system squid, ini tutorialnya squid lagi aku tulis


download file now

Read more »

Sinabung Kian Berbahaya 4 Desa Dikosongkan

Sinabung Kian Berbahaya 4 Desa Dikosongkan


Khusus Dewasa 18th ++ silahkan klik KOTAK di BAWAH ini!!!!

MEDAN � Gunung Sinabung kembali meletus dan melontarkan abu vulkanik setinggi 7.000 meter ke arah barat, kemarin, sekitar pukul 01.30 WIB. Sebanyak 1.293 jiwa pun dievakuasi ke tempat yang aman. 

Sebanyak 891 warga Desa Mardinding diungsikan sementara ke Jambur di Kecamatan Tiga Dreket. Sedangkan402wargaDesaSukameriah ditampung di Jambur GPKP Payung dan Masjid Payung. Diperkirakan jumlah pengungsi akan bertambah lagi karena kemarin sore, warga di Desa Bekerah, Desa Simacem dan Desa Sukameriah sedang bersiap-siap mengungsi ke Namanteran. Belum semua warga di empat desa di radius 3 kilometer (Km) dievakuasi sesuai rekomendasi Pusat Vulkanologi dan Mitigasi Bencana Geologi (PVMBG). 

Tidak sedikit pula warga yang masih bertahan di rumah. Aparat TNI dan Polri berpatroli di Desa Bekerah untuk mengimbau warga mengungsi. Kepala Pusat Data Informasi dan Humas Badan Nasional Penanggulangan Bencana (BNPB) Sutopo Purwo Nugroho mengatakan, Gunung Sinabung masihmengeluarkanasaphitam dari puncak kawah. Gunung setinggi 2.460 meter ini masih tertutup awan bercampur dengan asap kehitaman dan gerimis. Aktivitas gunung masih menunjukkan peningkatan. 

�Dari pukul 00.00-06.00 WIB terjadi 12 kali gempa vulkanik dalam, tiga kali gempa frekuensi rendah, lima kali gempa embusan asap, empat kali gempa tektonik jauh, dua kali gempa vulkanik dangkal dan tremor,� katanya dalam siaran persnya, kemarin. Menurut dia, BNPB telah menyampaikan saran kepada Bupati Karo Kena Ukur Jambi Surbakti agar mengambil langkah-langkah tanggap darurat, yakni mengadakan rapat koordinasi dengan semua unsur terkait, dan menetapkan status keadaan darurat. 

Selain itu, menetapkan pos komando dan komandan tanggap darurat, melaksanakan rekomendasi PVMBG, berkoordinasi dengan Badan Penanggulangan Bencana Daerah (BPBD) Sumut karena Kabupaten Karo belum membentuk BPBD. �Semua kendaraan penanggulangan bencana di BPBD Sumut dikerahkan ke Sinabung untuk melakukan penanganan darurat,� tukasnya. Kepala PVMBG Hendrasto menyebutkan, kenaikan status dari waspadamenjadisiagamulai Minggu (3/11) pukul 03.00 WIB. 

Status ini ditetapkan karena adanya peningkatan kegempaan dan bertambah tingginya kolom letusan abu. �Saat terjadi erupsi, terdengar suara gemuruh sampai ke pos pengamatan Simpang Empat dengan lama 10 menit. Letusan Gunung Sinabung semakin sering dan letusannya terus meninggi. Kondisi ini hampir setiap hari terjadi dan tinggi kolom abunya cenderung semakin membesar seperti yang terjadi kemarin,� katanya. Meskipun tidak bisa dipastikan besaran letusan Gunung Sinabung, potensi kegempaaan masih terekam sejak kemarin pagi. 

Artinya, potensi letusan gunung Sinabung masih akan terjadi. Dengan adanya peningkatan status menjadi siaga ini PVMBGmengimbaumasyarakat yang tinggal di lereng Gunung Sinabung, yakni Desa Sukameriah, Bekerah, Simacem dan Nardinding mengungsi ke tempat yang aman serta mengenakan masker. �Sebab, potensi letusan gunung bisa menghasilkan guguran batuan dan material vulkanik dan itu berbahaya bagi masyarakat. 

Abu vulkaniknya bisa menganggu saluran pernapasan, dan material vulkanik yang berguguran bisa berakibat longsor dan membahayakan masyarakat,� tandasnya. Sementara itu, Kepala BPBD Sumut, Asren Nasution mengatakan, telah menginstruksikan masyarakat keempat desa yang berada di lereng Gunung Sinabungituuntuktidakberaktivitas dalam radius 3 km dari kawah Sinabung. �Badan PenanggulanganBencanaDaerahsudah melakukan pemantauan dan monitoring ke lokasi,� sebutnya.
 

sumber: http://www.koran-sindo.com/node/341930

Ingin Punya Donatur BLOG?
Silahkan Klik di Bawah ini :

Adsense Indonesia

download file now

Read more »

Shazam Encore v4 5 1 Full APK

Shazam Encore v4 5 1 Full APK



Shazam Encore v4.5.1 Full APK. Hear a song you do not know? Shazam identifies instantly. Unlimited , no Ads .
Composer. Now discover, explore and share more music, TV shows and brands you love in a second.
With unlimited use of Encore marked as whatever you want, and experience more of what you like , faster .

You can also:
? Save and listen again ( 30 sec )
? launch a music station with Pandora
? Being recommended tracks based on the music you love
? View lyrics continuous-time music
? buy tracks easily on Amazon MP3
? See additional content to watch TV
? Watch music videos and concerts on YouTube
? Listen to your tagged music in Spotify
? Share on Facebook and Twitter
? discover new music Shazam Friends & Graphics
? see when an artist is on tour
? Use it when you have a signal
? When you see the symbol Shazam on TV , the label of additional content
? Tag the home screen with the Shazam widget
? Remember where you have tagged a track with Location

"This is the best thing ever ! " Hoda Kotb of NBC Today Show


Download�Shazam Encore v4.5.1 Full APK via Filesear
Download�Shazam Encore v4.5.1 Full APK via Zippyshare
Download�Shazam Encore v4.5.1 Full APK via Sendspace
Download�Shazam Encore v4.5.1 Full APK via Howfile
DATA


download file now

Read more »

Siddhu Proposes… Shruti Disposes

Siddhu Proposes… Shruti Disposes


Siddarth adores Kamal Haasan not just as an actor but also as a person. Usually, he feels like junior Kamal Haasan himself. Following Kamal�s footsteps even in personal life, Siddarth went ahead and gave divorce to his first wife.

After that, he had an affair for many days with Saif Ali Khan�s sister Soha Ali Khan. Latest, he has been in a live-in relationship with Shruti Haasan, daughter of Kamal Haasan. Not only that, it is heard that Sidz is now getting desperate to marry Shruti.

By marrying Shruti, Siddarth will get national recognition and there is another advantage also. When he gets bored, he can give divorce to Shruti. Maybe his crooked thought is, Kamal has given divorce to two wives and is having a live-in relationship with Gauthami so he cannot question Siddarth.

But then, Shruti seems to have understood the evil thought of Sidz. Sources say she has said no to Siddarth�s proposal.

download file now

Read more »

Seven Degrees of Connectedness

Seven Degrees of Connectedness


What�s the most significant event that causes you to pay closer attention to the learners in your network? For me, it is meeting face-to-face. I�m more attuned to those people in my learning network whose voices are amplified because we met at a conference; exchanged stories; shared a meal. Fleshed out by personality and attitude, I find myself savouring the words and ideas I consume online.

The framework below was developed with the assistance of Zoe Branigan-Pipe, who is helping to bring co-learners to life through a collaborative project called 140 Voices. More will follow on that project, but for now, I�d be interested to know where you see yourself in what Im calling "The Seven Degrees of Connectedness".

The thing is - I see myself in different stages with different people and groups. Im wondering, where you see yourself in the different relationships you�ve developed? Each stage of connectedness has impacted my learning in different ways.  Have you had similar experiences?  Explicit actions lead from one stage to another, but maybe the stages are not sequential...


The Seven Degrees of Connectedness

Stage 1: Lurker
�Hey other people are sharing some cool ideas on their blogs.
�So many people are saying things I agree with...�
�I follow folks on Twitter, but I�m too shy to say anything" 
"I don�t feel I have anything worthwhile to add.�
"How do I get people to follow me back?"

Stage 2: Novice
�When I join in on the conversation people actually talk back to me.�
�I love when other people agree with what I�m saying.�
�I like to read a few blogs.�
�I participate in a few live chats.�
�I comment on blog posts every now and then.�
�I love my PLN!�

Stage 3: Insider
�The same names keep coming up in my stream.�
�I�m beginning to know many of these familiar names and faces.�
�I am part of a PLN.�
�When I�m offline, I feel like I�m missing out.�
�I follow conference hashtags and have refined twitter lists.�

Stage 4: Colleague
�I love when I meet people face-to-face at a conference or event.�
�I sometimes begin conversations by sharing my TwitterID."
�I have degrees of relationships within my PLN.�
"I rely on my network for the most important news."
�I have included the same people in more than one network.�
�Would you join my class for a presentation on _______ ?�
Stage 5:
Collaborator
�Why don�t we start a Google Doc to share our ideas?�
�Want to put in a workshop proposal with me?"
�I�ll see you at the tweet-up before the conference.�
�Can you help me with a project with my students?�
�Let�s get our students collaborating on a blog!�
�How about a weekly Math Challenge between our classes?�
�Our class wants to learn about your country.�
�Sure, I�ll add a post to that collaborative blog!�

Stage 6: Friend

�It feels like we�ve known one another for a long time.�
�At conferences, I�d rather meet face-to-face with my online colleagues than attend workshops.�
�I am comfortable to ask my PLN for help or advice about my work.�
�I know some of the personal details about the people in my network.�
�I care about the well-being of these people.�

Stage 7: Confidant

�I wish the people in my school were as helpful as you are.�
�Can you proof-read my latest blog post?�
�Would you like to meet for lunch?�
�When are you coming to town? We have to get together!�
�How are you feeling?" "Do you want to talk about it?�
�I have an idea, can we Skype?�
�I would rather talk to you in person, can you just call me.�


Is a framework like this worth discussing, or refining.  Can it serve as an introduction to the concept of a personal learning network?  Does it help you make sense of the wide range of relationships youve been building with online colleagues?  Id love to know your thoughts...


Image Credit: Seven by Losmininos

download file now

Read more »

Shigatsu wa Kimi no Uso Subtitle Indonesia

Shigatsu wa Kimi no Uso Subtitle Indonesia




Shigatsu wa Kimi no Uso Subtitle Indonesia
Shigatsu wa Kimi no Uso Subtitle Indonesia
Type: TV Series
Episode: 22
Status: Completed

Genres: Drama, Music, Romance, School, Shounen
Skor : 8.87 (http://myanimelist.net/anime/23273/Shigatsu_wa_Kimi_no_Uso)
Tahun Rilis : 2014
Subtitle : Indonesia
Credit : mashirosub.com | oploverz.net | wardhanime.net
Deskripsi:
Pemain piano jenius, Kousei Arima mendominasi kompetisi dan semua musisi muda tahu namanya. Tapi setelah ibunya, yang juga instrukturnya meninggal ia mengalami gangguan mental, saat tampil di resital yang mengakibatkan dirinya tidak mampu mendengar suara piano meskipun pendengarannya baik-baik saja. Bahkan dua tahun kemudian Kousei tidak menyentuh piano lagi dan dunianya menjadi monoton tanpa bakat atau warna. Hingga seorang gadis mengubah segala, Kaori Miyazono yang merupakan seorang biola membantu Kousei kembali ke dunia musik.
Link download 720p & 480p:
===================================================== =========
Versi Mashirosub
Resolusi 720p:
Tusfiles:
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep01_animesave.mkv � 199.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep02_animesave.mkv � 165.4 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep03_animesave.mkv � 159.4 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep04_animesave.mkv � 172.1 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep05_animesave.mkv � 154.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep06_animesave.mkv � 185.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep07_animesave.mkv � 154.1 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep08_animesave.mkv � 133.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep09_animesave.mkv � 130.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep10_animesave.mkv � 131.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep11_animesave.mkv � 132.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep12_animesave.mkv � 163.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep13_animesave.mkv � 170.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep14_animesave.mkv � 170.7 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep15_animesave.mkv � 166.0 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep16_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep17_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep18_animesave.mkv � 116.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep19_animesave.mkv � 118.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep20_animesave.mkv � 120.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep21_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep22_animesave.mkv � 116.9 MB
subtitle.rar � 576 KB
Userscloud:
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep01_animesave.mkv � 199.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep02_animesave.mkv � 165.4 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep03_animesave.mkv � 159.4 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep04_animesave.mkv � 172.1 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep05_animesave.mkv � 154.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep06_animesave.mkv � 185.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep07_animesave.mkv � 154.1 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep08_animesave.mkv � 133.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep09_animesave.mkv � 130.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep10_animesave.mkv � 131.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep11_animesave.mkv � 132.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep12_animesave.mkv � 163.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep13_animesave.mkv � 170.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep14_animesave.mkv � 170.7 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep15_animesave.mkv � 166.0 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep16_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep17_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep18_animesave.mkv � 116.9 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep19_animesave.mkv � 118.6 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep20_animesave.mkv � 120.2 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep21_animesave.mkv � 123.5 MB
Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep22_animesave.mkv � 116.9 MB
subtitle.rar � 576 KB
DDL:

Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep01_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep02_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep03_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep04_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep05_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep06_animesave.mkv




Mashirosub_Shigatsu_wa_Kimi_no_Uso_Ep07_animesave.mkv

download file now

Read more »