Monthly Archives: May 2007

解决svchost.exe cpu占用100%

最近发现有些机器,当开启自动更新之后,如果开始下载更新,经常会出现一个 进程 占用。一直没有什么好的解决方法。今天偶然发现微软发布了一个针对这个问题的补丁:)还非常新,5月10日发布。
具体请看:
下载地址:

bt的web版bt客户端torrentflux

今天查找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密码的处理

    对于一些版本的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用户的