發表文章

目前顯示的是 6月, 2013的文章

利用 dd 備份硬碟

將硬碟直接備份到另外一顆硬碟 # dd if=/dev/sda of=/dev/sdb # dd if=/dev/sda of=/dev/sdb bs=4096k # dd if=/dev/sda of=/dev/sdb conv=noerror,sync bs=4k bs 會影響速度, 沒設的話 default 是  512 , 很慢很慢 備份硬碟磁區 # dd if=/dev/sda1 of=/dev/sda5 建立硬碟的映像檔 在此處,用dd 來製作一個第一部硬碟的影像檔,並且將其結果導入gzip壓縮程式。其產生的壓縮結果則被置於另一磁碟的一個檔案中。反向的程序方法 # dd if=/dev/sda | gzip > /mnt/sdb1/backup.img.gz 解開影像檔到硬碟 # gzip -dc /mnt/sdb1/backup.img.gz | dd of=/dev/sda Reference:http://wiki.ubuntu-tw.org/index.php?title=Dd

Git Autocomplete for Bash Shells

wget https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -O ~/.git-completion.bash 1.  Add this line to your ~/.bash_profile source ~/.git-completion.bash 2. In your terminal, type: source ~/.bash_profile