Linux

Common Error in CentOS: Failed to set locale, defaulting to C

Failed to set locale, defaulting to C You can see this often in CentOS because you never set the locale for your Linux. You can try this [code lang=”bash”] echo "export LC_ALL=en_US.UTF-8" >> /etc/profile export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8 export LC_COLLATE=C export LC_CTYPE=en_US.UTF-8 [/code] Then disconnect and reconnect to your bash.

How to uninstall mongoDB in CentOS

Depends which version of MongoDB are you using. Normally can remove by using yum. [code lang=”bash”] yum remove mongo-10gen mongo-10gen-server [/code] or [code lang=”bash”] yum remove mongo-10gen-2.2.3 mongo-10gen-server-2.2.3 [/code]

Script for optimizing images in a directory (recursive) in Linux

#!/bin/sh # script for optimizing images in a directory (recursive) # pngcrush & jpegtran settings from: # http://developer.yahoo.com/performance/rules.html#opt_images # pngcrush for png in `find $1 -iname “*.png”`; do echo “crushing $png …” pngcrush -rem alla -reduce -brute “$png” temp.png # preserve original on error if [ $? = 0 ]; then mv -f temp.png $png …

Script for optimizing images in a directory (recursive) in Linux Read More »