cp 資料備份模式

在freebsd中使用cp完整備份

* cp參數介紹

-f 強制不詢問
-i 互動方式詢問是否備份
-R 用在有資料夾的備份
-P 備份s-link
-L 備份s-link指向真正資料
-p 保留完成屬性
-v 顯示細部資訊

* 完全備份屬性、所有人、任何資料

備份一個資料夾完整的內容(s-link參考指向資料)通常會用
# cp -RLpfv data /Backup/
在man文件裡有談到-r等同於-RL因此簡化後
# cp -rpfv data /Backup/

備份一個資料夾完整的內容(s-link不參考指向資料,用本來s-link表示)
# cp -RPpfv data /Backup/
在man文件裡有談到-a等同於-RpP因此簡化後
# cp -afv data /Backup/

Thunar with usb auto mount

# pkg_add -rv Thunar
# pkg_add -rv thunar-volman
# vim /usr/local/etc/PolicyKit/PolicyKit.conf (加入掛載許可權)
<config version="0.1"?>
<match user="root|clockwork"?> (加入使用者)
<return result="yes"/?>
</match?>
<define_admin_auth group="wheel"/?>
</config?>

# cd /usr/ports/x11-themes/gnome-icons-crystal && make install clean (安裝好看的icons)
# vim ~/.gtkrc-2.0 (指定此主題)
gtk-icon-theme-name = "CfG-Crystal-SVG-1.2.0"
# pkg_add -rv firefox3
# pkg_add -rv firefox3-i18n
# pkg_add -rv nspluginwrapper
# cd /usr/ports/www/linux-flashplugin9/ && make install

若有問題
手動下載
# cd /usr/ports/distfiles/
# fetch http://download.macromedia.com/pub/flashplayer/installers/current/9/install_flash_player_9.tar.gz
記一下
# md5 /usr/ports/distfiles/install_flash_player_9.tar.gz (生出來的數值)
# sha256 install_flash_player_9.tar.gz (生出來的數值)
# ls -al install_flash_player_9.tar.gz (記一下檔案大小)
# vim /usr/ports/www/linux-flashplugin9/distinfo (把數值改對上面記下來的)
# cd /usr/ports/www/linux-flashplugin9/ && make install

> nspluginwrapper -a -v -i (安裝)
> nspluginwrapper -a -v -r (移除)
> nspluginwrapper -l (列出已安裝)
> nspluginwrapper -h (使用說明)