菜鸟笔记
简单的开发笔记
首页
登录 / 注册
笨猫首页
笨猫首页
斑马导航
奶牛网盘
白象软仓
青蛙壁纸
毒蛇电影
怪鸟头像
大熊逗图
热狗应用
蜗牛摘录
狐狸颜选
关于我们
收藏网站
菜鸟笔记
简单的开发笔记
首页
登录 / 注册
windows系统转linux系统后磁盘的处理
很多人可能遇到过这样的情况:原服务器是windows操作系统的。在没有进行格式化的情况下,重新安装了linux系统。 比如安装linux centos7后,原有磁盘该怎么格式化?怎么挂载?话不多说,直接上干货 #####1. 查看磁盘情况:# fdisk -l ```shell [root@iZe5de30acdtddZ ~]# fdisk -l Disk /dev/vda: 40 GiB, 42949672960 bytes, 83886080 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x1863aa79 Device Boot Start End Sectors Size Id Type /dev/vda1 * 2048 83886046 83883999 40G 83 Linux Disk /dev/vdb: 200 GiB, 214748364800 bytes, 419430400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x5da0c18a Device Boot Start End Sectors Size Id Type /dev/vdb1 2048 419428351 419426304 200G 7 HPFS/NTFS/exFAT ``` #####2. 分析目前分区情况(务必看完) ``` Device Boot Start End Sectors Size Id Type /dev/vdb1 2048 419428351 419426304 200G 7 HPFS/NTFS/exFAT ``` HPFS/NTFS/exFAT:属于windows支持的文件系统。 HPFS 仅在 Windows NT 3.1、3.5 和 3.51 版本下受支持。 Windows NT 4.0 不支持并且无法访问 HPFS 分区。 此外,2000 年 9 月 98 Windows 95 OSR2 和 Windows 95 中提供了对 FAT32 文件系统Windows支持。 NTFSWindows系统的分区,一种能够提供各种FAT版本所不具备的性能、安全性、可靠性与先进特性的高级文件系统,NTFS格式XP推崇使用 exFAT 也是主要在window系统下支持的文件系统,它是为了解决FAT32等不支持4G及其更大的文件而推出,相对FAT文件系统,同一目录下最大文件数可达2,796,202个,采用了簇位图负责容量分配,读写性能得到最大限度地改进。但是,exFAT兼容性相对较差,特别是XP下。 这里就不详细赘诉文件系统相关知识点了,有兴趣的可以自己了解了解。 接下来,我们要删除这些分区,重新分区并且格式化。 这三种文件系统再linux下其实是可以只是NTFS和exFAT的,但是比较麻烦。 在linux中读写NTFS格式需要内核支持,设置CONFIG_NTFS_FS选项后可以支持读的的权限,但是不支持写入权限,还需要设置其他参数,但是就算支持读写权限,在linux下格式化NTFS的文件系统,会使得磁盘非常慢。 而linux中读写exFAT格式,则需要编译并安装exfat-nofuse-master项目而exfat-nofuse-master在centos7以下版本是编译不了,必须是在内核3.8以上的系统版本才能编译安装,所以还是有局限性,所以直接让linux支持NTFS和exFAT非常麻烦 #####3. 删除不需要的分区:d 删除指定分区 ``` [root@iZe5de30acdtddZ ~]# fdisk /dev/vdb Welcome to fdisk (util-linux 2.32.1). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Command (m for help): m Help: DOS (MBR) a toggle a bootable flag b edit nested BSD disklabel c toggle the dos compatibility flag Generic d delete a partition F list free unpartitioned space l list known partition types n add a new partition p print the partition table t change a partition type v verify the partition table i print information about a partition Misc m print this menu u change display/entry units x extra functionality (experts only) Script I load disk layout from sfdisk script file O dump disk layout to sfdisk script file Save & Exit w write table to disk and exit q quit without saving changes Create a new label g create a new empty GPT partition table G create a new empty SGI (IRIX) partition table o create a new empty DOS partition table s create a new empty Sun partition table Command (m for help): p Disk /dev/vdb: 200 GiB, 214748364800 bytes, 419430400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x5da0c18a Device Boot Start End Sectors Size Id Type /dev/vdb1 2048 419428351 419426304 200G 7 HPFS/NTFS/exFAT Command (m for help): d 1 Selected partition 1 Partition 1 has been deleted. Command (m for help): p Disk /dev/vdb: 200 GiB, 214748364800 bytes, 419430400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x5da0c18a ``` #####4. 重新分区:n增加分区 ``` Command (m for help): n Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): p Partition number (1-4, default 1): 1 First sector (2048-419430399, default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-419430399, default 419430399): Created a new partition 1 of type 'Linux' and of size 200 GiB. Partition #1 contains a ext4 signature. Do you want to remove the signature? [Y]es/[N]o: y The signature will be removed by a write command. Command (m for help): p Disk /dev/vdb: 200 GiB, 214748364800 bytes, 419430400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x5da0c18a Device Boot Start End Sectors Size Id Type /dev/vdb1 2048 419430399 419428352 200G 83 Linux Filesystem/RAID signature on partition 1 will be wiped. Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks. ``` #####5. 查看分区情况 ``` [root@iZe5de30acdtddZ ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT vda 253:0 0 40G 0 disk `-vda1 253:1 0 40G 0 part / vdb 253:16 0 200G 0 disk `-vdb1 253:17 0 200G 0 part ``` #####6.格式化 ``` [root@iZe5de30acdtddZ ~]# mkfs.xfs -i size=512 /dev/vdb1 meta-data=/dev/vdb1 isize=512 agcount=4, agsize=13107136 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=1, sparse=1, rmapbt=0 = reflink=1 data = bsize=4096 blocks=52428544, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0, ftype=1 log =internal log bsize=4096 blocks=25599, version=2 = sectsz=512 sunit=0 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 ``` #####7.挂载,开机自动挂载 ``` [root@iZe5de30acdtddZ /]# mount /dev/vdb1 /wwwroot/ [root@iZe5de30acdtddZ /]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm tmpfs 7.8G 468K 7.8G 1% /run tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup /dev/vda1 40G 2.6G 38G 7% / tmpfs 1.6G 0 1.6G 0% /run/user/0 /dev/vdb1 200G 1.5G 199G 1% /wwwroot [root@iZe5de30acdtddZ /]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm tmpfs 7.8G 468K 7.8G 1% /run tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup /dev/vda1 40G 2.6G 38G 7% / tmpfs 1.6G 0 1.6G 0% /run/user/0 /dev/vdb1 200G 1.5G 199G 1% /wwwroot ``` 到此挂载磁盘就完成了,还是比较简单的。在挂载磁盘的时候,你得根据自己需求选取挂载点
微信搜搜
笨猫小站
网页web端搭建m3u8 播放器
微信支付V3版本小程序支付 php签名,验签,数据解密代码分享
小程序tabbar分割线|黑线自定义
Atom 敲击效果插件 activate-power-mode
(1912)
(353)
(99)
打赏
公众号
小程序
QQ群
顶部
笨猫小站
小站首页
笨猫图库
懒虫工具
奶牛网盘
斑马导航
青蛙壁纸
毒蛇电影
白象软件
热狗应用
怪鸟头像
狐狸颜选
菜鸟笔记
蜗牛摘录
谢谢老板打赏
祝老板每天都有好运气
支付宝
微信
关闭弹窗
小站会员
永久会员最划算哟
3天体验卡
¥9.00
¥29.00
每天仅需3.00元
每天下载
5
次
1年畅享卡
¥39.00
¥99.00
每天仅需0.11元
每天下载
20
次
永久至尊卡
¥99.00
¥369.00
每天仅需0.00元
每天下载
1000
次
支付宝支付
微信支付
1. 会员充值前请仔细核对信息
2. 会员属于虚拟产品,充值成功后不予退款
微信搜一搜
笨猫小站
打赏赞助
猫豆充值
充值越多价格约优惠哟
20 猫豆
¥5.00元
¥5.00元
50 猫豆
¥9.00元
¥9.00元
100 猫豆
¥15.00元
¥15.00元
200 猫豆
¥20.00元
¥20.00元
500 猫豆
¥29.00元
¥29.00元
1000 猫豆
¥49.00元
¥49.00元
2000 猫豆
¥89.00元
¥89.00元
5000 猫豆
¥179.00元
¥179.00元
10000 猫豆
¥299.00元
¥299.00元
支付宝支付
微信支付
微信扫码支付
请使用微信扫一扫完成付款
¥15.00
22:21:12
我已支付
笨猫小站
微信扫码关注不领福利
请使用微信扫一扫关注我
已关注
笨猫工具
笨猫小站工具库
请使用微信扫一扫立马获取
已关注
笨猫小站
笨猫小站资源群
请使用QQ扫一扫加如QQ群
已加入
绑定账号
绑定账号手机端登录更方便
确认绑定
绑定微信
绑定微信登录更方便
微信二维码已过期
刷新
请使用微信扫码关注即可绑定
(移动端截图保存扫码关注)
订单详情
订单信息已生成
请稍等...
登录
·
注册
登录即代表您已同意
《服务协议》
和
《隐私协议》
确认提交
微信快捷登录/注册
注册即代表您已同意
《服务协议》
和
《隐私协议》
确认提交
微信快捷登录/注册
微信二维码已过期
刷新
请使用微信扫描二维码关注登录
手机账号注册