摘要: 安装好时路径是在 /var/www/html如果我想改成 /var/www的话,按如下步骤修改即可sudo gedit /etc/apache2/sites-available/000-default.conf打开文件后找到 DocumentRoot /var/www/html 这一行,改成 /v... 阅读全文
posted @ 2014-10-20 19:31 Netop 阅读(635) 评论(0) 推荐(0)
摘要: 出现如下提示:AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive global... 阅读全文
posted @ 2014-10-20 19:23 Netop 阅读(405) 评论(0) 推荐(0)
摘要: #include #include int main(){ time_t raw; struct tm* ti; time(&raw); ti=localtime(&raw); printf("%d-%d-%d %d:%d:%d\n",ti->tm_year+1900,ti->tm_mon+1,... 阅读全文
posted @ 2014-10-20 09:14 Netop 阅读(162) 评论(0) 推荐(0)