linuxディスクマウント

6185 ワード

1、ディスクのフォーマット
1.1、現在のファイルディレクトリを表示する
df-hコマンドを使用して、現在マウントされているディスクとディスクの情報を表示します.
root:~>df -h
                         %    
/dev/sda3       259G  229G   30G   89% /
devtmpfs         32G     0   32G    0% /dev
tmpfs            32G   16M   32G    1% /dev/shm
tmpfs            32G  3.2G   29G   11% /run
tmpfs            32G     0   32G    0% /sys/fs/cgroup
/dev/sda1       497M  191M  306M   39% /boot
tmpfs           6.3G     0  6.3G    0% /run/user/0
cm_processes     32G  2.7G   29G    9% /run/cloudera-scm-agent/process
tmpfs           6.3G   12K  6.3G    1% /run/user/42

1.2、ディスクパーティション
  • インストール済みでフォーマットされていないディスクを検索する
  • コマンドfdisk-lを使用して、すべてのディスクをリストします.コマンドの使用例と結果は次のとおりです.
    root:~>fdisk -l
    
       /dev/sda:299.4 GB, 299439751168   ,584843264    
    Units =    of 1 * 512 = 512 bytes
        (  /  ):512    / 512   
    I/O   (  /  ):512    / 512   
          :dos
         :0x000de8f6
    
          Boot      Start         End      Blocks   Id  System
    /dev/sda1   *        2048     1026047      512000   83  Linux
    /dev/sda2         1026048    42969087    20971520   82  Linux swap / Solaris
    /dev/sda3        42969088   584843263   270937088   83  Linux
    
       /dev/sdb:3000.0 GB, 3000034656256   ,5859442688    
    Units =    of 1 * 512 = 512 bytes
        (  /  ):512    / 512   
    I/O   (  /  ):512    / 512   
          :gpt
    Disk identifier: 69D07AFC-584D-4926-81B8-8DEF8087445F
    

    /dev.sdbはまだフォーマットおよびマウントされていないことがわかります.
  • フォーマットディスク
  • CentOS 7.0以降もfdiskは大ディスクのフォーマットをサポートしている.この記事は再CentOS 7.4で行います.fdisk/dev/sdbを使用するヘルププロンプトに従ってパーティション化し、ここでは/dev/sdbを1つの領域に分割する.
    [root@localhost ~]# fdisk /dev/sdb
    Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
    Building a new DOS disklabel with disk identifier 0x0adfd119.
    Changes will remain in memory only, until you decide to write them.
    After that, of course, the previous content won't be recoverable.
    
    Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
    
    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): m
    Command action
       a   toggle a bootable flag
       b   edit bsd disklabel
       c   toggle the dos compatibility flag
       d   delete a partition
       l   list known partition types
       m   print this menu
       n   add a new partition
       o   create a new empty DOS partition table
       p   print the partition table
       q   quit without saving changes
       s   create a new empty Sun disklabel
       t   change a partition's system id
       u   change display/entry units
       v   verify the partition table
       w   write table to disk and exit
       x   extra functionality (experts only)
    
    Command (m for help): n
    Command action
       e   extended
       p   primary partition (1-4)
    p
    Partition number (1-4): 1
    First cylinder (1-6527, default 1): 
    Using default value 1
    Last cylinder, +cylinders or +size{K,M,G} (1-6527, default 6527): 
    Using default value 6527
    
    Command (m for help): p
    
    Disk /dev/sdb: 53.7 GB, 3000034656256 bytes
    255 heads, 63 sectors/track, 6527 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: 0x69D07AFC-584D-4926-81B8-8DEF8087445F
    
        Device Boot      Start         End      Blocks   Id  System
    /dev/sdb1               1        6527    5859442688   83  Linux
    
    Command (m for help): w
    The partition table has been altered!
    
    Calling ioctl() to re-read partition table.
    Syncing disks.
    
  • フォーマットディスク
  • コマンドmkfs.ext 4/dev/sdb 1パーティションはext 4のファイルシステムフォーマットです.
    [root@localhost ~]# mkfs.ext4 /dev/sdb1 
    mke2fs 1.41.12 (17-May-2010)
    Filesystem label=
    OS type: Linux
    Block size=4096 (log=2)
    Fragment size=4096 (log=2)
    Stride=0 blocks, Stripe width=0 blocks
    3276800 inodes, 13107024 blocks
    655351 blocks (5.00%) reserved for the super user
    First data block=0
    Maximum filesystem blocks=4294967296
    400 block groups
    32768 blocks per group, 32768 fragments per group
    8192 inodes per group
    Superblock backups stored on blocks: 
            32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
            4096000, 7962624, 11239424
    
    Writing inode tables: done                            
    Creating journal (32768 blocks): done
    Writing superblocks and filesystem accounting information: done
    
    This filesystem will be automatically checked every 28 mounts or
    180 days, whichever comes first.  Use tune2fs -c or -i to override.
    

    2、ディスクのマウント
    2.1、手動マウント
    手動マウントは再起動するたびに1回実行する必要があり、面倒です.
    手動マウント手順:
  • マウントの準備ディレクトリ:
  • mkdir/home/datachmod 777/home/data
  • mountコマンドを使用して
  • をマウント
    mount/dev/sdb1/home/data
    2.2、自動マウント
    自動マウントは再起動後に実行する必要はありません.推奨:
    自動マウントの手順は、次のとおりです.
  • マウントの準備ディレクトリ:
  • mkdir/home/datachmod 777/home/data
  • マウント手順:
  • fdisk -l
  • マウントするディスク(例/dev/sdb)
  • が見つかりました.
  • ディスクファイルvim/ext/fstab#/etc/fstab#Created by anaconda on Tue Jul 4 05:46:31 2017#Accessible filesystems,by reference,are maintained under'/dev/disk'#See man pages fstab(5)、findfs(8)、 mount(8) and/or blkid(8) for more info #/dev/mapper/cl-root/xfs defaults 0 0UUID=619a7a33-84ff-4b7f-befd-c798c04f68a4/boot xfs defaults 0 0/dev/mapper/cl-swap swap swap defaults 0 0
  • 新しくマウントされたハードディスク/dev/sdc/home/data ext 4 defaults 0
  • を追加
    パラメータの説明:
  • 第1列:実際のパーティション名は、実際のパーティションのボリュームラベルであってもよい.
  • 第2列:マウントポイント、最良のフォルダはすでに存在し、権限は777である.
  • 第3列:このパーティションファイルシステムタイプ;
  • 第4列:マウントのパラメータを設定するマウントオプション.一般的なパラメータは次のとおりです.
  • autoシステム自動マウント、デフォルトオプション;
  • defaults rw,suid,dev,exec,auto,nouser,ansyc;
  • noauto起動は自動的にマウントされません.
  • nouserはスーパーユーザーのみがマウントできます.
  • roは読み取り専用権限に従ってマウントされる.
  • rwは読み書き可能な権限に従ってマウントされる.
  • userは、任意のユーザーがマウントできます.

  • 第5列:dumpバックアップ設定
  • 1 dumpバックアッププログラムのバックアップを許可する.
  • 0バックアップ操作は無視されます.

  • 第6列:fsckディスクチェック設定
  • 0非点検
  • ディレクトリは常に1
  • です.
  • 他のパーティションは2から始まり、数字が小さいほど先にチェックされます.