在LINUX中用cal命令解了一段人类文明历史 1752年9月

以前听人说在Linux上能够查到一个很奇怪的月份,只是当时忘了那个特别的月份。今天在网上搜了一下,发现通过这个命令(月份)了解了一段人类文明历史。

cal 9 1752

九月 1752

一 二 三 四 五 六 日

1 2 14 15 16 17

18 19 20 21 22 23 24

25 26 27 28 29 30
继续阅读在LINUX中用cal命令解了一段人类文明历史 1752年9月

“Chrome 101 (net::ERR_CONNECTION_RESET):未知错误”的解决办法

近来安装了chrome,当使用扩展程序,安装google的官方扩展程序时,总是出现错误提示:

错误 101 (net::ERR_CONNECTION_RESET):未知错误

在网上搜集了一下解决办法:

修改hosts文件,在C:WindowsSystem32DriversEtchosts加这么几行:

74.125.39.99 clients2.google.com
74.125.39.99 chrome.google.com
74.125.39.99 tools.google.com
2001:4860:8004::89 www.google.com
2001:4860:8004::89 images.google.com
2001:4860:8004::89 video.google.com
2001:4860:8004::89 news.google.com
2001:4860:8004::89 www.google.com.hk
2001:4860:8004::89 images.google.com.hk
2001:4860:8004::89 video.google.com.hk
2001:4860:8004::89 news.google.com.hk

问题解决.如果你的系统是Vista或Win7,有6to4隧道服务(默认打开),可以直接使用我说的方法,不需要有IPV6接入。

提示:编辑时,最好使用editplus这样的专业的文本文件来编辑,保存时不要加扩展名

Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Ubuntu 9.10

This document describes how to install a Proftpd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota with this setup.

For the administration of the MySQL database you can use web based tools like phpMyAdmin which will also be installed in this howto. phpMyAdmin is a comfortable graphical interface which means you do not have to mess around with the command line.

This tutorial is based on Ubuntu 9.10. You should already have set up a basic Ubuntu 9.10 server system.

This howto is meant as a practical guide; it does not cover the theoretical backgrounds. They are treated in a lot of other documents in the web.

This document comes without warranty of any kind! I want to say that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!

继续阅读Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Ubuntu 9.10

酷狗音乐硬盘 – 免费稳定的MP3外链服务

一直在网上混的朋友估计都曾经想过寻找一款稳定的可供音乐MP3外链的免费空间或网盘吧,国外一些网盘如 Box 等虽然提供了这种功能,但速度和“樯”的存在导致我们经常不能正常使用。

酷狗在近日发布了全新的“酷狗音乐硬盘”,无需注册即可直接上传MP3格式的音频文件,不限制容量,并且可以批量上传。如果你希望在你的博客或网站中外链一些音乐音频内容,那么酷狗音乐硬盘就值得你试试了……

“酷狗音乐硬盘”的使用相当简单,无需注册,直接上传音乐文件即可(貌似仅支持mp3格式),我使用电信天翼3G上网测试速度还是相当不错的,如果酷狗音乐硬盘上已经存在你要上传的音乐,则它将不需重复上传。除了单首音乐的外链之外,你还可以批量上传多首音乐并制作成列表,满足你不同的需求。

上传音乐后获取代码即可以将它们发布在自己的博客或网站与别人分享了,搜狗音乐硬盘可以让你设置播放器的颜色、宽度尺寸和是否自动播放等等,单曲就是如图的简单播放器,如果是多首歌,则它会生成包含列表的播放器,请见下面的演示。
继续阅读酷狗音乐硬盘 – 免费稳定的MP3外链服务

Ubuntu Pure-FTPd服务安装配置+虚拟用户

Pure-FTPd FTP server:

Pure-FTPd is a fast, production-quality, standards-conformant FTP server based upon Troll-FTPd. Features include chrooted home directories, virtual domains, built-in ‘ls’, anti-warez system, configurable ports for passive downloads, FXP protocol, bandwidth throttling, ratios, fortune files, Apache-like log files, fast standalone mode, atomic uploads, text / HTML / XML real-time status report, virtual users, virtual quotas, privilege separation, SSL/TLS and more.

一、安装Pure-FTPd

$ sudo apt-get install pure-ftpd
$ sudo apt-get install pure-ftpd-mysql

继续阅读Ubuntu Pure-FTPd服务安装配置+虚拟用户