免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1070 | 回复: 0
打印 上一主题 下一主题

FreeBSD安装配置常见问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-18 13:45 |只看该作者 |倒序浏览
1. 系统启动反复出现timeout-resettingacd0:MODE_SENSE_BIG command timeout-resetting
ata1:resetting devices...done
acd0:MODE_SENSE_BIG command timeout-resetting
ata1:resetting devices...done
acd0:MODE_SENSE_BIG command timeout-resetting
ata1:resetting devices...done
..........
Probing divice,please wait(this can take a few minutes
     
将光驱的master修改成slave来用
2. 发现FreeBSD的交换空间被耗尽
不追加分区, 可以通过增加交换文件的方式实现
Example 6-1. Creating a Swapfile on FreeBSD 4.X
1.   Be certain that your kernel configuration includes the vnode
driver. It is not in recent versions of GENERIC.
pseudo-device   vn 1   #Vnode driver (turns a file into a device)
2.   create a vn-device:
# cd /dev
# sh MAKEDEV vn0
3.   create a swapfile (/usr/swap0):
# dd if=/dev/zero of=/usr/swap0 bs=1024k count=64
4.   set proper permissions on (/usr/swap0):
# chmod 0600 /usr/swap0
5.   enable the swap file in /etc/rc.conf:
swapfile="/usr/swap0"   # Set to name of swapfile if aux swapfile desired.
6.   Reboot the machine or to enable the swap file immediately, type:
# vnconfig -e /dev/vn0b /usr/swap0 swap
Example 6-2. Creating a Swapfile on FreeBSD 5.X
1.   Be certain that your kernel configuration includes the memory
disk driver ( md(4)). It is default in GENERIC kernel.
device   md   # Memory "disks"
2.   create a swapfile (/usr/swap0):
# dd if=/dev/zero of=/usr/swap0 bs=1024k count=64
3.   set proper permissions on (/usr/swap0):
# chmod 0600 /usr/swap0
4.   enable the swap file in /etc/rc.conf:
swapfile="/usr/swap0"   # Set to name of swapfile if aux swapfile desired.
5.   Reboot the machine or to enable the swap file immediately, type:
# mdconfig -a -t vnode -f /usr/swap0 -u 0 && swapon /dev/md0
     
3. 如何将系统迁移到新的大硬盘
建议重装系统,然后将数据迁移到新硬盘, 如果真的要直接将系统迁移到新硬盘一定要使用dump和restore,不要使用tar,cpio等, 它们对根目录的操作可能会出现问题, 步骤如下:

  • 使用newfs新建一个分区.

  • mount上该分区.

  • cd到装载点.

  • 使用dump备份旧的分区, 通过管道输出到新分区
    例如, 假设要将根文件系统移动到/dev/ad1s1a, 使用/mnt作为临时装载点, 命令如下
    # newfs /dev/ad1s1a
    # mount /dev/ad1s1a /mnt
    # cd /mnt
    # dump 0af - / | restore xf -
         
    要在新硬盘上重新安排分区稍微有点麻烦, 例如要把/var文件系统放在新硬盘分区的 根文件系统下, 首先按照上面的步骤移动根文件系统, 然后在移动/var文件系统, 命令如下:
    # newfs /dev/ad1s1a
    # mount /dev/ad1s1a /mnt
    # cd /mnt
    # dump 0af - / | restore xf -
    # cd var
    # dump 0af - /var | restore xf -
         
    4. 如何使用主板内置声卡, 如何使多个程序同时播放声音
    使用内置声卡需要添加如下内核配置
           options PNPBIOS
         
    多声道配置使用sysctl进行设置, 如下:
    # sysctl hw.snd.pcm0.vchans=4
    # sysctl hw.snd.maxautovchans=4
         

    本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/632/showart_142142.html
  • 您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

    北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
    未成年举报专区
    中国互联网协会会员  联系我们:huangweiwei@itpub.net
    感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP