2010年6月19日 星期六

追蹤並圖型顯示 TCP/IP 網路使用狀況:bandwidthd

http://freesf.tw/modules/news/article.php?storyid=710
發表人 ols3 於 2004/1/15 11:36:12 臥龍小三專欄
OLS3 推薦軟體:bandwidthd


'bandwidthd' 可以用來追蹤並以圖型化、網頁化的方式,顯示你的 TCP/IP 網段中的使用狀況。

bandwidthd 圖型化是以網段中各自獨立的 IP 為對象,它可以不同的色彩來顯示 HTTP, TCP, UDP, ICMP, VPN 以及 P2P 協定的交通流量。

和 MRTG 不同的是,'bandwidthd' 追蹤的是各別的 IP 用量,而不像 MRTG 是顯示某一網路介面的總量,對於網管人員而言,bandwidthd 可說是一項好用的利器。

* bandwidthd 採用 GPL 授權,原始網址如下:

http://bandwidthd.sourceforge.net/

下載位址:

http://sourceforge.net/project/showfiles.php?group_id=89685&release_id=184856

或 由敝中心下載:

ftp://ftp.tnc.edu.tw/pub/bandwidthd

* 安裝

bandwidthd 的安裝方法可說十分簡單,

首先您要檢查一下基本的配備是否充足:

須先安裝有以下函式庫:

