Entries Published On January, 2017
Koken + Nginx Yapılandırması
## Gzip port_in_redirect off; gzip on; gzip_static on; gzip_buffers 4 128k; gzip_comp_level 1; gzip_http_version 1.0; gzip_min_length 0; #gzip_types text/plain application/x-javascript text/xml text/css; gzip_vary on; gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rdf+xml application/rss+xml application/schema+json application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-javascript application/x-web-app-manifest+json application/xhtml+xml application/xml font/eot font/opentype image/bmp image/svg+xml image/vnd.microsoft.icon image/x-icon text/cache-manifest text/css text/javascript text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy …
Linux altında reboot ve shutdown işlemleri
#Reboot shutdown -r now init 6 reboot systemctl reboot #Shutdown shutdown -h now init 0 poweroff systemctl halt poweroff systemctl poweroff
rsync ile band genişliği verme
–bwlimit parametresiyle band genişliği ayarlanabilir. rsync -avz -l -t -p –bwlimit=100 /var/www/ root@10.0.0.1:/var/www/ –bwlimit=KB
Telnet ile IMAP hesap kontrolu
1. telnet localhost 143 2. 01 LOGIN eposta@adresi.com sifreniz 3. . list “” “*”
Linux altında dosya bölmek
Linux ortamında dosyaları bölmek istediğiniz de yardımınıza “split” koşuyor. Örnek: split -b 2M phpMyAdmin-4.6.5.2-all-languages.zip “phpMyAdmin-4.6.5.2-all-languages.” Yukarıda yaptığımız işlem, phpmyadmin zip dosyasını 2M ‘lık parçalara bölmekten başka birşey değildir. Bu komutun ls çıktısı: Bölünmüş dosyaları birleştirmek için “cat” komutunu kullanıyoruz. cat phpMyAdmin-4.6.5.2-all-languages.a* > pma.zip Sevgiyle.