Thursday, 31 October 2013

How to Create gmail Account

What is a Mail Message?

A Mail message generally consists of a message body, which is the text the sender wrote, and special data specifying recipients, transport medium, etc., very much like what you see when you look at a letter's envelope.
This administrative data falls into two categories; in the first category is any data that is specific to the transport medium, like the address of sender and recipient. It is therefore called the envelope. It may be transformed by the transport software as the message is passed along.


Create your Google Account

How you'll appear

Choose how you appear across Google by creating a public Google+ profile.
Include a photo - you can update it at any time.
Rawdan Masud

 

One account is all you need 

Welcome, Rawdan

Your new email address is rawdanmasud@gmail.com

Thanks for creating a Google Account. Use it to subscribe to channels on YouTube, video chat for free, save favorite places on Maps, and lots more.

 

[Fail2Ban] SSH: banned 222.219.96.45

Hi,



The IP 222.219.96.45 has just been banned by Fail2Ban after

5 attempts against SSH.





Here are more information about 222.219.96.45:



[Querying whois.apnic.net]

[whois.apnic.net]

% [whois.apnic.net]

% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html



% Information related to '222.219.0.0 - 222.221.255.255'



inetnum: 222.219.0.0 - 222.221.255.255

netname: CHINANET-YN

descr: CHINANET yunnan province network

descr: China Telecom

descr: A12,Xin-Jie-Kou-Wai Street

descr: Beijing 100088

country: CN

admin-c: CH93-AP

tech-c: ZL48-AP

mnt-by: APNIC-HM

mnt-lower: MAINT-CHINANET-YN

mnt-routes: MAINT-CHINANET-YN

status: ALLOCATED PORTABLE

remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+

remarks: This object can only be updated by APNIC hostmasters.

remarks: To update this object, please contact APNIC

remarks: hostmasters and include your organisation's account

remarks: name in the subject line.

remarks: -+-+-+-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-+-+-+-+-+-+

changed: hm-changed@apnic.net 20040621

source: APNIC



person: Chinanet Hostmaster

nic-hdl: CH93-AP

e-mail: anti-spam@ns.chinanet.cn.net

address: No.31 ,jingrong street,beijing

address: 100032

phone: +86-10-58501724

fax-no: +86-10-58501724

country: CN

changed: dingsy@cndata.com 20070416

mnt-by: MAINT-CHINANET

source: APNIC



person: zhiyong liu

nic-hdl: ZL48-AP

e-mail: ynipm@126.com

address: 136 beijin roadkunmingchina

phone: +86-871-8223073

fax-no: +86-871-8221536

country: CN

changed: ynipm@126.com 20070813

mnt-by: MAINT-CHINANET-YN

source: APNIC



% This query was served by the APNIC Whois Service version 1.68.5 (WHOIS4)



Regards,



Fail2Ban

Advanced Hard Disk Drive Settings ATA or SATA


What is Hard Disk Drive?   





Hard Disk is storage device it is used to file folder or data maintains. The traditional spinning hard drive (HDD) is the basic nonvolatile storage on a computer. That is, it doesn't "go away" like the data on the system memory when you turn the system off
 And others miens  :  Functioning as an internal storage device, it allows a computer to house and execute important files and programs, like the machine's operating system.


