位置: 编程技术 - 正文
推荐整理分享通过Linux系统将Windows系统迁移到到新的磁盘上(将哪一linux文件系统引入),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:怎么用linux,linux系统怎么用,将哪一linux文件系统引入,用linux,将哪一linux文件系统引入,用linux,用linux,把文件从linux拿到windows,内容如对您有帮助,希望把文章链接给更多的朋友!
1. 概述这篇文章将告诉你如何再 linux 系统下,将 安装好的windows版本 复制到新的磁盘上(新的磁盘大于等于window镜像大小)
2. 使用到的工具livecd 工具,可以是CD 也可以是USB启动的 ,需要有的工具 dd, fdisk, and ntfsresize.此例子中,使用如下假设:/dev/sdc (新硬盘)/dev/sdb (老硬盘,安装好的window版本数据在 /dev/sdb1 分区中)= 格式化新盘(/dev/sdc) =使用root 用户,进行如下分区操作复制代码代码如下: [root@centos6 ~]# fdisk /dev/sdc WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to sectors (command 'u'). Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-, default 1): Using default value 1 Last cylinder, +cylinders or +size{K,M,G} (1-, default ): Using default value Command (m for help): p Disk /dev/sdc: .2 GB, bytes heads, sectors/track, cylinders Units = cylinders of * = bytes Sector size (logical/physical): bytes / bytes I/O size (minimum/optimal): bytes / bytes Disk identifier: 0xa1c3a1c3 Device Boot Start End Blocks Id System /dev/sdc1 1 + Linux在完成之前,我们必须设置启动标志和分区系统ID,分区系统ID必须是WINDOWS的,ID值为 7.复制代码代码如下: Command (m for help): A Partition number (1-4): 1 Command (m for help): t Selected partition 1 Hex code (type L to list codes): 7 Changed system type of partition 1 to 7 (HPFS/NTFS) Command (m for help): p Disk /dev/sdc: .2 GB, bytes heads, sectors/track, cylinders Units = cylinders of * = bytes Sector size (logical/physical): bytes / bytes I/O size (minimum/optimal): bytes / bytes Disk identifier: 0xa1c3a1c3 Device Boot Start End Blocks Id System /dev/sdc1 * 1 + 7 HPFS/NTFS Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.= 复制MBR =为了让新盘能够引导, 我们必须从Master Boot Record (MBR) 复制引导代码到新的磁盘上MBR 在磁盘的第一个扇区,由3部分组成:复制代码代码如下: Boot Code ( bytes) Partition Table ( bytes) Boot Code Signature = aa (2 bytes)我们只需要复制引导代码,起始的 bytes. 使用dd工具来复制:复制代码代码如下: # dd if=/dev/sdb of=/dev/sdc bs= count=1 1+0 records in 1+0 records out bytes transferred in 0. seconds ( bytes/sec)= 复制分区 =下一步任务就是将文件系统从一个盘复制到另一个盘上.在这里我们使用 ntfsclone 工具来复制 NTFS 文件系统复制代码代码如下: [root@centos6 ~]# ntfsclone --overwrite /dev/sdc1 /dev/sdb1</p><p> ntfsclone v.1. (libntfs-3g) NTFS volume version: 3.1 Cluster size : bytes Current volume size: bytes ( MB) Current device size: bytes ( MB) Scanning volume ... . percent completed Accounting clusters ... Space in use : MB (.5%) Cloning NTFS ... . percent completed Syncing ...如果在源盘上有坏的扇区,则需要添加 --rescue 选项复制代码代码如下: # ntfsclone --rescue --overwrite /dev/sdc1 /dev/sdb1注意: 源盘 是 最后一个参数(/dev/sdb1)
3. 改变分区大小在新盘比源盘大的情况下,我们需要改变分区大小来使用所有空间,这里我们使用 ntfsresize 命令复制代码代码如下: [root@centos6 ~]# ntfsresize /dev/sdc1</p><p> ntfsresize v.1. (libntfs-3g) Device name : /dev/sdc1 NTFS volume version: 3.1 Cluster size : bytes Current volume size: bytes ( MB) Current device size: bytes ( MB) New volume size : bytes ( MB) Checking filesystem consistency ... . percent completed Accounting clusters ... Space in use : MB (.5%) Collecting resizing constraints ... WARNING: Every sanity check passed and only the dangerous operations left. Make sure that important data has been backed up! Power outage or computer crash may result major data loss! Are you sure you want to proceed (y/[n])? y Schedule chkdsk for NTFS consistency check at Windows boot time ... Resetting $LogFile ... (this might take a while) Updating $BadClust file ... Updating $Bitmap file ... Updating Boot record ... Syncing device ... Successfully resized NTFS on device '/dev/sdc1'.
4. 使用新盘重新启动系统重新启动后,windows 会自动检查文件系统如下(因为分区大小有所变化),检查完成后自动重起就能进入windows系统了
5. 总结当然这种方式的拷贝是在同一台服务器上操作的(驱动无变化),如果将一个干净的windows裸系统通过这种方式安装到不同型号的服务器上时, 就会出现驱动问题,如何解决,请看下回分解!
在Linux系统中批量删除多个文件的方法总结 当我们在linux系统中要删除数万或者数十万甚至数百万的文件时使用rm-rf*就不太好用,因为要等待很长一段时间。在这种情况之下我们可以使用linux系统
设置自动清理Linux系统中n天前的文件的方法 服务器每周会产生一次全局备份文件,大小约G左右,需要定期清理。工作时间网站访问大,服务器I/O高的时候删除大数据会对服务器状态产生不好的
Linux下自动清理大量文件的方案探究 定期清理过期文件和垃圾文件,维持文件系统合理的空间使用率,是一个系统管理员的日常工作。对于中小规模文件系统而言,简单的系统命令或者脚
标签: 将哪一linux文件系统引入
本文链接地址:https://www.jiuchutong.com/biancheng/353398.html 转载请保留说明!友情链接: 武汉网站建设