May 2007 Archives

今天ms发布了windows live writer和msn8.5的测试版

于是安装上测试了下。感觉live writer确实不错。编写blog完全本地,插入图片等也很随便。对比在线编辑,好处也不言而喻。本来以为不支持缩略图,结果发现,生成缩略图,已经由服务器变成live writer来实现了。呵呵。意外阿。这样的话,以后用mt可以不再为了支持各种特性,编译各种模块了

只是对mt的支持,似乎是需要让mt小小的调整下。具体来说,就是设置mt的发布api。官方说明如下:

To provide enhanced security when using third party clients, Movable Type now provides for a separate API password (rather than forcing you to use your normal author login password). Here's how to set up this new password:

  • Log into Movable Type.
  • Click on your username in the top navigatioinal menu to go to your profile.
  • Scroll down to the bottom where you see API Password.
  • Input a password of your choice and save. For security reasons, it should be different from your normal author password.
  • Use the new password in your client software.

然后就可以了。在live writer里面按照提示,往下进行就行了。

一直因为mt的效率而烦恼。而转换成wp又对wp的编辑器不满意。呵呵,有了live writer之后,似乎一起都不是问题了:)

live writer

每个人都有自己不愿启齿的秘密和糗事,很好,有,这里你可以匿名发表,没有任何人知道你的身份,可以畅所欲言,当然也可以看别人发表来满足自己的偷窥欲,蛮有意思的,说出自己的秘密后感觉释怀,看了别人的秘密后觉得自己原来不变态。哈哈,还有看别人的糗事这么
:http://secret.moumentei.com/
92007516102421.jpg
:http://www.qiushibaike.com/
r2007516102440.jpg

解决svchost.exe cpu占用100%

| | Comments (0) | TrackBacks (0)
最近发现有些机器,当开启自动更新之后,如果开始下载更新,经常会出现一个 进程 占用。一直没有什么好的解决方法。今天偶然发现微软发布了一个针对这个问题的补丁:)还非常新,5月10日发布。
具体请看:
下载地址:
今天查找l下的,结果偶然发现了这个东西。。
一个非常bt的 在多操作系统下的bt客户端。。
方式运行,用,可以用服务器来下载bt。。要做的仅仅是点几下链接。。。邪恶啊
主要特点:
  • Upload Torrents via URL or File Upload
  • Start, Stop, and Delete Torrents with a click
  • Advanced Torrent start options (ports, speeds, etc.)
  • Multi-user interface
  • RSS Feeds, download Torrents files with a click
  • View Download Progress of all torrents at a glance
  • View drive space at a glance
  • View Torrent file meta information
  • Built-in User management and Security
  • Private Messaging
  • Themes (selectable per user)
  • Upload History
  • Detailed User Administration
  • Admin Searchable Logs
  • Advanced Torrent Search (many major sites included)
  • Cookie support at the user level for private trackers
  • Queue Manager
  • Maketorrent -- supports making torrents
  • Language Support
  • 注意,支持中文!!
    在debian下的安装异常简单,只需要:
    apt-get update
    apt-get install apache2 mysql-server mysql-client php4-mysql apache-common bittornado libapache2-mod-php4 libphp-adodb locales mysql-common php4-common pwgen
    apt-get install torrentflux
    就ok了。注意经过我测试,发现torrentflux,似乎只能用在Php4环境下,对php5环境,链接mysql会出问题。
    1.png
    2.png

    debian遗忘root密码的处理

    | | Comments (0) | TrackBacks (0)
    对于一些版本的OS(如redhat)来说,编辑,在后面加上“single”即可进入单用户模式。但是对于debian来说,这种方式是无效的,因为debian进入单用户模式也需要你输入root用户的密码。
     
    下面介绍一个在所有版本linux的grub上均可以使用的方法:
     
     
    1、在Grub的引导装载程序菜单上,选择你要进入的条目,键入 “e” 来进入编辑模式。
    2、在第二行(类似于kernel /vmlinuz-2.6.15 ro root=/dev/hda2 ),键入”e”进入编辑模式;
    3、在句末加上”init=/bin/bash”,回车;
    4、按“b”启动系统。
    这样我们即可获得一个bash的shell。
      
    进入shell后,根分区的挂载模式默认是只读,我们要将其改为可写,否则不能更改root密码:
      
    mount -no remount,rw /
    passwd root
    sync
    mount -no remount,ro /
    reboot
     
     
    这样即可成功更改t用户的