| 15 | }}} |
| 16 | |
| 17 | == Debian == |
| 18 | |
| 19 | * Debian 從 squeeze/sid 以後的版本,有多了一些修改,例如: |
| 20 | * 用 [http://susefaq.sourceforge.net/faq/services.html insserv 啟動服務] - Q: 類似 Redhat 系列的 service ?? |
| 21 | * 套件改用 quilt 而非 dpatch - [http://wiki.debian.org/Projects/DebSrc3.0 關於 debian package source format 3.0 (quilt)] - [http://dev.firnow.com/course/6_system/linux/Linuxjs/20090824/170587.html deb 包新格式] |
| 22 | * [http://packages.debian.org/quilt quilt 的 Debian 套件] |
| 23 | {{{ |
| 24 | $ sudo apt-get install quilt |
| 25 | }}} |
| 26 | * [http://www.suse.de/~agruen/quilt.pdf Introduction to quilt (pdf)] |
| 27 | * [http://www.wzdftpd.net/blog/index.php?2008/02/05/3-quilt-a-patch-management-system-how-to-survive-with-many-patches Quilt, a patch management system (how to survive with many patches)] |
| 28 | * [http://pyxon.wordpress.com/2009/01/14/converting-debian-packages-from-dpatch-to-quilt/ Converting Debian packages from dpatch to quilt] - 說明如何把原本 dpatch 的 debian 套件移植成改用 quilt |
| 29 | * [http://wiki.debian.org/UsingQuilt Using quilt with Debian source packages] - Debian 官方維基介紹 quilt 的用法 |
| 30 | * [http://chistera.yi.org/~dato/blog/104_quilt_options Useful and some must-have options for quilt] - 記載幾個建議設定在 ~/.quiltrc 的參數 |
| 31 | {{{ |
| 32 | QUILT_PATCH_OPTS="--unified-reject-files" |
| 33 | QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index" |
| 34 | QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto" |
| 35 | |
| 36 | QUILT_PATCHES="debian/patches" |
| 37 | QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33" |