前面关于QQ用户无限制建群的办法已经不好用了
今天建群的时候发现群还是能建
但是不能更改群的一些设置
就觉得有些蹊跷
后来又发现建的群无法搜到
也就无法加入?
以前用这个方法建的群也是如此
估计是滕讯把这用这种方法建的群给封了
今天建群的时候发现群还是能建
但是不能更改群的一些设置
就觉得有些蹊跷
后来又发现建的群无法搜到
也就无法加入?
以前用这个方法建的群也是如此
估计是滕讯把这用这种方法建的群给封了
周五
一台FreeBSD(跑Squid)当了好几回
每次死的都是非常彻底
ilo看遗言原来是"All mbuf clusters exhausted"
mbuf满是FreeBSD系统一个比较常见的问题
4、5年以前就在出
克好像也没有什么好的解决办法
除了一味调高mbuf的值
其实我们的系统的mbuf值是调过的
而且已经非常大了
最后只有把这台FreeBSD的服务切到另一台跑其它服务的Linux机器上
这才OK
其实这台机器硬件性能还不差
我们也重新做过kernel
昨天帮他们搞那一台Fedora Core 3(FC3)的机器的时候
偶然发现其/etc/fstab文件里写着
LABEL=SWAP-sda2 swap swap defaults 0 0
这么一行
我非常好奇
swap分区也支持LABEL了?!
在我的印象中
swap区是不支持LABEL的
为此我还郁闷过呢
为此我对这个系统研究了半天
又查了半天的文档
也没有个结果(也许查的时候的关键词不对)
今早上终于找了台不太重要的机器
先把swap区swapoff了
再mkswap -L SWAP1 xxxxxxx
居然成功了!
看来mkswap还有个隐含参数"-L"
manual里可没有哟
为了进一步求证
我修改机器的/etc/fstab文件
将原来写设备号的地方用LABEL=SWAP1来代替
再swapon -a
然后swapon -s一看
果然能行!
我的测试系统是:
linux2.6.9
mkswap版本是:
util-linux-2.12a-16.EL4.6
不知道2.4的kernel的机器行不行
1,开启pipelining
什么是pipelining,这里有一段引用:
Normally, HTTP requests are issued sequentially, with the next request being issued only after the response to the current request has been completely received. Depending on network latencies and bandwidth limitations, this can result in a significant delay before the next request is seen by the server. HTTP/1.1 allows multiple HTTP requests to be written out to a socket together without waiting for the corresponding responses. The requestor then waits for the responses to arrive in the order in which they were requested. The act of pipelining the requests can result in a dramatic improvement in page loading times, especially over high latency connections. Pipelining can also dramatically reduce the number of TCP/IP packets. With a typical MSS (maximum segment size) in the range of 536 to 1460 bytes, it is possible to pack several HTTP requests into one TCP/IP packet. Reducing the number of packets required to load a page benefits the internet as a whole, as fewer packets naturally reduces the burden on IP routers and networks. HTTP/1.1 conforming servers are required to support pipelining. This does not mean that servers are required to pipeline responses, but that they are required to not fail if a client chooses to pipeline requests. This obviously has the potential to introduce a new category of evangelism bugs, since no other popular web browsers implement pipelining.
都说启用pipelining,能大幅提高访问页面速度
所以我们也启用
新打开一个firefox,在浏览器url栏里敲入:
about:config
回车,再在Filter栏敲入:pipe
这会儿页面里会显示
network.http.pipelining、
network.http.pipelining.maxrequests
和network.http.proxy.pipelining三行
点右键分别把第一、三行设成true
把第二项设成8,就完成了
2,用一个firefox打开所有的链接(用新tab)
这个网上讲得比较多
其实也是用about:config
再在Filter里输入:tabs
找到:
brower.tabs.showsinglewindowmodeprefs,右键点击
将其改为true
然后在菜单Tools–>Options
在Tabbed Browsing中选中
“Force links that open new windows to open it”就行了
公司台式机上装了个suse9.3
由于朋友的第二张盘有些问题
而且还没找到从网上更新软件库的办法
所以很多软件没装
也没怎么用
但那天做什么设置的时候,对啦,services
居然发现邮件系统那块儿
让我选是否启用病毒扫描!
看来suse还是能急用户之所急
想用户之所想
知道如今通过邮件传播病毒的如过江之鲤
而linux、freebsd下的free的邮件系统在防病毒方面都是弱势
所以直接集成了防病毒软件
实在是高明
不愧为在欧洲卖得最好的linux distribution
后来仔细看了看
suse9.3还直接集成了sun的java1.4.2
不像redhat,还得自己去当java
而且,suse的kernel缺省就支持xfs、reiserfs等文件系统
而在redhat的as3、as4下实现对xfs、reiserfs的支持
则相当的麻烦
而且,suse9.3还直接集成了对lvs的支持
集成软件包mirror、unrar
这些过去在redhat里可都是我常用的
但又是需要自己编译的