Tweaking of hard disk settings (dma, gap, ...) are not covered in this course. Several
tools exists, hdparm and sdparm are two of them.
/sbin/hdparm can be used to display or set information and parameters about an
ATA (or SATA) hard disk device. The -i and -I options will give you even more
information about the physical properties of the device.
root@laika:~# hdparm /dev/sdb
/dev/sdb:
IO_support = 0 (default 16-bit)
readonly = 0 (off)
readahead = 256 (on)
geometry = 12161/255/63, sectors = 195371568, start = 0
Below hdparm info about a 200GB IDE disk.
root@barry:~# hdparm /dev/hdd
/dev/hdd:
multcount = 0 (off)
IO_support = 0 (default)
unmaskirq = 0 (off)
using_dma = 1 (on)
keepsettings = 0 (off)
readonly = 0 (off)
readahead = 256 (on)
geometry = 24321/255/63, sectors = 390721968, start = 0
Here a screenshot of sdparm on Ubuntu 10.10.
root@ubu1010:~# aptitude install sdparm
...
root@ubu1010:~# sdparm /dev/sda | head -1
/dev/sda: ATA FUJITSU MJA2160B 0081
root@ubu1010:~# man sdparm
Use hdparm and sdparm with care.
practice: hard disk devices
About this lab: To practice working with hard disks, you will need some hard disks.
When there are no physical hard disk available, you can use virtual disks in vmware
or VirtualBox. The teacher will help you in attaching a couple of ATA and/or SCSI
disks to a virtual machine. The results of this lab can be used in the next three labs
(partitions, file systems, mounting). It is adviced to attach at least one ide and three
equally sized scsi disks to the virtual machine.
1. Use dmesg to make a list of hard disk devices detected at boot-up.
2. Use fdisk to find the total size of all hard disk devices on your system.
3. Stop a virtual machine, add three virtual 1 gigabyte scsi hard disk devices and one
virtual 400 megabyte ide hard disk device. If possible, also add another virtual 400
megabyte ide disk.
4. Use dmesg to verify that all the new disks are properly detected at boot-up.
5. Verify that you can see the disk devices in /dev.
6. Use fdisk (with grep and /dev/null) to display the total size of the new disks.
7. Use badblocks to completely erase one of the smaller hard disks.
8. Look at /proc/scsi/scsi.
9. If possible, install lsscsi, lshw and use them to list the disks.
solution: hard disk devices
1. Use dmesg to make a list of hard disk devices detected at boot-up.
Some possible answers...
dmesg | grep -i disk
Looking for ATA disks: dmesg | grep hd[abcd]
Looking for ATA disks: dmesg | grep -i "ata disk"
Looking for SCSI disks: dmesg | grep sd[a-f]
Looking for SCSI disks: dmesg | grep -i "scsi disk"
2. Use fdisk to find the total size of all hard disk devices on your system.
fdisk -l
3. Stop a virtual machine, add three virtual 1 gigabyte scsi hard disk devices and one
virtual 400 megabyte ide hard disk device. If possible, also add another virtual 400
megabyte ide disk.
This exercise happens in the settings of vmware or VirtualBox.
4. Use dmesg to verify that all the new disks are properly detected at boot-up.
See 1.
5. Verify that you can see the disk devices in /dev.
SCSI+SATA: ls -l /dev/sd*
ATA: ls -l /dev/hd*
6. Use fdisk (with grep and /dev/null) to display the total size of the new disks.
root@rhel53 ~# fdisk -l 2>/dev/null | grep [MGT]B
Disk /dev/hda: 21.4 GB, 21474836480 bytes
Disk /dev/hdb: 1073 MB, 1073741824 bytes
Disk /dev/sda: 2147 MB, 2147483648 bytes
Disk /dev/sdb: 2147 MB, 2147483648 bytes
Disk /dev/sdc: 2147 MB, 2147483648 bytes
7. Use badblocks to completely erase one of the smaller hard disks.
#Verify the device (/dev/sdc??) you want to erase before typing this.
#
root@rhel53 ~# badblocks -ws /dev/sdc
Testing with pattern 0xaa: done
Reading and comparing: done
Testing with pattern 0x55: done
Reading and comparing: done
Testing with pattern 0xff: done
Reading and comparing: done
Testing with pattern 0x00: done
Reading and comparing: done
8. Look at /proc/scsi/scsi.
root@rhel53 ~# cat /proc/scsi/scsi
Attached devices:
Host: scsi0 Channel: 00 Id: 02 Lun: 00
Vendor: VBOX Model: HARDDISK Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 05
Host: scsi0 Channel: 00 Id: 03 Lun: 00
Vendor: VBOX Model: HARDDISK Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 05
Host: scsi0 Channel: 00 Id: 06 Lun: 00
Vendor: VBOX Model: HARDDISK Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 05
9. If possible, install lsscsi, lshw and use them to list the disks.
Debian,Ubuntu: aptitude install lsscsi lshw
Fedora: yum install lsscsi lshw
root@rhel53 ~# lsscsi
[0:0:2:0] disk VBOX HARDDISK 1.0 /dev/sda
[0:0:3:0] disk VBOX HARDDISK 1.0 /dev/sdb
[0:0:6:0] disk VBOX HARDDISK 1.0 /dev/sdc

For more information:



[Fail2Ban] SSH: banned 80.87.64.3

Hi,



