RSS

Unzip: skipping filename.zip need PK compat. v4.6 (can do v2.1)

Sometimes extracting a zip file using the unzip command may result in the “skipping: filename.zip  need PK compat. v4.5″ error message.

# unzip filename.zip
Archive:  filename.zip
   skipping: filename.zip  need PK compat. v4.6 (can do v2.1)

This is due to the file been compressed with the latest version of PKZIP which the unzip command cannot handle. The solution is to install p7zip package which can handle the files compressed using PKZIP.

Download the latest version of p7zip:

# wget http://downloads.sourceforge.net/project/p7zip/p7zip/9.20.1/p7zip_9.20.1_x86_linux_bin.tar.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fp7zip%2Ffiles%2Fp7zip%2F9.20.1%2Fp7zip_9.20.1_x86_linux_bin.tar.bz2%2Fdownload&ts=1390605043&use_mirror=garr

Extract the file

# tar -jxf p7zip_9.20.1_x86_linux_bin.tar.bz2

goto the extracted directory and run the installer

# ./install.sh

This will install the ’7za’ command on your server using which the zip file can be extracted

# 7za x filename.zip
 Processing archive: filename.zip
 Extracting  filename
 Everything is Ok
 

Posted by on 25 Ocak 2014 in Bilgisayar, Linux, Server

Leave a comment

Tüm alt klasörlerin ve dosyaların chmodlarını değiştirme

Tüm dosyaların ve klasörlerin chmod ayarlarını değiştirmek için aşağıdaki kodları kendinize göre düzenleyip ssh’dan çalıştırabilirsiniz.
Aşağıdaki kodlardan ilk satır tüm klasörleri ve alt klasörleri chmod ayarlarını 755 yapar.
İkinci satır ise dizinde bulunan ve tüm alt dizinlerdeki dosyaları chmod değerlerini 644 yapar.

chmod 755 $(find /home/user/public_html -type d)
chmod 644 $(find /home/user/public_html -type f)
 

Posted by on 10 Aralık 2013 in Bilgisayar, Linux, Programlama, Web

Leave a comment

cPanel hesabının mail göndermesini tamamen engelleme

Cpanelde spam gönderen hesapların mail göndermesini tamamen engellemek

email göndermeyi engellemek için bu kodları:

chmod 0 /home/username/etc 
chattr +ia /home/username/etc

engeli kaldırmak için bu kodları:

chattr -ia /home/username/etc 
chmod 750 /home/username/etc

kullanmalısınız.

 

Posted by on 08 Aralık 2013 in Web

Leave a comment

TPlinkTL-WR740N ve TL-WR741ND Anten farkı

İkisinin arasındaki fark antenleridir.

  • TL-WR740N Routerın bir adet sabit anteni vardır.
  • TL-WR741ND Routerın bir adet sökülebilir anteni vardır.

The difference between them is:

  • TL-WR740N Router with one fixed antenna.
  • TL-WR741ND Router with one detachable antenna.
 

Posted by on 05 Mart 2013 in Bilgisayar

Leave a comment

Jquery code with wordpress jetpack

1
2
3
4
5
6
7
8
<script type="text/javascript">
jQuery(document).ready(function($){
 
	$(".news-text").click(function(){
	  $(this).children(":first").toggle('slow');
	});
});
</script>

Aliasing the jQuery Namespace

When using another JavaScript library, we may wish to call $.noConflict() to avoid namespace difficulties. When this function is called, the $ shortcut is no longer available, forcing us to write jQuery each time we would normally write $. However, the handler passed to the .ready() method can take an argument, which is passed the global jQuery object. This means we can rename the object within the context of our .ready() handler without affecting other code:

1
2
3
jQuery(document).ready(function($) {
  // Code using $ as usual goes here.
});
 

Posted by on 26 Şubat 2013 in Bilgisayar, Programlama, Wordpress

Leave a comment