2011年7月14日 星期四

製作DOS image

http://untitledfinale.wordpress.com/2007/10/09/create-mount-and-copy-floppy-disks-images-under-linux/

2011年7月13日 星期三

Disable Apache folder listing for each folder

1. enable .htaccess file override
edit file /etc/httpd/conf/httpd.conf
search "htaccess", changed below setting to
AllowOverride All

2. go to folder that will disable folder listing
create file .htaccess
add this content:
IndexIgnore *

3. Restart Apache
service httpd restart

Reference:
http://www.cyberciti.biz/faq/apache-web-server-prevent-directory-folder-listing/
http://www.cyberciti.biz/faq/apache-htaccess/

2011年7月4日 星期一

Manipulating Strings

bash下字串的操作

chars="12345678"
echo ${chars:2:3} #234
format: ${string:position:length}
position index從1開始
echo ${chars:2} #345678
從0開始算

reference:
http://tldp.org/LDP/abs/html/string-manipulation.html