Category Archive For "Linux"
Mysql ‘de regular expression kullanmak
REGEXP parametresi ekleyerek kullanabilirsiniz. # ilk harfi M ve U olanlari sorgulariz. mysql> SELECT * FROM uye WHERE ad REGEXP “^[Mu]”; # Son harfi Z olanlar SELECT * FROM uye WHERE ad REGEXP “[Z]$” ; # Ilk iki harfi MU olanlar mysql> SELECT * FROM uye WHERE ad REGEXP “^MU”; sevgiyle.
[crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Apache2 baslatmaya calisiyorsunuz, basliyor gozukuyor ama hicbir surecin baslamadigini goruyorsaniz ve error.log ‘larda asagidaki gibi bir hata aliyorsaniz bunun sebebi semafor depolama kapasitesinin asilmis olmasindandir. [crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock mail:/etc/apache2# ipcs -s | grep www-data 0x00000000 57442304 www-data 600 1 0x00000000 59801601 www-data 600 1 Bu sorunu gidermek …
time zone degistirmek
vim /etc/sysconfig/clock [murat@fedora ~]$ cat /etc/sysconfig/clock # The ZONE parameter is only evaluated by system-config-date. # The time zone of the system is defined by the contents of /etc/localtime. ZONE=”Europe/Istanbul”
Toplu guncellestirmede istenilen paketlerin saf disi birakilmasi
Bazen istemediginiz guncellestirmeler olabilir. Bunun icin yapmaniz gereken –exclude=paket_adi parameterisi yum ile kullanmaktir. yum update –exclude=tzdata.noarch yum update –exclude=xmms* –exlude=amsn man yum sevgiyle.
mac adresini degistirmek nasil ?
[root@fedora ~]# ifconfig eth2 down hw ether 01:DF:EF:CF:DF:00 [root@fedora ~]# ifconfig eth2 up sevgiyle.
dizinlerin topluca haklarini degistirmek
cd /home/murat/test find . -type d -exec chmod 777 {} \; -type d : dizin oldugunu soyluyorsunuz . : o anki bulunmus oldugunuz dizin -exec chmod : chmod komutunu kullandiginizi soyluyorsunuz. Sevgiyle 🙂
find -exec
/etc/ dizini altinda murat gecen dosyalarin adlarini listeyebilirsiniz. find /etc/ -exec grep -q “murat” ‘{}’ \; -print
Mysql ‘de komut calistirmak
mysql> system ERROR: Usage: \! shell-command mysql> system ls Sevgiyle 🙂
Konsoldan wan ip adresini bulmak
Bunun icin curl paketine ihtiyac duyulmaktadir. apt-get install curl yum -y install curl fw:~# curl -s http://whatismyip.org/ 85.xx.xxx.xx fw:~# sevgiyle.
Sed ile bul/degistir islemi
sed -e ‘s/murat/ugur/g’ /etc/passwd # /etc/passwd dosyasindaki tum murat ‘lari ugur olarak degistiriyor. Murat.