• 修改 ports 安装的服务的启动顺序

    昨天晚上在 4.6.2 上面安装 pure-ftpd,然后自己写了一个启动脚本,放在 /usr/local/etc/rc.d/ 目录中。 因为我的马虎大意,脚本中写错了一处,但是自己没有察觉,于是就重新启动机器。这台机器没有连接键盘和显示器,上面的操作全都在 ssh 远端操作。 后来重新启动了以...

    2009-05-13 04:51:36

  • 使用什么命令能看到局域网中其他机器的ip地址?

    cd /usr/ports/net/fping make make install clean rehash fping -g 192.168.0.0/24 本文来自ChinaUnix博客,如果查看原文请点: http://blog.chinaunix.net/u/18380/showart_184436.html...

    2009-05-13 04:51:32

  • 设置单个域邮箱的默认容量

    创建.qmailadmin-limits文件 ee /home/vpopmail/domains/69vv.net/.qmailadmin-limits 内容如下: maxpopaccounts: 1500 \\最大用户数量 default_quota: 52428800\\默认邮箱大小 本文来自ChinaUnix博客,如果查看原文请点: http://blog.chinaunix.net/u/18380/showart_...

    2009-05-13 04:51:22

  • 设置ports的下载路径

    MASTER_SITE_OVERRIDE= \ ftp://ftp.tw.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR } \ ftp://ftp4.tw.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR } \ ftp://ftp10.tw.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR } \ ftp://ftp1...

    2009-05-13 04:51:11

  • 如何修改mysql的root密码

    mysql -u root -p mysqluse mysql; mysqlupdate user set Password=password(newpassword) where User='root'; mysqlflush privileges; mysqlquit 本文来自ChinaUnix博客,如果查看原文请点: http://blog.chinaunix.net/u/18380/showart_184433.html...

    2009-05-13 04:50:56

  • 如何去除开机前的15秒钟的scsi硬盘检测

    1、最简单的方法 echo kern.cam.scsi_delay=\2000\ /boot/loader.conf 2、稍微麻烦一点的方法 内核中 options SCSI_DELAY=500 #(毫秒) 重新编译 3、最麻烦的方法 装6.0(6.0中默认好像是5000毫秒) echo kern.cam.scsi_delay=\0\ /boot/loader.conf 本文来自ChinaUnix博...

    2009-05-13 04:50:46

  • 如何防止别人通过boot -s 单用户模式进入我的机器

    如何防止别人通过boot -s 单用户模式进入我的机器 生成文件/boot.config,内容: -h echo -h /boot.config 本文来自ChinaUnix博客,如果查看原文请点: http://blog.chinaunix.net/u/18380/showart_184431.html...

    2009-05-13 04:50:45

  • 批量添加邮箱用户

    二. 第二种方法 1、建立batchuseradd.sh文件 #cd /home #touch batchuseradd.sh #chmod 755 batchuseradd.sh #ee batchuseradd.sh//内容如下: #!/bin/sh #batchadduser.sh: batch add mail user. #install step. #chmod u+x batchadduser #./batchadduser.sh domain d...

    2009-05-13 04:50:20

  • 多线程下载ports里的包

    cd /usr/ports/ftp/axel make make install make clean 编辑make.conf文件 ee /etc/make.conf 增加以下内容 FETCH_CMD=axel DISABLE_SIZE=yes 修改配置文件 ee /usr/local/etc/axelrc 设置并发线程为10 num_connections = 10 默认的设置是4 本文来自ChinaUnix博客,如果...

    2009-05-13 04:50:20

  • 从ports中查找软件

    从ports中查找软件 问题:ports下有没有xxx这个软件?在哪个目录下? 回答:有两种办法来查找,一是通过软件名: make fetchindex cd /usr/ports make search name=xxx | grep ^Path 另一种是通过关键字,也就是在软件名和说明中只要包括这个单词的都会查找出来: cd /u...

    2009-05-13 04:50:17

2