博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux挂载硬盘休眠,linux 挂载硬盘简便方法
阅读量:6513 次
发布时间:2019-06-24

本文共 1920 字,大约阅读时间需要 6 分钟。

————————————————————————–

首先查看硬盘:fdisk -l

[root@localhost ~]# fdisk -l

Disk /dev/vda: 42.9 GB, 42949672960 bytes

16 heads, 63 sectors/track, 83220 cylinders

Units = cylinders of 1008 * 512 = 516096 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x000943f2

Device Boot      Start         End      Blocks   Id  System

/dev/vda1   *           3        1018      512000   83  Linux

Partition 1 does not end on cylinder boundary.

/dev/vda2            1018       83221    41430016   8e  Linux LVM

Partition 2 does not end on cylinder boundary.

Disk /dev/vdb: 64.4 GB, 64424509440 bytes

255 heads, 63 sectors/track, 7832 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0xe4f72628

Device Boot      Start         End      Blocks   Id  System

/dev/vdb1               1        7833    62912512    7  HPFS/NTFS

Disk /dev/mapper/VolGroup-lv_root: 38.2 GB, 38159777792 bytes

255 heads, 63 sectors/track, 4639 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk /dev/mapper/VolGroup-lv_swap: 4261 MB, 4261412864 bytes

255 heads, 63 sectors/track, 518 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

————————————————————————–

第一步:格式化要挂载的硬盘:如下命令!

614fa74e645fba886dec035eef3b45f1.png

2. 根据服务器类型执行下面命令:

Centos/Fedora:

wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh

或者

yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh

Ubuntu:

wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && sudo bash auto_disk.sh

Debian:

wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh

转载地址:http://paifo.baihongyu.com/

你可能感兴趣的文章
ASP XML处理&接口调用
查看>>
js的简单介绍和相关的必备常识
查看>>
bzoj1070: [SCOI2007]修车
查看>>
focus + select
查看>>
读书笔记——第八,九,十章
查看>>
SQL Server遇到的问题之存储过程中的游标
查看>>
字符串的相关操作
查看>>
oracle的group by问题
查看>>
为什么一般请求可以下载文件,Ajax 请求就不能下载
查看>>
nodejs安装与配置+初学实例详解
查看>>
在Mac上用自己编译出的DNX运行.NET程序
查看>>
简单的自我介绍
查看>>
XPath学习
查看>>
SQL的索引语句
查看>>
Android AndroidRuntime类
查看>>
动态引用样式表
查看>>
面试题:求最长非重复子序列
查看>>
实验四主存空间的分配和回收
查看>>
mysql中导入txt文件
查看>>
spring注入时bean的set方法为什么不能是static类型的?
查看>>