The IP 80.87.64.3 has just been banned by Fail2Ban after

5 attempts against SSH.





Here are more information about 80.87.64.3:



[Querying whois.afrinic.net]

[whois.afrinic.net]

% This is the AfriNIC Whois server.



% Note: this output has been filtered.



% Information related to '80.87.64.0 - 80.87.64.255'



inetnum: 80.87.64.0 - 80.87.64.255

netname: Vodafone-Ghana

descr: Vodafone Ghana

country: GH

admin-c: MKN4-AFRINIC

tech-c: JT4-AFRINIC

status: ASSIGNED PA

mnt-by: GHANATEL-MNT

remarks: data has been transferred from RIPE Whois Database 20050221

source: AFRINIC # Filtered

parent: 80.87.64.0 - 80.87.95.255



person: Michael Komla Nfodzo

nic-hdl: MKN4-AFRINIC

address: South Liberation Link, Plot No. 25

address: Manet Towers, Airport City

address: Accra

address: Ghana

e-mail: abuse.gh@vodafone.com

phone: +233 302 200200

remarks: data has been transferred from RIPE Whois Database 20050221

mnt-by: MNT-MKN4

source: AFRINIC # Filtered



person: Joana Thompson

nic-hdl: JT4-Afrinic

address: Ghana Telecommunications Company Limited

address: Headquarters

address: Telecom House

address: Nsawam Road

address: Accra-North Ghana

address: Accra

address: Ghana

e-mail: abuse.gh@vodafone.com

phone: +233302200200

source: AFRINIC # Filtered



Regards,



Fail2Ban

[Fail2Ban] SSH: banned 189.254.67.26

Hi,



The IP 189.254.67.26 has just been banned by Fail2Ban after

5 attempts against SSH.





Here are more information about 189.254.67.26:



[Querying whois.lacnic.net]

[whois.lacnic.net]



% Joint Whois - whois.lacnic.net

% This server accepts single ASN, IPv4 or IPv6 queries



% LACNIC resource: whois.lacnic.net





% Copyright LACNIC lacnic.net

% The data below is provided for information purposes

% and to assist persons in obtaining information about or

% related to AS and IP numbers registrations

% By submitting a whois query, you agree to use this data

% only for lawful purposes.

% 2013-10-31 13:26:29 (BRST -02:00)



inetnum: 189.240/12

status: allocated

aut-num: N/A

owner: Uninet S.A. de C.V.

ownerid: MX-USCV4-LACNIC

responsible: No hay informacion

address: Periferico Sur, 3190, Jardines del Pedregal

address: 01900 - Cd. de México, Álvaro Obregon - DF

country: MX

phone: +52 55 56244400 []

owner-c: GEC10

tech-c: DCA

abuse-c: SRU

inetrev: 189.254/16

nserver: NSMEX4.UNINET.NET.MX

nsstat: 20131028 AA

nslastaa: 20131028

nserver: NSMEX3.UNINET.NET.MX

nsstat: 20131028 AA

nslastaa: 20131028

nserver: NSMEX2.UNINET.NET.MX

nsstat: 20131028 AA

nslastaa: 20131028

created: 20070905

changed: 20120227



nic-hdl: DCA

person: GESTION DE CAMBIOS

e-mail: gccips1@REDUNO.COM.MX

address: PERIFERICO SUR, 3190, ALVARO OBREG

address: 01900 - MEXICO DF - DF

country: MX

phone: +52 5 556244400 []

created: 20021210

changed: 20111027



nic-hdl: GEC10

person: GESTION DE CAMBIOS

e-mail: gccips@REDUNO.COM.MX

address: PERIFERICO SUR, 3190, ALVARO OBREG

address: 01900 - MEXICO DF - DF

country: MX

phone: +52 5556244400 []

created: 20110706

changed: 20111027



nic-hdl: SRU

person: SEGURIDAD DE RED UNINET

e-mail: abuse@UNINET.NET.MX

address: PERIFERICO SUR, 3190, ALVARO OBREG

address: 01900 - MEXICO - DF

country: MX

phone: +52 55 52237234 []

created: 20030701

changed: 20030703



% whois.lacnic.net accepts only direct match queries.

% Types of queries are: POCs, ownerid, CIDR blocks, IP

% and AS numbers.





Regards,



Fail2Ban

