Ubuntu 7.10 安装时卡在'Configuring apt','Scanning the mirror'的处理方法:
1. 物理上断开网络
2. 或者,启用Terminal,查看所有进程,杀死Chose-mirror进程。
PS -A
sudo kill PID

Confluence – the enterprise wiki

[不指定 2008/02/28 21:12 | by ipaddr ]

Confluence is an enterprise wiki that makes it easy for your team to collaborate and share knowledge. 

Adding, sharing and finding content has never been easier.

These benefits come with all the additional features needed to make it a part of your business:

  • Enterprise security
  • Simple installation and management
  • Attractive, user-friendly WYSIWYG interface
  • Powerful tools for structuring and searching your wiki
  • Professional features such as PDF export and automated refactoring
  • An open API for extension and integration
  • Atlassian's Legendary Service
  • and much more...

Wireshark

[不指定 2008/02/28 19:58 | by ipaddr ]

About Wireshark

Wireshark is the world's foremost network protocol analyzer, and is the de facto (and often de jure) standard across many industries and educational institutions.

Wireshark development thrives thanks to the contributions of networking experts across the globe. It is the continuation of a project that started in 1998.

Features

Wireshark has a rich feature set which includes the following:

  • Deep inspection of hundreds of protocols, with more being added all the time
  • Live capture and offline analysis
  • Standard three-pane packet browser
  • Multi-platform: Runs on Windows, Linux, OS X, Solaris, FreeBSD, NetBSD, and many others
  • Captured network data can be browsed via a GUI, or via the TTY-mode TShark utility
  • The most powerful display filters in the industry
  • Rich VoIP analysis
  • Read/write many different capture file formats: tcpdump (libpcap), Catapult DCT2000, Cisco Secure IDS iplog, Microsoft Network Monitor, Network General Sniffer® (compressed and uncompressed), Sniffer® Pro, and NetXray®, Network Instruments Observer, Novell LANalyzer, RADCOM WAN/LAN Analyzer, Shomiti/Finisar Surveyor, Tektronix K12xx, Visual Networks Visual UpTime, WildPackets EtherPeek/TokenPeek/AiroPeek, and many others
  • Capture files compressed with gzip can be decompressed on the fly
  • Live data can be read from Ethernet, IEEE 802.11, PPP/HDLC, ATM, Bluetooth, USB, Token Ring, Frame Relay, FDDI, and others (depending on your platfrom)
  • Decryption support for many protocols, including IPsec, ISAKMP, Kerberos, SNMPv3, SSL/TLS, WEP, and WPA/WPA2
  • Coloring rules can be applied to the packet list for quick, intuitive analysis
  • Output can be exported to XML, PostScript®, CSV, or plain text

HttpWatch

[不指定 2008/02/28 19:56 | by ipaddr ]

HttpWatch is an HTTP viewer and debugger that integrates with Internet Explorer to provide seamless HTTP and HTTPS monitoring without leaving the browser window.

HttpWatch is used in a wide variety of companies and industries for tasks such as:

  • Testing a web application to ensure that it is correctly issuing cookies or setting headers that control page expiration
  • Finding out how other sites work and how they implement certain features
  • Checking the information that Internet Explorer is supplying when you visit a site
  • Verifying that a secure web site is not issuing sensitive data in cookies or headers
  • Tuning the performance of a web site by measuring download times, caching or the number of network round trips
  • Learning about how HTTP works (useful for programming and web design classes)
  • Allowing webmasters to fine tune the caching of images and other content
  • Performing regression testing on production servers to verify performance and correct behavior


1.首先,需要安装中文支持,打开“Control Panel”=》“Regional and Language Options”=>“Language”,选择“Install Files for East Asian Languages”。

2.安装完后,Windows应该支持中文显示了,但某些未指定应用程序还可能会乱码,在“Region Options”处,选择Formats和Locations为“China”, 在Advanced,选择默认的语言为“Chinese (PRC)”

3. 经过以上设置后,应该能够正常使用中文了,但Cmd.exe(命令行)下面,仍然是无法显示中文文件名,主要是因为字体的原因,修改注册表:
HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe
在此项下面,修改:
FaceName=新宋体
新增:
CodePage=936 (Ipaddr提醒你,这是10进制的936)

此后,Cmd.exe下面也要吧正常的显示中文文件名了。

使用DOS命令批量压缩文件

[不指定 2008/02/28 12:29 | by ipaddr ]

使用Winrar,批量压缩当前目录下,所有的*.txt文件为 *.txt.rar

CD IPADDR/
FOR /R %f in (*.txt) DO RAR a -ow -tk -ep1 -y "%f.rar" "%f"


使用前,需要将WinRAR的安装目录,加到PATH当中。

使用以下命令,批量删除当前目录下的所有*.txt文件:

CD IPADDR/
FOR /R %f in (*.txt) DO DEL "%f"


更多的DOS命令,请参考:http://www.computerhope.com/msdos.htm

用DOS写脚本,实在是太费力了,期待PowerShell。
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]