Debian: 17 years of Free Software,"do-ocracy" ... - Linux

Liam avatar
By Liam
at 2011-03-14T14:30

Table of Contents

Debian: 17 years of Free Software,"do-ocracy", and democracy

Debian 是一個自由的作業系統 (OS) ,提供你安裝在電腦上使用。作業系統就是能讓你
的電腦工作的一系列基本程式和實用工具。由於 Debian 採用了 Linux Kernel (作業系
統的核心),但是大部分基礎的作業系統工具都來自於 GNU,因此又稱為 GNU/Linux。

Stefano Zacchiroli 是當前的 Debian 計畫主持人。他於2001年成為 Debian 開發者之
一並長期貢獻數個 Debian 核心計畫的服務,例如 Debian 的套件追蹤系統和身為
Quality Assurance 團隊的其中一員。他也參與 MANCOOSI 計畫
(http://www.mancoosi.org),這個計畫是歐洲對於 ICT 的相關研究計畫。

Stefano Zacchiroli 此次在台灣的行程中,預計於3月21日 (一) 下午18:30~20:30假國
立臺北科技大學 國際會議廳進行一場「Debian: 17 years of Free
Software,"do-ocracy", and democracy」,誠摯邀請對 Debian 有興趣的朋友一同來共
襄盛舉,歡迎踴躍參加!

報名網址 http://registrano.com/events/debian

--
Tags: Linux

All Comments

32bit 升到 64 bit的無痛方式??

Caroline avatar
By Caroline
at 2011-03-14T11:21
※ 引述《monyo (無常)》之銘言: : ※ 引述《Adama (So Say We All.)》之銘言: : : 就是先找一個partition灌好64bit OS : : 那原本的data對新的OS來說就是一堆目錄和檔案,只須重新建立好目錄結構對應 : : 如果原本的data是放在獨立的分割區裡,那可 ...

批次將JPG改成jpg問題

Faithe avatar
By Faithe
at 2011-03-14T01:55
find . -name and#34;*.JPGand#34; |while read LIST do temp=${LIST%%JPG} mv $LIST $tempand#39;jpgand#39; done - ...

批次將JPG改成jpg問題

Odelette avatar
By Odelette
at 2011-03-14T00:58
用python來做的話,開個文字檔貼上下面的code, chmod u+x 之後執行 #! /usr/bin/env python import os, commands stdout = commands.getstatusoutput(and#39;find . -name and#34;*.JPGa ...

32bit 升到 64 bit的無痛方式??

Bethany avatar
By Bethany
at 2011-03-13T23:44
※ 引述《Adama (So Say We All.)》之銘言: : ※ 引述《monyo (無常)》之銘言: : : 目前電腦用的是ubuntu 10.xx 32bit : : 所以需要將系統升級到64bit, 不過有時候還是需要用32bit來編譯 : : 換句話說, 升級後還需要保留原本的環境, 而且想保 ...

批次將JPG改成jpg問題

Anonymous avatar
By Anonymous
at 2011-03-13T21:37
find . -name and#34;*.JPGand#34; -exec bash -c and#34;mv \$1 \`echo \$1 | sed s/JPG/jpg/\`and#34; -- {} \; for i in `find . -name and#34;*.JPGand#34;`; d ...