• ubuntu 8.04 bochs 调试linux 0.11内核

    日期:

    要下载的软件包: bochs-2.3.5 linux-0.11-081030.tar.gz linux-0.11-devel-060625.zip(hdc-0.11-new.img 文件系统) (hdc-0.11-new.img 只用这一个文件也可以时入linux 0.11系统,只需在配置bochs时稍做修改就可以,但是要调试源码的话,还是自己编译来得...

  • linux下搭建SVN服务器完全手册

    日期:

    系统环境 RHEL5.4最小化安装(关iptables,关selinux) + ssh + yum 一,安装必须的软件包. yum install subversion (SVN服务器) mysql-server (用于codestriker) httpd mod_dav_svn mod_perl (用于支持WEB方式管理SVN服务器) sendmail (用于配置用户提交代码后...

  • Docker 终于有 Windows 和 Mac 版了

    日期:

    今天是Docker容器化系统的第三个生日,为了庆祝该公司推出了其软件的Mac和Windows测试版程序。 它提供了一个集成的、易于部署的环境,用于构建、组装和运输在Mac或Windows系统上的应用程序,同时在Docker工具箱上也具有诸多改进。 Docker的Mac和Windows版本...

  • centos 命令行安装 yum apache 静态网站

    日期:

    命令很简单: [root@sample ~]# yum -y install httpd 在线安装httpd 然后就是配置一下文件 [root@sample ~]# getid /etc/httpd/conf/httpd.conf 编辑Apache的配置文件 网站文件放在 /var/www/html/下 Directory /var/www/html hy hy是网站的文件夹名,记得把...

  • Linux下命令行安装配置android sdk

    日期:

    首先, 你得有个VPN 参考以下三篇完成Android SDK的安装 https://www.digitalocean.com/community/tutorials/how-to-build-android-apps-with-jenkins http://stackoverflow.com/questions/4681697/is-there-a-way-to-automate-the-android-sdk-installation...

  • Linux firewall iptables configuration(防火墙配置)

    日期:

    之前有讲过公司新买的服务器使用的是CentOS 5.5,部署好Tomcat之后却发现输入114.80..:8080(即ip:8080)却无法显示Tomcat默认的首页。因为以前部署在Win Server的VPS,Linux开发时也只用到localhost,所以就有点头大。 Google大神说这是防火墙问题,关闭防火墙...

  • Docker v1.11.0-rc1 发布

    日期:

    Docker v1.11.0-rc1 发布了。此次发布的更新日志有: Builder Fix a bug where Docker would not used the correct uid/gid when processing theWORKDIRcommand ( #21033 ) Fix a bug where copy operations with userns would not use the proper uid/gid (...

  • Nginx配置https服务器,http重定向到https

    日期:

    Nginx配置https服务器,http重定向到https server { listen 443; server_name www.it.net.cn; index index.html index.htm index.php default.html default.htm default.php; root /home/it.net.cn; ssl on; ssl_certificate /usr/local/nginx/conf/vhost/zha...

  • Nginx1.90 nginx_stream 做TCP代理和协议负载均衡

    日期:

    Nginx1.90做TCP代理和协议负载均衡的功能 nginx从1.9.0开始增加了stream模块(ngx_stream_core_module),默认configure不包含该模块,需要在configure的时候加上--with-stream ./configure --prefix=/usr/local/nginx --user=www --group=www \ --add-module...

  • 在Linux上启用SSH登录email通知

    日期:

    在Linux上启用SSH登录email通知 在CentOS, Ubuntu/Debian 启用SSH登录邮件通知 Linux服务器或LinuxVPS通常需要远程登录访问,尤其是当服务器或VPS还允许root 直接登录时,应该为SSH 登录成功配置一个自动的email提醒。 把下面的YOUR_EMAIL_ADDRES更改为你要接...