Linux システムの場合、ディスクのマウント方法は実際に似ているため、この記事では CentOS システムを例として Linux システムでのディスクのマウント方法を紹介します 前回の内容のほとんどは Tianyi Cloud フォーラムからのものです。 。
1.ディスクのステータスを確認します
コマンド fdisk -l # を使用して、すべてのディスク情報を一覧表示します
[root@qxyw ~]# fdisk -l Disk /dev/xvda: 42.9 GB, 42949672960 bytes255 heads, 63 sectors/track, 5221 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: 0x0008a9a5Device Boot Start End Blocks Id System/dev/xvda1 1 523 4194304 82 Linux swap / Solaris Partition 1 does not end on cylinder boundary./dev/xvda2 * 523 5222 37747712 83 Linux Disk /dev/xvde: 322.1 GB, 322122547200 bytes255 heads, 63 sectors/track, 39162 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
2. パーティションを作成します
fdisk /dev/xvde # xvde ハードドライブのパーティションを作成します
n #新しいパーティションを作成します
p # プライマリ パーティションを作成します (e は拡張パーティションです)
1 # 1 は最初のプライマリ パーティションを表します
Enter # 最初のシリンダからパーティション化を開始します
Enter # xvde 全体が最初のパーティションに書き込まれることを示します(SDB を複数のパーティションに分割する必要がある場合は、この時点で + パーティション サイズを入力します)
P # 作成されたパーティションを確認します
w # 保存して終了
[root@qxyw ~]# fdisk /dev/xvde Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel with disk identifier 0x590ca8b1. 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): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1First cylinder (1-39162, default 1): Using default value 1Last cylinder, +cylinders or +size{K,M,G} (1-39162, default 39162): Using default value 39162Command (m for help): p Disk /dev/xvde: 322.1 GB, 322122547200 bytes255 heads, 63 sectors/track, 39162 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: 0x590ca8b1Device Boot Start End Blocks Id System/dev/xvde1 1 39162 314568733+ 83 Linux Command (m for help): w The partition table has been altered!Calling ioctl() to re-read partition table. Syncing disks.
3.パーティション ファイル システムを作成してフォーマットしますディスク
# mkfs.ext4 /dev/xvde1 # xvde1 を ext4 形式でフォーマットします
[root@qxyw ~]# mkfs.ext4 xvde1 mke2fs 1.41.12 (17-May-2010) Could not stat xvde1 --- No such file or directory The device apparently does not exist; did you specify it correctly?[root@qxyw ~]# mkfs.ext4 /dev/xvde1 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 blocks19660800 inodes, 78642183 blocks3932109 blocks (5.00%) reserved for the super user First data block=0Maximum filesystem blocks=4294967296 2400 block groups32768 blocks per group, 32768 fragments per group8192 inodes per group Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872, 71663616Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 25 mounts or180 days, whichever comes first. Use tune2fs -c or -i to override.
4. ホーム ディレクトリの下にフォルダー mysql を作成し、デバイスを /home/mysql にマウントします。
[root@qxyw home]# mount /dev/xvde1 /home/mysql [root@qxyw home]# df -h Filesystem Size Used Avail Use% Mounted on/dev/xvda2 36G 2.4G 32G 7% /tmpfs 3.9G 0 3.9G 0% /dev/shm/dev/xvde1 296G 191M 281G 1% /home/mysql
元のフォルダーにファイルがある場合、マウント後にファイルが消え、lost+found フォルダーが表示されますが、この時点では umount コマンドを使用してアンマウントできますので、ご安心ください。
その理由はこうです。
これには、Linux の VFS (仮想ファイル システム) メカニズムが関係します。ログイン後に表示される各ディレクトリとファイルは、ハード ディスク上の実際のディレクトリ ツリーを直接見るのではなく、カーネルのロード時にメモリ内に構築された VFS ディレクトリ ツリーです。
この記事の説明に関する私の大まかな理解によれば、デバイスを VFS マウント ポイント (/home など) にマウントすると、システムは VFS ポイント内のマウント ポイント /home を最後にマウントしたデバイスにマウントします。 。次に、マウント ポイントにアクセスすると、最後にマウントしたデバイスがここに表示されます。以前にマウントされたデバイスはまだ存在しますが、マウント ポイント /home は以前のデバイスを指していません。元のデバイスをアンマウントし、アクセスするために新しいマウント ポイントにマウントできます。
5.
ディスクUUIDをfstabに書き込みます
[root@qxyw ~]# blkid /dev/xvda1: UUID="5546dd0c-ef40-451b-b266-df8ef3a49967" TYPE="swap" /dev/xvda2: UUID="77fc0962-b3cf-400a-8903-0632e077fa09" TYPE="ext3" /dev/xvde1: UUID="1d17945b-c369-42de-85a8-47217d24d3e5" TYPE="ext4"
# # /etc/fstab # Created by anaconda on Thu Jan 12 02:47:21 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# UUID=77fc0962-b3cf-400a-8903-0632e077fa09 / ext3 defaults 1 1UUID=5546dd0c-ef40-451b-b266-df8ef3a49967 swap swap defaults 0 0tmpfs /dev/shm tmpfs defaults 0 0devpts /dev/pts devpts gid=5,mode=620 0 0sysfs /sys sysfs defaults 0 0 proc /proc proc defaults 0 0 UUID=d17945b-c369-42de-85a8-47217d24d3e5 /home/mysql ext4 defaults 0 06を介して最後の行にxvde1のディスク情報を追加します。 lib/mysql/ /home/mysql/ の下にコンテンツを転送し、/var/lib/ の下に mysql リンクを作成します。実際のディレクトリは /home/mysql
[root@qxyw /]# cd home[root@qxyw home]# mkdir mysql [root@qxyw home]# mv /var/lib/mysql/* /home/mysql[root@qxyw home]# ln /home/mysql /var/lib/mysql7 です。それを確認してディスク使用量を確認します。 df コマンドの条件を使用して。次に、mysql コマンドを入力してデータベース test1 を作成します。実行後、データベース test1 が /home/mysql/ フォルダーに表示されます。さらに、df コマンドを使用してディスク使用量を確認します。 /dev/xvde1 の使用量が増加していることがわかります。
りー
以上がLinux システムディスクをマウントするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。