Android Samsung termurah bisa BBM


Saa mencba berbagai info tentang hp samsung android

HP Android Samsung termurah bisa untuk BBM. Dunia semakin digoncangkan dengan kabar terbaru mengenai aplikasi Blackberry Messeger yang tersedia untuk android dan iOS pada iPhone. Meskipun tak sembarang semua android mampu menggunakan aplikasi ini namun bisa dipastikan bahwa saat ini aplikasi keren yang secara resmi telah diumumkan mampu digunakan untuk android dan IOS iPhone pada tanggal 22 September 2013 ini bisa membuat para pengguna semakin tertarik dan semakin puas dibuatnya.
Hanya android tertentu saja sobat yang mampu mnegusung aplikasi BBM saat ini. Tipe sistem operasinya harus 4.0 keatas atau bisa dibilang sistem operasi Ice Cream Sandwich dan Jelly Bean. Sudah jelas bahwa semakin tinggi sistem operasi yang digunakan maka semakin mahal pula harga yang dibandrol. Oleh sebab itu, kami menginfokan kepada sobat mengenai 4 handphone android samsung yang harganya murah namun bisa digunakan BBM. Untuk lebih detailnya, simak saja ulasan di bawah ini.

SamsungGalaxyDiscoverS730M 4 HP Android Samsung Termurah Bisa BBM
Samsung Galaxy Y Plus S5303
LayarLebar 2.8 inchi kepadattan 143 ppi
MemoryInternal 4 GB
KameraBelakang 2 MP, Depan tidak ada
Sistem OperasiAndroid versi 4.0 [Ice Cream Sandwich]
CPU850 MHz
Bettery1200 mAh
JaringanGSM 2 SIM
Konektivitasbluetooth, wifi, dan USB
HargaRp 1,5 Juta
Samsung Galaxy Discover S730M
LayarLebar 3.5 inchi kepadattan 165 ppi
MemoryInternal 4 GB, 512 RAM
KameraBelakang 3.15 MP, Depan tidak ada
Sistem OperasiAndroid versi 4.0.4 [Ice Cream Sandwich]
CPU800 MHz
Bettery1300 mAh
JaringanGSM 1 SIM
Konektivitasbluetooth, wifi, dan USB
HargaRp 1 Juta
Samsung Galaxy Rush M830
LayarLebar 3.5 inchi kepadattan 165 ppi
MemoryInternal 2 GB, 768 RAM
KameraBelakang 3.15 MP, Depan 1.3 MP
Sistem OperasiAndroid versi 4.0.4 [Ice Cream Sandwich]
CPU1 GHz
Bettery1750 mAh
JaringanCDMA 1 SIM
Konektivitasbluetooth, wifi, dan USB
KameraYA (2 Kamera)
HargaRp 1,3 Juta
Samsung Galaxy Star S5280
LayarLebar 3 inchi kepadattan 133 ppi
MemoryInternal 4 GB, 512 RAM
KameraBelakang 2 MP, Depan tidak ada
Sistem OperasiAndroid versi 4.1.2 [Jelly Bean]
CPU1 GHz
Bettery1200 mAh
HargaRp 900 ribu


Cukup terjangkau kan sobat, jika sobat ingin membelinya. Tak lagi membutuhkan budget yang banyak untuk mendapatkan handphone android yang dilengkapi dengan aplikasi BBM dan tentu saja handphone yang memiliki kualitas yang bagus, karena handphone samsung telah dikenal sebagai handphone yang memiliki kualitas tinggi dengan segala fitur canggih nan menarik serta memuaskan pengguna.

semoga bermanfaat.....

comparativa de ofertas de Internet Móvil (Noviembre 2013) orange 4g, vodafone 5g, movistar cero simyo carrefour yoigo pepephone

Compañía
Tráfico mensual/
descargas
Permanencia
Velocidad
Precio módem
Cuota mensual (con IVA)
2GB
12 meses
Hasta 7,2 MB.
29 euros
19 euros (los tres primeros meses la cuota será de 9 euros gracias a una promoción especial)
5GB
12 meses
Hasta 42 MB
39 euros
25 euros
500MB
Sujeto a contrato
Hasta 7,2 MB
No disponible
11 euros
750MB
MB
Hasta 7,2 MB
39 euros
6,99 euros
1GB
18 meses
Hasta 3,6 MB
0 euros
15 euros
1 GB
Sin permanencia
Hasta 7,2 MB
99 euros
9 euros.
1,2GB
Sin permanencia
Hasta 7,2 MB
35 euros
12.90 euros

