Warning: Undefined array key "cperpage" in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 255

Warning: Undefined variable $output in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 325

Warning: Undefined variable $fixed_tags in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 326

Warning: Undefined variable $isshowdots in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 327

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 330

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 333

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 336

Warning: Undefined variable $post in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Attempt to read property "ID" on null in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Undefined variable $post in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Attempt to read property "ID" on null in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Undefined variable $more_text_link in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345
Linux – 第 2 页 – 理想社会

标签: Linux

  • RHEL5下用vsftpd搭建FTP服务器

    RPM安装包名:vsftpd-2.0.5-10.el5.i386.rpm
    #rpm –ivh vsftpd-2.0.5-10.el5.i386.rpm 安装rpm程序包
    #service vsftpd start  =/etc/init.d/vsftpd start 启动vsftpd服务
    #service vsftpd stop  =/etc/init.d/vsftpd stop 停止vsftpd服务
    #service vsftpd restart  =/etc/init.d/vsftpd restart 重启vsftpd服务
    #service vsftpd status  =/etc/init.d/vsftpd status 检查vsftpd服务状态
    # ntsysv #chkconfig –level 35 vsftpd on 更改服务自动加载 (更多…)
  • Linux面试题

    1. 在Linux系统中,以 文件 方式访问设备 。
    2. Linux内核引导时,从文件 /etc/fstab 中读取要加载的文件系统。
    3. Linux文件系统中每个文件用 i节点 来标识。
    4. 全部磁盘块由四个部分组成,分别为引导块 、专用块 、 i节点表块和数据存储块。
    5. 链接分为: 硬链接和符号链接 。
    6. 超级块包含了i节点表和空闲块表 等重要的文件系统信息。
    7. 某文件的权限为:drw-r–r–,用数值形式表示该权限,则该八进制数为: 644 ,该文件属性是 目录 。
    8. 前台起动的进程使用 Ctrl+c 终止。
    9. 静态路由设定后,若网络拓扑结构发生变化,需由系统管理员修改路由的设置。
    10. 网络管理的重要任务是: 控制和监控 。 (更多…)

  • linuxas5和as4下nginx+php+myql+zend等(转)

    编译安装软件包
    源码编译安装所需包(Source)
    升级OpenSSL及OpenSSH       tar xvf openssl-0.9.8h.tar.gz
    cd openssl-0.9.8h
    ./config –prefix=/usr/local/openssl
    make
    make test
    make install
    tar zxvf openssh-5.0p1.tar.gz
    cd openssh-5.0p1
    ./configure  
    –prefix=/usr
    –with-pam
    –with-zlib
    –sysconfdir=/etc/ssh
    –with-ssl-dir=/usr/local/openssl
    –with-md5-passwords (更多…)

  • Apache配置详解

    Apache的配置

    Apache的配置由httpd.conf文件配置,因此下面的配置指令都是在httpd.conf文件中修改。

    主站点的配置(基本配置)

    (1) 基本配置:

    ServerRoot “/mnt/software/apache2” #你的apache软件安装的位置。其它指定的目录如果没有指定绝对路径,则目录是相对于该目录。

    PidFile logs/httpd.pid #第一个httpd进程(所有其他进程的父进程)的进程号文件位置。

    Listen 80 #服务器监听的端口号。

    ServerName www.clusting.com:80 #主站点名称(网站的主机名)。 (更多…)