Hold the Ctrl Key and move the scroll wheel on the mouse to resize the icons.
Increase max inodes gpfs online
To see max inodes df -i mmchfs /dev/data -F #maxinodes https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014488860
Resolve xmlrpc.php attack
Add the following code to .htaccess file <Files “xmlrpc.php”> Order Allow,Deny deny from all </Files> Firewall IP iptables -A INPUT -s [IP] -j DROP ipfw add 3 deny tcp from [IP] to any
Useful Tcpdump Commands
# HTTP GET tcpdump -s 0 -A ‘tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420’ #HTTP POST tcpdump -s 0 -A ‘tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)’
Configure mod_speling apache 1.3.36 on FreeBSD
Locate your source for apache 1.3.36 cd ??/apache_1.3.36/modules/standard/ /usr/local/apache/bin/apxs -c mod_speling.c /usr/local/apache/bin/apxs -i -a -n speling mod_speling.so vi /usr/local/apache/conf/httpd.conf <VirtualHost x.x.x.x> ServerAlias www.xxx.com ServerName xxx.com CheckSpelling on </VirtualHost> /usr/local/apache/bin/apachectl restart
Enable Root User osX 10.6.8
sudo passwd root
DNS Not Resolving Mac OSx
Mac OS X 10.6.8 can’t ping, surf nslookup works 1. I logged into terminal mode Application,Utilities,Terminal 2. [typed the following commands] cd /System/Library/LaunchDaemons/ sudo mv com.apple.mDNSResponder.plist com.apple.mDNSResponder.plist.bak 3. [restarted laptop]Clicked on Apple, Restart
Failed dependencies libcrypto.so.6
Solution yum install openssl098e
centos 6.2 install freezes on detecting hardware 2 TB drive
Issue: CentOS 6.2 x64 install halts during initial boot, with boot messages stopping at “Detecting hardware”. Solution: At boot menu screen from CD [click] TAB key when the install line is highlighted Add the following parameter to the vmlinux line and hit enter acpi=off
Change wordpress URL mysql
You move your wordpress to a different URL and you can’t access wp-admin to login and change it. Solution: Connect to database from command line. select * from wp_options where option_name =’siteurl’; update wp_options set option_value =’http://newaddress’ where option_name=’siteurl’; You’ve ever moved your WordPress site to another location and all…