瀏覽模式: 普通 | 列表

OpenGoo 線上產生共享文件

http://opengoo.org/about.html

What is OpenGoo

OpenGoo is an Open Source Web Office.


Web Office

It is a complete solution for every organization to create, collaborate, share and publish all its internal and external documents.

You and your team can create and collaborate on:

  • Text documents
  • Spreadsheets (coming soon)
  • Presentations
  • Task Lists
  • E-mails
  • Calendars
  • Web Links
  • Contacts
http://freesf.tw/modules/news/article.php?storyid=3653

[閱讀全文]

PowerDNS DNS 伺服器

1。它是 Open Source

2。DNS 伺服器

3。支援資料庫 MySQL、PostgreSQL、Oracle 或其它等

4。官網: http://www.powerdns.com/

5。參考文件: http://www.howtoforge.com/installing-powerdns-with-mysql-backend-and-poweradmin-on-debian-etch

6。下載: http://www.powerdns.com/en/downloads.aspx

7。好處: zone 資料皆記錄在資料庫裡,新增刪除修改皆不用 restart DNS服務,也有poweradmin 網頁管裡介面
標籤: dns

郵件軟體/電子報系統 - DMailer

windows上免費小工具 - everything 搜尋引擎


1。滑鼠安右鍵就可以使用

2。尋搜超快速

3。輕巧方便不太占資源,

4。哇塞!!!!

http://www.voidtools.com/

attachments/200901/7383634673.png

使用 NetDrive 掛載 FTP 成為網路磁碟機

NetDrive 對於家用的是免費的 (http://www.netdrive.net/purchase.html)

它讓你不需要使用 Filezilla 等 ftp client 軟體,就能夠存取 ftp 上的資料,當作自已電腦上的硬碟在使用

這裡下載 http://www.netdrive.net/download.html

它需要輸入 Name、E-Mail 才能夠下載軟體

安裝就下一步下一步就好了。

使用介面
attachments/200901/5117684701.jpg
連線成功後

[閱讀全文]

find 指令 + mtime 找出時間異動的檔案

-mtime : 指定時間曾被異動過的檔案,意思是檔案內容被更改過
-ctime : 指定時間曾被更改過的檔案,意思是檔案權限被更改過
-atime : 指定時間曾被存取過的檔案,意思是檔案被讀取過

1。時間是以 24 小時為一個單位,而不是以天的

2。2009/01/10 12:00 時間開始找一天內的,會列出 2009/01/09 12:00 ~ 2009/01/10 12:00 時間內的檔案

找出 3 天"以前"被異動過的檔案 (前第三天以前 → 2009/01/07 12:00 以前的檔案) (> 72 小時)
find /var/log/ -mtime +3 -type f -print
找出 3 天內被異動過的檔案 (2009/01/07 12:00 ~ 2009/01/10 12:00 內的檔案) (0 ~ 72 小時內)
find /var/log/ -mtime -3 -type f -print

找出前第 3 天被異動過的檔案 (2009/01/06 12:00 ~ 2009/01/7 12:00 內的檔案) (72 ~ 96 小時)

find /var/log/ -mtime 3 -type f -print

找出第 3 天被異動過的檔案 (也可以這樣寫)

find /var/log/ -mtime +2 -mtime -4 -type f -print
標籤: find

使用 less 指令時有顏色顯示

環境: Fedora 8

安裝必要套件 
yum install source-highlight
Quote: http://linuxtoy.org/archives/less-highlight.html
首先安裝 source-highlight
(這個工具主要用途是將文件轉換為語法高亮的 html 頁面,有興趣的話可以試一下)
設定環境變數 vi ~/.bashrc
# 加入
PAGER='less -X -M'
export LESSOPEN="| /usr/bin/src-hilite-lesspipe.sh %s"
export LESS=' -R '
馬上用,兩種方式

1。source .bashrc

2。su

再來執行 less xxx.sh 就可以看到有顏色的了

不過 less /var/log/messages 就沒有顏色了
標籤: less