Wednesday, March 16, 2011

RSPAN



Reference :;
http://aconaway.com/2009/03/18/rspans-on-cisco-switches/
https://supportforums.cisco.com/thread/2009499
http://cauew.blogspot.com/2008/07/remote-switched-port-analyzer-rspan.html
http://www.cisco.com/en/US/docs/switches/lan/catalyst2960/software/release/12.2_52_se/configuration/guide/swspan.html
http://www.cisco.com/en/US/docs/switches/lan/catalyst3560/software/release/12.1_19_ea1/configuration/guide/swspan.html#wp1073772

CCNA FreeExam

Download kt sini :

http://www.examcollection.com/640-802.html

Sunday, March 6, 2011

Fb & Twitter & Waktu solat di blogspot

cara2 nk add status "like" fb di setiap posting di blog :

1. Login Blogspot > Dashboard

2. Click pada Design > Html > Expand Widget template ( TICK)

3. Ctrl + F dan cari

data:post.body

4. Copy Code di Orenh bawah ini dan pastekan di bawah code (2)


Reference:

http://pakatanblogger.com/tutorial-letak-button-like-facebook-pada-blogspot/


cara2 nk waktu solat di blog :

http://www.islamicfinder.org/athanDownload.php?lang=



cara2 nk psang twitter di blog :

http://www.twitterflash.net/getbutton.php?bid=13

Wednesday, March 2, 2011

Shell Script - Create Folder

Nk buat satu script yg akan tngok file dlm satu folder dan akan groupkan file tersebut dlm folder yg baru base pada tarikh hari semasa.

Biasanya guna bila nk alihkan backup file ke folder yg baru secara automatic...Cth script tersebut seperti di bawah::

#!/bin/bash

d=`date "+%b%d"`
mkdir /home/$d

cd /home/stuff
find . -depth -type f -name '*' -mtime -1 -exec mv {} /home/$d \;





Rujukan :
http://www.linuxquestions.org/questions/linux-newbie-8/script-to-move-files-242911/