首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 操作系统 > 其他操作系统 > Move BSD to an NewDisk
【标  题】:Move BSD to an NewDisk
【关键字】:Move,BSD,to,an,NewDisk
【来  源】:http://www.cublog.cn/u/6408/showart.php?id=177013

Move BSD to an NewDisk



How to move FreeBSD to a new hard disk
The original of this article you can find here.

This article will explain how you can move your FreeBSD installation from one hard disk drive to another. I have done this many times using the dump/restore utility. Before you begin, be sure you have read this document carefully. Let's assume that our FreeBSD installation is on a 4 gigabyte drive (ide master ad0) and we would like to move it to a new 20 gig drive. What you need to do is remove the old hard disk, install the new [20G] drive as an ide master and perform a minimal clean install of FreeBSD, setting up the partitions exactly how you want them. Be se sure to set the drive as bootable and boot from it one time as a test. Next, put your old [4G] drive back in the system as an ide master and the new [20G] drive in as an ide slave. Boot the system on your old installation in single user mode.

To boot in single user mode:
Press the [spacebar] at the 10 second countdown.
type:
boot -s
Press [enter] for the default shell.

At the (#) prompt type:
fsck -p
mount -u /
mount -a
swapon -a
adjkerntz -i    #????##

Next, make sure you have the device files made so you can mount the partitions on the slave drive.
Type:
cd /dev
./MAKEDEV ad1s1a
./MAKEDEV ad1s1e
./MAKEDEV ad1s1f

Now make mount points for the new drive's partitions:
Type:
mkdir /backup
mkdir /backup/root
mkdir /backup/usr
mkdir /backup/var


Lastly, I use a shell script to do the following:

1 - create new filesystems (newfs the drive)
2 - mount the partitions
3 - dump the data from my old drive, and restore it to my new one
4 - unmount the new drives partitions
5 - enable softupdates on the new drive (optional)


Here is the script I use:

#!/bin/sh
newfs /dev/ad1s1a
newfs /dev/ad1s1e
newfs /dev/ad1s1f

mount /dev/ad1s1a /backup/root
mount /dev/ad1s1e /backup/var
mount /dev/ad1s1f /backup/usr

( dump -0f - / ) | ( cd /backup/root ; restore -rf - )
( dump -0f - /var ) | ( cd /backup/var ; restore -rf - )
( dump -0f - /usr ) | ( cd /backup/usr ; restore -rf - )

umount /backup/root
umount /backup/var
umount /backup/usr

tunefs -n enable /dev/ad1s1a
tunefs -n enable /dev/ad1s1e
tunefs -n enable /dev/ad1s1f

#end

It will probably take several hours to perform the dump/restore, so be patient. Once the data has been dumped and restored to the new drive, all you have to do is remove your old drive and put it in a safe place, set the new drive to a master and reboot. Your system will now boot your old FreeBSD installation on your new hard disk.

Note: You can download the drivecopy shell script by clicking on the drivecopy.tar filename located on the right sidebar of this page. Issue the command tar xvf drivecopy.tar to untar the drivecopy.sh file. You may need to modify the drivecopy shell script if you are using custom partitions. If you had selected the standard FreeBSD partitions at install, this file will work without modification.

To learn more about dump, restore and other unix commands, please read the man pages:

man dump
man restore
man tar
man mount
man adjkerntz



__________________________________
绝对好用 Linux操作系统的8个经典技巧:【上一篇】
善知识:【下一篇】
【相关文章】
  • Data sharing with a GFS storage cluster摘要1
  • 学习FCL (2) 语言和国家地区 下 Language and Region (2nd Half)
  • Configure SQLExpress to accept remote connections
  • ftfind 对比 google desktop search
  • SPSiteManager 2.3可以下载了
  • Eclipse 环境中junit 结合ant bulit失败原因解释!
  • 删除硬盘下所有的"_desktop.ini"文件
  • Tomcat 问题: Cannot serialize session attribute XXX for ..的解决办法
  • 受控bean与实体bean的数据传递
  • AutoHotKey简介[原创]
  • 【随机文章】
  • 在16色模式下显示256色及全彩色
  • 字符集之间转换(UTF-8,UNICODE,Gb2312)
  • javascript读取iframe及Open用法
  • Kylix 3企业版安装手记
  • Linux操作系统下串口编程入门教程
  • 测试工作流程图
  • 广告播放和跟踪系统的制作
  • 光纤通道小常识、内容卷表VTOC、设备分区(存储共享)、存储域控制器 转
  • 跨站Script攻击(二)
  • 忘记root密码
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.