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.
fstab에 디스크 UUID 쓰기
[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 명령 Condition을 통해. 그런 다음 mysql 명령을 입력하여 데이터베이스 test1을 생성합니다. 실행 후 데이터베이스 test1이 /home/mysql/ 폴더에 나타납니다. 또한 df 명령을 사용하여 디스크 사용량을 확인합니다. /dev/xvde1의 사용량이 증가하고 있음을 알 수 있습니다.
[root@qxyw mysql]# df Filesystem 1K-blocks Used Available Use% Mounted on/dev/xvda2 37155392 2417608 32850400 7% /tmpfs 4018012 0 4018012 0% /dev/shm/dev/xvde1 309633052 217092 293687524 1% /home/mysql
위 내용은 Linux 시스템 디스크를 마운트하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!