libpcap ( http://www.tcpdump.org/ )
libpng (http://www.libpng.org/ )
libgd ( http://www.boutell.com/gd/ )

系統須有支援 System V IPC (大部份 Unix/Linux 都有)

接著,便可來安裝 bandwidthd 啦!

ncftp ftp.tnc.edu.tw

cd pub/bandwidthd

get bandwidthd-1.2.0.tgz

quit

以 root 身份執行以下動作

tar xvzf bandwidthd-1.2.0.tgz

cd bandwidthd-1.2.0

make install

至 此即已安裝完成,它會將 bandwidthd 安裝 至 /usr/local/bandwidthd 下

* 設定

bandwidthd 的設定可說超級簡單,請編輯:

/usr/local/bandwidthd/etc/bandwidthd.conf

把 其中 subnet 的設定設好即可,以 203.68.102.0/26 四分之一網段為例:

subnet 203.68.102.0 255.255.255.192

存檔之後,便可準備執行。

* 執行

cd /usr/local/bandwidthd
./bandwidthd

* 顯示:

在您的 web 主目錄下即行

ln -s /usr/local/bandwidthd/htdocs bandwidthd

接著您便可用 http://您的主機/bandwidthd
看到網路中各主機的頻寬使用情況啦!

* 統計結果圖例:

http://bandwidthd.sourceforge.net/demo/

* 結語:

這 個工具真是太棒了! 小而美,方便實用不傷神,值得小型網路管理者試試!

OLS3 下次再為您報導更好的軟體喲!

法院判決 Novell 擁有 Unix 著作權,Linux 社群從此免去威脅

http://freesf.tw/modules/news/article.php?storyid=3809
發表人 ols3 於 2010/4/1 9:15:39
資訊網路法律

03/30 來自 Novell 官網的消息:

03/30 猶他州地方法院判決,關於 SCO 和 NOVELL 雙方對於 Unix 著作權的管司,最後判給 NOVELL。Linux 社群從此可免去威脅。

http://www.novell.com/prblogs/?p=2153

Decision in the SCO Group vs. Novell Jury trial
====

Today, the jury in the District Court of Utah trial between SCO Group and Novell issued a verdict.

Novell is very pleased with the jury’s decision confirming Novell’s ownership of the Unix copyrights, which SCO had asserted to own in its attack on Linux. Novell remains committed to promoting Linux, including by defending Linux on the intellectual property front.

This decision is good news for Novell, for Linux, and for the open source community.

PDF 轉檔工具及程式庫

■ PDF 轉檔工具及程式庫

.text to pdf
 
xml,text to pdf from java : iText => http://www.lowagie.com/iText/

 
create pdf from C Language :haru => http://libharu.sourceforge.net/

.pdf to text
 http://www.adobe.com/products/acrobat/access_onlinetools.html

 pdf to text from java(範本在最下面),支援跨平台:
 Apache PdfBox => http://incubator.apache.org/pdfbox/


.PDF format becomes ISO standard
 http://www.iso.org/iso/pressrelease.htm?refid=Ref1141
 http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=51502
 http://www.cogniview.com/convert-pdf-to-excel/post/pdf-editing-creation-50-open-sourcefree-alternatives-to-adobe-acrobat/
 http://www.adobe.com/devnet/pdf/library/
 好(php,pdf generator) http://www.fpdf.org/
 免費 http://www.pdflib.com/
 介紹 http://www.neo.com.tw/archives/896


■ Apache PDFBox Sample (pdf to text)

package org.pdfbox;

import java.io.*;
import org.apache.log4j.Category;
import org.apache.log4j.Logger;
import org.pdfbox.encryption.DecryptDocument;
import org.pdfbox.exceptions.InvalidPasswordException;
import org.pdfbox.pdfparser.PDFParser;
import org.pdfbox.pdmodel.PDDocument;
import org.pdfbox.util.PDFTextStripper;

public class ExtractText
{

private static final Logger LOG;
public static final String DEFAULT_ENCODING = null;
private static final String PASSWORD = "-password";
private static final String ENCODING = "-encoding";
private static final String CONSOLE = "-console";
private static final String START_PAGE = "-startPage";
private static final String END_PAGE = "-endPage";
static Class class$org$pdfbox$ExtractText; /* synthetic field */

public ExtractText()
{
}

public static void main(String args[])
throws Exception
{
boolean toConsole = false;
int currentArgumentIndex = 0;
String password = "";
String encoding = DEFAULT_ENCODING;
PDFTextStripper stripper = new PDFTextStripper();
String pdfFile = null;
String textFile = null;
int startPage = 1;
int endPage = 0x7fffffff;
for(int i = 0; i < args.length; i++)
if(args[i].equals("-password"))
{
if(++i >= args.length)
usage();
password = args[i];
} else
if(args[i].equals("-encoding"))
{
if(++i >= args.length)
usage();
encoding = args[i];
} else
if(args[i].equals("-startPage"))
{
if(++i >= args.length)
usage();
startPage = Integer.parseInt(args[i]);
} else
if(args[i].equals("-endPage"))
{
if(++i >= args.length)
usage();
endPage = Integer.parseInt(args[i]);
} else
if(args[i].equals("-console"))
toConsole = true;
else
if(pdfFile == null)
pdfFile = args[i];
else
textFile = args[i];

if(pdfFile == null)
usage();
if(textFile == null && pdfFile.length() > 4)
textFile = pdfFile.substring(0, pdfFile.length() - 4) + ".txt";
InputStream input = null;
Writer output = null;
PDDocument document = null;
try
{
input = new FileInputStream(pdfFile);
long start = System.currentTimeMillis();
document = parseDocument(input);
long stop = System.currentTimeMillis();
LOG.info("Time to parse time=" + (stop - start));
if(document.isEncrypted())
try
{
DecryptDocument decryptor = new DecryptDocument(document);
decryptor.decryptDocument(password);
}
catch(InvalidPasswordException e)
{
if(args.length == 4)
{
System.err.println("Error: The supplied password is incorrect.");
System.exit(2);
} else
{
System.err.println("Error: The document is encrypted.");
usage();
}
}
if(toConsole)
output = new OutputStreamWriter(System.out);
else
if(encoding != null)
output = new OutputStreamWriter(new FileOutputStream(textFile), encoding);
else
output = new OutputStreamWriter(new FileOutputStream(textFile));
start = System.currentTimeMillis();
stripper.setStartPage(startPage);
stripper.setEndPage(endPage);
stripper.writeText(document, output);
stop = System.currentTimeMillis();
LOG.info("Time to extract text time=" + (stop - start));
}
finally
{
if(input != null)
input.close();
if(output != null)
output.close();
if(document != null)
document.close();
}
}

private static PDDocument parseDocument(InputStream input)
throws IOException
{
PDFParser parser = new PDFParser(input);
parser.parse();
return parser.getPDDocument();
}

private static void usage()
{
System.err.println("Usage: java org.pdfbox.ExtractText [OPTIONS] [Text File]\n -password Password to decrypt document\n -encoding (ISO-8859-1,UTF-16BE,UTF-16LE,...)\n -console Send text to console instead of file\n -startPage The first page to start extraction(1 based)\n -endPage The last page to extract(inclusive)\n The PDF document to use\n [Text File] The file to write the text to\n");
System.exit(1);
}

static Class class$(String x0)
{
try
{
return Class.forName(x0);
}
catch(ClassNotFoundException x1)
{
throw new NoClassDefFoundError(x1.getMessage());
}
}
static
{
LOG = Logger.getLogger(class$org$pdfbox$ExtractText != null ? class$org$pdfbox$ExtractText : (class$org$pdfbox$ExtractText = class$("org.pdfbox.ExtractText")));
}
}

清單 - Skills for MS Windows

編輯


 ‧2010/07/22 Arsee Wits:複製移動檔案時,系統停滯不動的解決方案
 ‧2010/06/00 在檔案總管中批次更改名稱
 ‧2009/07/21 Windows7的傳真使用方式

.

在檔案總管中批次更改名稱

http://briian.com/?p=7065

當我們在電腦中儲存了一堆照片、檔案或文件之後,如果你希望依照順序整個重新命名的話,該怎麼做最快呢?

其實這個功能不確定是從 Windows 2000、XP還是更早之前的Windows系統就已內建,不過知道要這樣用的人似乎不多,如果你想批次幫檔案重新依照順序命名的話,也就是01、02、 03、04......這樣一直下去,可 以試試看下面這個簡單的方法。


第1步 一般情況下都可以直接在桌面或資料夾中處理,不過如果你要事先依照日期、檔案類型或檔案大小、圖檔尺寸...等等各種不同屬性來排序的話,可以 把全部檔案通通集中放在同一個資料夾中,並將檔案總管切換成「詳細資料」的檢視模式。

然後按一下視窗上方的篩選器,如「日期」,讓它依照你喜歡的方式列出全部檔案。

第 2步 要開始幫檔案重新命名的話,請先按「Ctrl」+ 「A」將全部檔案選取、使其反白,然後在第一個檔案上面按一下滑鼠右鍵,再點「重新命名」。

第 3步 輸入新的檔案名稱,再按下「Enter」 鍵。

第4步 瞬間,全部已選取的檔案會自動全部依照你指定的排列方式,從(1)、(2)、(3)......一直命名到最後。

10款免費視窗版防毒軟體

http://briian.com/?p=243
2010/06/19

軟體名稱:avast! antivirus * 推薦
軟體版本:5.0 (最新 版
軟體語言:繁體中文(內建27國語言)
官方網站:http://www.avast.com/
直接下載繁體中文版簡體中文版
序號申請、軟體安裝教學http://briian.com/?p=523 (新增)
其他說明:難得一見的內建中文語系的免費防毒軟體,防毒能力還不錯,佔用資源也沒有 卡巴斯基的多。幫人組電腦我都裝這套,也是註冊完後,可以免費用一年,過了一年再註冊就可以。


軟體名稱:Avira AntiVir Personal Free Antivirus *推薦
軟體版本:10.0.0.561(最新版
軟體語言:繁體中文
官方網站:http://www.free-av.com/
軟體下載10.0 英文版(最新版)9.0 繁體中文版按這裡其他下載點
AntiVir安裝、設定教學文件http://briian.com/?p=533 (新增)
其他說明:免費版的「小紅傘」目前是台灣最受歡迎的免費防毒軟體之一,他的病毒偵測率目前高居排行榜前幾名,誤殺機率 也相當低、佔用資源又不高,是相當不錯的選擇。偶而會跳出廣告視窗,如果你不覺得煩的話,這是個不錯的防毒軟體。註冊商標就是一把小紅傘,很好記的。免費 版比付費版本少了POP3郵件防護、反釣魚詐騙網站防護,而且沒有WebGuard的網頁即時病毒偵測功能。


軟體名稱:AVG 中文版免費防毒軟體*推薦
軟體版本:9.0
軟體語言:繁體中文(內建多國語系)
官方網站:http://www.avgtaiwan.com/
直接下載按這裡
其他說明:內建防毒、防間諜軟體功能,可偵測大部分病毒、蠕蟲與木馬程式,免費版沒有防火牆功能與垃圾信SPAM阻擋 功能,但可即時監控檔案存取並提供網頁防護功能。


軟體名稱:PC Tools AntiVirus Free Edition *推薦
軟體版本:6.0.0.19
軟體語言:繁體中文(內建多國語系)
官方網站:http://www.pctools.com/zh/free-antivirus/
直接下載按這裡
其他說明:頗受好評的免費防毒軟體,這個免費版本除了提供一般防毒、防木馬功能,還可支援「IntelliGuard Protection」檔案、Email即時防護功能。不過免費版不支援快速更新病毒碼、沒有全天候病毒諮詢服務、沒有電話服務。


軟體名稱:Comodo Internet Security
軟體版本:3.9
軟體語言:中文版
官方網站:http://antivirus.comodo.com/
直接下載32 位元版(一般下載這個)64 位元版(64位元系統專用)
安裝說明、序號申請:http://briian.com/?p=5312
其他說明:本軟體支援檔案與Email的即時存取的病毒監控,亦可自動更新病毒碼,另外提供「HIPS程式即時監控系 統」,可監控執行中的軟體是否與外部傳資料或通訊。


軟體名稱:ClamWin Free Antivirus
軟體版本:0.95.2
軟體語言:英文版
官方網站:http://www.clamwin.com/
直接下載按這裡
其他說明:ClamWin是一套開放原始碼的免費軟體,在某些防毒軟體報告中的病毒偵測率還滿高的,可自動更新病毒碼 (每小時自動更新)、自訂掃毒排程,支援檔案、Email掃毒、記憶體掃毒…等,但此軟體並不支援即時病毒偵測功能,只能手動針對單一病毒或整個硬碟、資料夾作掃毒,不能用來 取代一般具有即時防護的防毒軟體。


軟體名稱:BitDefender 2009 Free Edition
軟體版本:2009
軟體語言:英文
官方網站:http://www.bitdefender.com/
直接下載按 這裡
其他說明:免費版本,沒有即時防護功 能,平常不會即時監控檔案或網頁是否暗藏病毒或木馬,需自行手動掃毒。使用這套的話,記得不要亂開可疑檔案。
使用教學:http://briian.com/?p=4464


軟體名稱:CA Anti-Virus 2009
軟體版本:2009
軟體語言:英文
官方網站:http://home3.ca.com/microsoft/
直接下載按 這裡
其他說明:可試用90天,三個月後再重新申請吧。須再官方網頁註冊,以EMAIL換取一個試用序號,會不會寄垃圾信? 不知道,還沒收過。


軟體名稱:Norton Security Scan 特別版
軟體版本:1.3.0.26
軟體語言:繁體中文
使用限制:免費使用半年
官方網站:http://pack.google.com
直接下載按這裡
其他說明:這是Google軟體集裡面的其中一個免費防毒軟體,這軟體可偵測並移除病毒、蠕蟲與木馬程式,能偵測但不 會移除間諜軟體或廣告軟體。此軟體只有病毒掃描與偵測功能,並無即時檔案偵測或網頁偵測,不可用來取代一般防毒軟體的即時病毒監控功能。


軟體名稱:Dr.Web CureIt!
軟體版本:5.0
軟體語言:繁體中文(內建多國語系)
使用限制:免費
官方網站:http://freedrweb.com/cureit/
直接下載按 這裡
使用教學:http://briian.com/?p=5451
其他說明:此軟體只提供病毒偵測、查殺功能,並不支援即時網頁、檔案或Email監控,如果你所使用的防毒軟體掃不到 病毒的話,可以另外安裝此防毒軟體幫電腦作更完整、詳細的檢查。


延伸閱讀:

VirusTotal 超強的「39合1」免費線上掃毒服務!

17個「未知病毒與可疑檔案」的線上回報、掃毒服務

avast! antivirus 免費防毒軟體安裝、使用教學(免費合法序號)

7個「免費」線上掃毒、掃木馬服務 (持續更新中)

清單 - 新聞、期刊雜誌、電子報

編輯

- 新聞、期刊雜誌、電子報 (一般)

- 一般新聞

- udn聯合書報攤
- 聯合報精選閱讀
簡 - 俄羅斯新聞網
簡 - 新加坡聯合早報
簡 - 新華網
簡 - 日本共同網
繁 - BBC 中文網
繁 - Google 新聞 台灣版
繁 - 中時電子報
繁 - 北美世界日報
繁 - 大紀元科技動向
繁 - 星島日報
繁 - 東方日報
繁 - 民生電子報
繁 - 泰國世界日報
繁 - 聯合電子報
繁 - 韓國朝鮮日報
繁 - 韓國東亞日報
繁 - 聯合新聞網 之 全球觀察
繁 - 香港明報
英 - CNN
英 - Euronews
英 - Financial Times
英 - MSNBC
英 - 中國郵報 (China Post)
英 - 今日美國報 ( 亞軍,USA Today)
英 - 卡達半島電視台
英 - 台灣新聞 (Taiwan News)
英 - 波士頓環球日報(Boston.com)
英 - 泰晤士報
英 - 紐約時報 ( 冠軍,New York Times)
英 - 芝加哥論壇報(Chicago Tribune)
英 - 英國 BBC News Head Line List
英 - 英國BBC新聞 (BBC)
英 - 澳大利亞 ABC.net
英 - 華盛頓郵報 ( 季軍,Washington Post)


- 佛法

佛 - 福報


- 付費期刊

- MagV線上雜誌(99元看千本)
1000本雜誌,想看就有!看雜誌免出門 不佔空間,閱讀新風氣,理財投資、旅遊攝影、流行時尚線上完整呈現!


- 免費期刊

繁 - PChome 雜誌
繁 - udn精選閱讀
繁 - udn聯合書報攤
繁 - 科學人雜誌網站
繁 - 科學月刊(元智Proxy)
英 - mygazines.com (免費雜誌,非常好)
繁 - udn數位閱讀網
繁 - 免費雜誌 (ChinaYES)


- 專門爆料

英 - WikiLeaks (專門爆料)


- 學術類期刊

- IEEE Computer Society (Digital Library)
- IEEE Xplore Guest Home Page
- [認證] CompSCI (電腦類SCI,Dialog)
- [限Proxy] EI - Engineering Village 2
- [限proxy] IEEE Micro


- 宗教新聞

繁 - 中華佛學學報 (CBS FullText of Journal)
繁 - 佛教城市
繁 - 佛教福報
繁 - 法輪功正見網
繁 - 香光尼眾佛教圖書館館刊
繁 - 香光尼眾佛教圖書館館訊


- 數學新聞

數理 - 最新論文公告網 (arXiv)
繁 - 數學傳播季刊
英 - AMS Bulletin
英 - AMS Math Digest (數學文摘)
英 - AMS Notices (數學界消息)
英 - 美國數學學會月刊(AMS Notices)


- 法律新聞

- 美國國會 New THOMAS Features (BETA)


- 物理新聞

- AIP Physics News
- PhysicsWeb(英)
- 天空論壇
- 量子物理簡介
英 - Nature Physics


- 科學新聞 (學術)

倉庫

台灣大紀元周報
大紀元全球網
政府科技新知 (研考會)

- Nature Online
- Science online
英 - Nature 雜誌全部期刊清單
英 - New Scientist.com (The World's No. 1 Science and Technology News Service)
英 - Science Daily


- 科普新聞、期刊 (一般)


清單及資料庫

繁 - Nature 全部刊物清單
繁 - 科學月刊全文資料庫1970-1999
繁 - 科資中心電子期刊清單
繁 - 通俗科學網 (科學網站介紹)
list - 一般科學新聞


各類雜誌期刊

繁 - Only Perception
繁 - 科學人雜誌(好)
繁 - 國科會科普知識(科普)
繁 - 科景Sciscape (好)

繁 - 科學發展月刊
繁 - 科技年鑑奈米網
繁 - 科學月刊
繁 - 寰宇探索
簡 - OurSci三思科學網站
繁 - 國科會科普知識(1)
繁 - 國科會科普知識(2)
繁 - 政府科技新知 (研考會)
繁 - 國科會國際科技合作簡訊網
繁 - fsj的痕跡
簡 - 三思科學

繁 - Nature Physics
繁 - NanoScience奈米科學網
英 - Science & Technology at Scientific American.com science news, science and technology cove
英 - Science Blog
英 - Galaxy Webs
英 - Nature (科普,自然雜誌)
英 - news@nature
英 - Science Magazine (科普,科學雜誌)
英 - ScienceDaily(科普,好,每日最新)
英 - Scientific American (科普,好)


沒多大用

繁 - 台灣大紀元周報
繁 - 大紀元全球網


- 經濟商業理財新聞


- 商業新聞

- Reputation Institute(商譽調查)
繁 - TaiwanNet Biz News (台灣產經新聞網 )
繁 - 國際市場簡訊
英 - BERI (商業環境風險評估,Business Environment Risk Intelligence)
英 - World Economic Forum
繁 - e天下網站
繁 - 卓越雜誌月刊
繁 - 天下網站
繁 - 遠見雜誌網
英 - (好)商業周刊 (BusinessWeek )
英 - 富比士雜誌
英 - 工業周刊 (Industry Week)
英 - 新聞週刊 (MS NBC)
英 - 財富雜誌 (Business News, Financial News)


- 理財新聞

- udn理財網
- 富蘭克林-專業基金投資顧問
- 理財 - SmartNet智富網
- 理財 - udneMoney聯合理財網基金區
- 理財 - 鉅亨網首頁
- 聯合理財會客室
- 聯合理財網 - 研究報告(2008年)
- 聯合理財網
udneMoney聯合理財網基金區
聯合理財網 - 基金綜合研究報告
- 財經新聞 (Google)

- 百度「股票知識」(簡體)

- 指數股票型基金 (ETF,0050的秘密)


- 經濟新聞

- CENS (China Economic News Service)
- World Economic Forum (世界經濟論壇)
- 國家政策研究基金會


- 綜合

(好) Gartner (Insights and advice from more than 1,000 technology experts)
- 先探雜誌
- 華爾街日報_商業 財經 金融 經濟 投資
The Wall Street Journal Online (Business and Financial News, Breaking News)
udn 聯合書報攤
英 - Economist.com


- 統計資料、趨勢分析

- 0.綜合

- FIND網際網路資訊情報中心
- IDC Taiwan (科技產業)
- ITIS產業技術資訊服務網
- 拓墣產業研究所
- 科資中心 - (非常好)科技產業資訊室
- 科資中心 - 科技政策研究網
- 科資中心 - 資料庫檢索
- 科資中心資訊 - 資料庫檢索
- 資策會 - 各國大廠發展現況
- 資策會 - 資訊資料服務中心入口
- 資策會 - 電子商務研究所(FIND,Focus Internet News and Data)
- 資策會首頁


- 科技年鑑與統計

- (好) 國科會預告各類統計資料發布時間表
- (好,科專網站) 技術尖兵
- (非常好) STPI 科技產業資訊室
- 統計 - (非常好) 政府統計總覽 (行政院主計處 )
- 各國國家政策網站連結
- 統計 - 國家及各國科技年鑑
- 國科會
- 國科會預告各類統計資料發布時間表
- 政府統計總覽 (行政院主計處 )
- 本國及各國科技年鑑
- 統計 - 科學技術統計要覽(全國科技動態調查)
- 科技政策研究網
- 資料庫 - 科資中心資訊,資料庫檢索
- 統計 - 統計資料預告發布時間表
- 資策會資訊資料服務中心入口
- 資策會電子商務研究所(FIND,Focus Internet News and Data)
- 首頁 - 行政院經濟建設委員會
- 首頁 - 行政院主計處
- 統計 - 本國及各國科技年鑑
- 國家 - 各國國家政策網站連結
- 國家 - 本國及各國科技年鑑
- 國家 - 科學技術統計要覽(全國科技動態調查)
- 首頁 - 國科會
- 國科會 - (好) 預告各類統計資料發布時間表
- 統計 - 政府統計總覽 (行政院主計處 )
- 統計 - 科學技術統計要覽(全國科技動態調查)


- 人力資源

- 全球最大的人力資源諮詢機構 (美世顧問,Mercer Human Resource Consulting human resources managem


- 企業

- Strategy Analytics Research Solutions for Evaluating and Understanding Technology Businesses
- 資策會 - 各國大廠發展現況


- 商業經濟

- (好) Gartner (Insights and advice from more than 1,000 technology experts)
- BERI (商業環境風險評估,Business Environment Risk Intelligence)
- NPD Market Research
Market Research company providing news and information on consumer trends, sales and marketing information for a diverse range of industries
- World Economic Forum (世界經濟論壇)


- 能源

ITIS綠色產業智網


- 通訊業


- 光電半導體

- 拓墣產業研究所
- 資策會 - 各國大廠發展現況


- 電腦整合

- (好) Forrester (IT & Marketing)
- (好) IDC Taiwan (科技產業)
- (好) 資策會資訊市場情報中心
- currentanalysis.com Analysis
- NPD (consumer trends, sales and marketing informatio)
- Optaros (consulting and systems integration)
趨 - Gartner Technology Business Research Insight
趨 - IDC Taiwan (科技產業)


- 電子商務


- 資訊業

- Frost & Sullivan(technical,econometric,application,market)


- 電子技術 (含CPU、各類晶片)

電 - 繁 - [部份付費] DigiTimes科技網
電 - 繁 - 電子與電腦
電 - 繁 - 電子及電腦資訊網
電 - 英 - (好) EE Times Asia (Electronic Engineering Times Asia - In-depth analysis of industry issu
電 - 繁 - 電子工程專輯(即時提供和分析最新產業資訊與科技趨勢)
電 - 簡 - 國際電子商情
電 - 新電子科技雜誌
晶 - 英 - RFID


- 電腦 - News, 3C


News - 常用

腦 - 繁 - ZDNet News
腦 - 繁 - 網路資訊雜誌
腦 - 繁 - CNet Taiwan 部落格
腦 - 繁 - 電子及電腦資訊網
腦 - 繁 - PCuSER 電腦人
腦 - 繁 - T客邦
腦 - 繁 - 自由軟體技術交流網
腦 - 繁 - 太平洋電腦網


News - 少用

腦 - 繁 - DigiTimes 應用IT(部份須付費)
腦 - 繁 - DigiTimes 技術IT(部份須付費)
腦 - 簡 - IT168 (電腦相關雜七雜八)
腦 - 英 - Engadget新聞網 (Mobile, Netbook)
腦 - 繁 - (須付費)數位時代雙週刊
腦 - 英 - BYTE.com
腦 - 英 - CNET News.com
腦 - 英 - CNet 電腦新聞
腦 - 英 - The Register
腦 - 英 - Wired News
腦 - 英 - CNET News.com


評測

繁 - 電子 - Tom's Hardware Guide


3C

腦 - 繁 - 超頻者天堂 3C
腦 - 繁 - CNET Life 3C 數位生活
腦 - 繁 - CNet 科技資訊網 3C


軟硬綜合不分

-arstechnica.com


- 資科 - IT, MIS, Security

綜合

IT - 英 - eWEEK 即時新聞 (偏IT)
IT - 簡 - CSDN
繁 - IT - (好) iThome Online
IT - 繁 - 各國IT資訊網站清單


網管

IT - 網管人 NetAdmin


Security

IT - 繁 - ASMAG.COM安全自動化新聞
IT - 英 - SecLists.Org (專門揭示安全消息,Security Mailing List Archive)
Security mailing list archive for the Nmap lists, Bugtraq, Full Disclosure, Security Basics, Pen-test, and dozens more. Search capabilities and RSS feeds with smart excerpts are available
IT - 繁 - 資安人科技網


IT Trend Resrearch (IT 趨勢分析研究)

趨 - Gartner Technology Business Research Insight
Gartner delivers research and insight to global technology leaders to make strategic informed decisions.
趨 - IDC Taiwan (科技產業)


官方及半官方單位

IT - 管 - 中小企業網路大學校
IT - 繁 - 中華民國資訊軟體品質協會
IT - 繁 - 資策會資訊資料服務中心


- 資科 - 演算法、系統、程式設計


Cross

腦 - 英 - NewsForge
資 - 英 - Slashdot- News for nerds, stuff that matters
資 - 簡 - CSDN


Linux Only

KernelNewbies - KernelNewbies Wiki
LWN
簡 - Linux 非常空間
簡 - LinuxFocus 雜誌
簡 - Linux大本營
簡 - Linux非常空間
繁 - (Linux)臥龍小三地下世界
繁 - Linux Center(翔威)
繁 - Linux 新聞網
繁 - 凌群電腦科技雜誌
英 - Free Software Magazine
英 - KDE Dot News
英 - Linus Weekly News (LWN)
英 - Linux Journal
英 - Linux Magazine
英 - Linux Today
英 - Linux-Watch
英 - NewsForge
英 - Slashdot (News for nerds, stuff that matters)
繁 - 自由軟體技術交流網


MS Only

繁 - 微軟 TechNet
英 - News of QT for Windows
英 - TechNet Magazine (HTML Help Downloads)
繁 - MS TechNet Flash 雙週電子報
繁 - MS TechNet Magazine
繁 - MS TechNet 首頁
繁 - MSDN 首頁


OS

OS - 簡 - Linux_核之旅電子雜誌
OS - 英 - DistroWatch.com
OS - 英 - Mac OS Journal
OS - 英 - OSNews
OS - 英 - How to Submit Articles to OSNews
OS - 英 - OS-distrowatch.com
OS - How to Submit Articles to OSNews
OS - 英 - OSDir.com


Software

英 - NewsForge
英 - x86 - Dr.Dobb Software


XML、W3C 新聞

繁 - W3C中文
繁 - XML台灣資訊網(協定)
繁 - 台灣ebXML推廣中心


學術期刊

英 - IEEE Computer Society (Digital Library)


政府

- 台灣資訊產業網
- 行政院研究發展考核委員會


開源專案(綜合不限Linux)

- SF 新專案釋放消息