zoukankan      html  css  js  c++  java
  • centos 6挂载磁盘

    1. 首先查看机器上有多少块硬盘:

    $ fdisk -l

    Disk /dev/sdd: 1000.2 GB, 1000204886016 bytes
    255 heads, 63 sectors/track, 121601 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/sdd doesn't contain a valid partition table

    ……

    Disk /dev/sdh: 1000.2 GB, 1000204886016 bytes
    255 heads, 63 sectors/track, 121601 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: 0xd54c485e

    Device Boot Start End Blocks Id System
    /dev/sdh1 1 121601 976760001 83 Linux

    我的服务器上有很多块,有上述信息可知,目前sdd硬盘还为挂载

    1. 硬盘分区

    $ fdisk /dev/sdd

    n->p->1->回车->回车

    意思就是新建一个主分区,大小是整个sdd磁盘

    最后执行w,写入磁盘

    此时磁盘已经分区,但是还没有文件系统,磁盘依然不能用

    1. 格式化磁盘并写入文件系统

    $ mkfs.ext4 /dev/sdd1

    等待命令执行完成

    1. 挂载新硬盘到操作系统的某个节点上

    $ mkdir /mnt/sdd

    $ mount /dev/sdd1 /mnt/sdd

    1. 执行df命令查看磁盘信息,确认挂载新硬盘成功

    $ df

    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/sda3 928204272 4191296 876862896 1% /
    tmpfs 32981876 12 32981864 1% /dev/shm
    /dev/sda1 198337 31960 156137 17% /boot
    /dev/sdh1 961432072 204436 912389636 1% /mnt/sdh
    /dev/sdd1 961432072 204436 912389636 1% /mnt/sdd

    以上加粗字体就是新增磁盘。

    最后编辑/etc/fstab



  • 相关阅读:
    谷歌的 I/O 2019,究竟推出了什么新特性?
    Flutter交互实战-即刻App探索页下拉&拖拽效果
    5G到来,App的未来,是JavaScript,Flutter还是Native ?
    python爬虫-房天下-登录
    python爬虫-有道翻译-js加密破解
    虾米音乐爬虫
    Golang 读写文件
    Golang-使用md5对字符串进行加密
    Golang-使用mysql
    Golang 传递任意类型的切片
  • 原文地址:https://www.cnblogs.com/hit-zb/p/9229439.html
Copyright © 2011-2022 走看看