今天搭建完SVN服务后,修改提交的日志报如下错误:Error:svn: E165006: Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook后来查阅资料,最中解决:cp pre-revprop-chan...
今天在VirtualBox虚拟机中安装Centos6.5时,网卡选择的桥接网卡。运行ifconfig命令后,只有本地回还。解决办法:修改/etc/sysconfig/network-scripts/ifcfg-eth0文件将ONBOOT=no改为ONBOOT=yes然后重启网络服务。
到NodeJS官网下载安装稳定版。选择一款IDE,我选用的是Webstormapp.js:var http = require('http'); http.createServer(function(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write('<h1>Node.js</h...