Deepin 2014 final 虛擬機安裝紀錄,心得

Deepin是近期崛起的一的Linux distribution,是對岸基於Ubuntu開發的Linux作業系統,類似LinuxMint那樣,主打良好的使用體驗,之前推坑幾個朋友灌過,評價都還不錯,但總覺得需要改進的地方還太多、進步空間還太大,歷經了beta以及RC版,終於在今天推出了fianl(正式版),趁今天Deepin 2014推出,來試試看新版本的基本安裝以及使用如何。

一開始bootloader的畫面有點嚇到我XD ISOLINUX的版本有點舊,新版其實Loading的速度快很多,之前在包Linux initramfs開機的時候有測過,看來這部份應該建議升級一下,而且這麼新的發行版沒道理去找骨董用啊XD
deepin_install_screenshot 1

閱讀全文

用 rsync 建 public mirror參數筆記

在建專案 mirror 的時候比較長用到的參數,筆記一下…

除了資料的同步以外,很重要的一點是避免使用者在存取的時候剛好在同步資料就爛掉了,一般會用 --archive 加上 --delete-after/--delay-updates,在要資料同步拿完後才一次動作,另外透過 --no-OPTION 拿掉不要處理的部份,例如我會把 owner 跟 group 拿掉,方便 local 要改一些因地制宜的依些設定,再用 --exclude 排除掉 local 的東西,如 .htaccess。

–delete-after receiver deletes after transfer, not during
–delay-updates put all updated files into place at transfer’s end
-S, –sparse handle sparse files efficiently
–safe-links ignore symlinks that point outside the source tree

-v, –verbose increase verbosity
-a, –archive archive mode; equals -rlptgoD (no -H,-A,-X)
–no-OPTION turn off an implied OPTION (e.g. –no-D)

-r, –recursive recurse into directories
-l, –links copy symlinks as symlinks
-p, –perms preserve permissions
-t, –times preserve modification times
-g, –group preserve group
-o, –owner preserve owner (super-user only)
-D same as –devices –specials

-A, –acls preserve ACLs (implies –perms)
-X, –xattrs preserve extended attributes
-H, –hard-links preserve hard links

–exclude=PATTERN exclude files matching PATTERN
–exclude-from=FILE read exclude patterns from FILE