primeras ofertas del Iphone 5 para este mes de noviembre

iPhone5C 01
La compañía Apple acaba de poner a la venta en España la nueva generación de iPhone. De hecho, el flamante iPhone 5C ya está disponible a través de Vodafone desde cero euros. Se trata de un equipo más asequible que el iPhone 5S. Los clientes que quieran conseguirlo gratis tendrán que hacerse con él a través de una portabilidad, cambiando de operadora, o haciendo una migración de tarjeta a contrato, siempre y cuando se elija cualquiera de las tarifas RED, especialmente ideadas para aquellas personas que tengan previsto hacer un consumo masivo de llamadas y de datos. El trío de tarifas incluyellamadas ilimitadas y hasta 5 GB de Internet, además de almacenamiento en la nube y un servicio más personalizado de atención al cliente y soporte técnico. Su coste es el más elevado del catálogo deVodafone y puede oscilar entre 62 y 104 euros (IVA 21% incluido). Pero esta no es la única vía que existe para adquirir el iPhone 5C.
iPhone5C 03
Lógicamente, todos los clientes tendrán la oportunidad de acceder a Vodafone a través deportabilidadesaltas nuevas y migraciones con cualquiera de los paquetes de tarifas, tanto Base comoRED, con precios que pueden oscilar entre los 100 y los 250 euros, dependiendo de la fórmula elegida. Queremos recordarte que aparte de las tarifas RED, los usuarios que quieran consumir menos voz y datos tienen a su disposición las tarifas Base. Se trata de paquetes concretos y más limitados de llamadas, con1 GB de Internet para navegar. En cualquier caso, debes saber que para todas las tarifas de Vodafone ofrece Internet 4G gratis. Todos los clientes, además, tendrán que aceptar un compromiso de permanencia de hasta 24 meses, manteniendo durante 18 meses más la tarifa elegida al firmar el contrato.
iPhone5C 02
A cambio, los usuarios se llevarán al bolsillo uno de los equipos más coloridos del momento. Por primera vez en su historia, Apple ha incorporado nuevas tonalidades a las carcasas. Vodafone lo comercializa enazul, rosa, verde y amarillo en una capacidad única de 16 GB. Por lo demás, presenta unas dimensiones de 12,44 x 5,92 x 0,90 centímetros y un peso de 132 gramos. Incorpora una pantalla Retina multitáctil panorámica de 4 pulgadas (en diagonal) con una resolución de 1136 x 640 píxeles y una densidad de 326 puntos por pulgada. La cámara fotográfica cuenta con un sensor de 8 megapíxeles y se compone por distintos elementos y funciones que nos ayudarán a conseguir imágenes y vídeos de una calidad superior. Nos referimos, lógicamente, al flash LED, al sensor de iluminación posterior, a la lente de cinco elementos, al enfoque automático y a la herramienta de detección facial.
Funciona a través de iOS 7, la última edición del sistema operativo de Apple, y a través de un sistema operativo Apple A6 de doble núcleo. En el apartado de la conectividad, guarda compatibilidad con redesLTE, 3G (HSPA+ 21 Mbps), WiFi, WiFi Hotspot, Bluetooth 4.0 y GPS con GLONASS asistido, lo que te permitirá utilizar el iPhone 5C como si fuera un navegador GPS dedicado. La batería, recargable e integrada, ofrece hasta 10 horas en conversación (3G) y 250 horas en reposo.

Linux Kernel 3.12-rc7 Prepatch Released

Linux Kernel 3.12 Release Candidate 7 available now. It may be the last release candidate in 3.12 and upcoming will be in 3.13 Release candidate series.....

Linus says:

"The KS week is over, and thus the seventh - and likely the last - rc for 3.12 is out, and I'm back on the normal Sunday schedule."
Enjoy with the releases....


Home Page :  http://www.kernel.org/


Download : 


==> Kernel 3.12-rc7

--> Also Check the Previous

 Release of Kernel 3.12-rc6 Here
 Release of Kernel 3.12-rc5 Here

--> Check the latest Release of Kernel 3.10.17 and 3.11.6 details Here