Archive for February 5th, 2010

5
Feb

komut satırından subversion ignore

   Posted by: Muhammed YÜRÜRDURMAZ    in Bilgi Ve Deneyim

  : .

komutunu verdiğiniz zaman editör açılır içine yazıp kaydedip çıkarsınız. bu işlem sonunda commit gerekir

dosya içerisine yazılabilecek bir kaç örnek

*.txt
*.pdf
.cvsignore
klasor_adi
*.war
Bookmark and Share
Tags: , , , , ,

Tags: , , , , ,

5
Feb

eastwood charts

   Posted by: Muhammed YÜRÜRDURMAZ    in Yazılım

eastwood google chart apinin jfreechart ile kendi sisteminizde kullanabileceğiniz bir hale getirilmiş versiyonu dur.

Örnekler

Where's Google?
Where's JFree.org?

Where's Google?
Where's JFree.org?

Where's Google?
Where's JFree.org?

Where's Google?
Where's JFree.org?

Bookmark and Share
Tags: , , , ,

Tags: , , , ,

5
Feb

debian komut satırından static ip verme

   Posted by: Muhammed YÜRÜRDURMAZ    in Bilgi Ve Deneyim

tanımlı ağ bağlantılarını görmek için

#  -a
eth0      Link encap:Ethernet  HWaddr 00:0c:29:90:b5:46
          inet addr:192.168.0.85  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe90:b546/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:139716 errors:0 dropped:0 overruns:0 frame:0
          TX packets:17482 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:169356342 (161.5 MiB)  TX bytes:1355703 (1.2 MiB)
          Interrupt:19 Base address:0x2000 

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:8 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:560 (560.0 B)  TX bytes:560 (560.0 B)

dosyası içersinden eth0 a 192.168.0.17 adresini verecek örnek altta. ağ geçidi 192.168.0.1 olacak. dns sunucular 4.2.2.1, 4.2.2.2, 4.2.2.3 olacak

Not: dns ayarı için resolvconf yüklü olmalı

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
	address 192.168.0.17
	netmask 255.255.255.0
	network 192.168.0.0
	broadcast 192.168.0.255
	gateway 192.168.0.1
	dns-nameservers 4.2.2.1 4.2.2.2 4.2.2.3
Bookmark and Share
Tags: , , , ,

Tags: , , , ,

5
Feb

ssh bağlantısında Host key verification failed hatası

   Posted by: Muhammed YÜRÜRDURMAZ    in Bilgi Ve Deneyim

Aşağıdaki gibi bir hata alıyorsanız bunun anlamı şudur. Daha önce ile bağlantı yaptığınız makinanın kendini tanımlaka için kullandığı anahtar değişmiş demektir. Bunun farklı nedenleri olabilir

  • arada birisi man-in-the-middle saldırısı yapıyordur (kısaca yaptılarınızı takip ediyordur veya takip etmeye çalışıyordur)
  • bağlandığınız makina değişmiştir
  • bağlandığınız makinanın private keyi yeniden oluşturulmuştur.

eğer saldırı olmadığından eminseniz /home/kullanıcı/.ssh/ dosyasını önce yedekleyin (gerek olabilir) sonra bir editor ile açın ve hata mesajında belirtilen (/home/admin/.ssh/:12 burada 12. satır) satırı silip keydedip çıkın. sonraki bağlantıda tekrar oluşacaktır.

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
2a:ba:3c:fb:26:47:59:d2:ab:9b:cd:69:41:d6:e4:80.
Please contact your system administrator.
Add correct host key in /home/admin/.ssh/known_hosts to get rid of this message.
Offending key in /home/admin/.ssh/known_hosts:12
RSA host key for 192.168.0.17 has changed and you have requested strict checking.
.
Bookmark and Share
Tags: , ,

Tags: , ,

Switch to our mobile site