Windows 7 添加WebDAV網路磁碟

如果WebDAV不是https的,win7預設是加不上的,所以需要修改註冊表:

修改註冊表

進入cmd模式 -> 在搜尋程式及檔案打入 “regedit”

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters

把BasicAuthLevel 值改成2,即同时支持http和https,預設只支持https,然後重啟服務:

net stop webclient

net start webclient

最後再次通過”電腦”->”連接網路磁碟機”,就可以成功了

XenServer yum

首先清除一点,XenServer使用的是CentOS系统。在默认情况下,XenServer不允许用户使用yum命令进行安装软件,这让我们在服务器上安装、编译一些程序的时候很麻烦!有没什么方法能安装?

By default CentOS base repositories won’t be configured on XenServer. To compile and install nagios/bacula or any other app on server you might end up searching for compiler tools like gcc etc.

Here is a simple way to enable base repo and install gcc on your XenServer.

view plain copy
yum –enablerepo=base install gcc
其实也很简单,多加了一个参数“–enablerepo=base”。

这样的话,就可以在XenServer安装任何自己想要的软件的,当然首先是欲要安装的软件包在CentOS的软件库中要存在,呵呵…

from:http://www.fuwuqiweihu.com/xen-server-install-gcc/