Linux 磁盤分區(qū)介紹

      網(wǎng)友投稿 1006 2025-04-02

      一、linux 文件系統(tǒng)及磁盤分區(qū)

      1.1 磁盤簡介:

      1.2 linux 文件系統(tǒng)簡介

      1.3 mount 掛載

      一、linux 文件系統(tǒng)及磁盤分區(qū)

      1.1 磁盤簡介:

      1.2 linux 文件系統(tǒng)簡介

      1.3 mount 掛載

      二、案例演示

      2.1 gdisk 給磁盤分區(qū)

      2.2 parted 創(chuàng)建文件系統(tǒng)

      2.3 創(chuàng)建大文件做 swap 分區(qū)

      總結(jié)

      一、linux 文件系統(tǒng)及磁盤分區(qū)

      1.1 磁盤簡介:

      硬盤是計(jì)算機(jī)主要存儲(chǔ)媒介之一,由一個(gè)或者多個(gè)鋁制或者玻璃制的碟片組成,碟片外覆蓋有鐵磁性材料,硬盤內(nèi)部由磁道、柱面、扇區(qū)、磁頭等部件組成

      Linux系統(tǒng)中硬件設(shè)備相關(guān)配置文件存放在/dev/下,常見硬盤命名:/dev/hda、/dev/sda、/dev/sdb、/dev/sdc、/dev/vda。不同硬盤接口,在系統(tǒng)中識(shí)別的設(shè)備名稱不一樣。

      IDE硬盤接口在Linux中設(shè)備名為/dev/hda,SAS、SCSI、SATA硬盤接口在Linux中設(shè)備名為sda,高效云盤硬盤接口會(huì)識(shí)別為/dev/vda等。

      文件儲(chǔ)存在硬盤上,硬盤的最小存儲(chǔ)單位叫做Sector(扇區(qū)),每個(gè)Sector儲(chǔ)存512字節(jié)。操作系統(tǒng)在讀取硬盤的時(shí)候,不會(huì)逐個(gè)Sector的去讀取,這樣效率非常低,為了提升讀取效率,操作系統(tǒng)會(huì)一次性連續(xù)讀取多個(gè)Sector,即一次性讀取多個(gè)Sector稱為一個(gè)Block(塊。

      由多個(gè)Sector組成的Block是文件存取的最小單位。Block的大小常見的有1KB、2KB、4KB,Block在Linux中常設(shè)置為4KB,即連續(xù)八個(gè)Sector組成一個(gè)Block。

      /boot分區(qū)Block一般為1KB,而/data/分區(qū)或者/分區(qū)的Block為4K

      linux 系統(tǒng)查看分區(qū)的Block大小方法:

      [root@hbs ~]# stat anaconda-ks.cfg |grep -i "block" Size: 1511 Blocks: 8 IO Block: 4096 regular file [root@hbs ~]# [root@hbs ~]# stat /boot/|grep "IO Block" Size: 4096 Blocks: 8 IO Block: 4096 directory [root@hbs ~]#

      Linux 磁盤分區(qū)介紹

      1.2 linux 文件系統(tǒng)簡介

      1.3 mount 掛載

      Mount命令工具主要用于將設(shè)備或者分區(qū)掛載至Linux系統(tǒng)目錄下,Linux系統(tǒng)在分區(qū)時(shí),也是基于mount機(jī)制將/dev/sda分區(qū)掛載至系統(tǒng)目錄,將設(shè)備與目錄掛載之后,Linux操作系統(tǒng)方可進(jìn)行文件的存儲(chǔ)。

      mount [-Vh] mount -a [-fFnrsvw] [-t vfstype] mount [-fnrsvw] [-o options [,...]] device | dir mount [-fnrsvw] [-t vfstype] [-o options] device dir -V: 顯示mount工具版本號(hào); -l: 顯示已加載的文件系統(tǒng)列表; -h: 顯示幫助信息并退出; -v: 輸出指令執(zhí)行的詳細(xì)信息; -n: 加載沒有寫入文件/etc/mtab中的文件系統(tǒng); -r: 將文件系統(tǒng)加載為只讀模式; -a: 加載文件/etc/fstab中配置的所有文件系統(tǒng); -o: 指定mount掛載擴(kuò)展參數(shù),常見擴(kuò)展指令:rw、remount、loop等,其中-o相關(guān)指令如下: -o atime: 系統(tǒng)會(huì)在每次讀取文檔時(shí)更新文檔時(shí)間; -o noatime: 系統(tǒng)會(huì)在每次讀取文檔時(shí)不更新文檔時(shí)間; -o defaults: 使用預(yù)設(shè)的選項(xiàng) rw,suid,dev,exec,auto,nouser等; -o exec 允許執(zhí)行檔被執(zhí)行; -o user、-o nouser: 使用者可以執(zhí)行 mount/umount的動(dòng)作; -o remount: 將已掛載的系統(tǒng)分區(qū)重新以其他再次模式掛載; -o ro: 只讀模式掛載; -o rw: 可讀可寫模式掛載; -o loop 使用loop模式,把文件當(dāng)成設(shè)備掛載至系統(tǒng)目錄。 -t: 指定mount掛載設(shè)備類型,常見類型nfs、ntfs-3g、vfat、iso9660等,其中-t相關(guān)指令如下: iso9660 光盤或光盤鏡像; msdos Fat16文件系統(tǒng); vfat Fat32文件系統(tǒng); ntfs NTFS文件系統(tǒng); ntfs-3g 識(shí)別移動(dòng)硬盤格式; smbfs 掛載Windows文件網(wǎng)絡(luò)共享; nfs Unix/Linux文件網(wǎng)絡(luò)共享。

      MOUNT 常用案例

      mount /dev/sdb1 /data 掛載/dev/sdb1分區(qū)至/data/目錄 mount /dev/cdrom /mnt 掛載Cdrom光盤至/mnt目錄; mount -t ntfs-3g /dev/sdc /data1 掛載/dev/sdc移動(dòng)硬盤至/data1目錄; mount -o remount,rw / 重新以讀寫模式掛載/系統(tǒng); mount -t iso9660 -o loop centos7.iso /mnt 將centos7.iso鏡像文件掛載至/mnt目錄; mount -t fat32 /dev/sdd1 /mnt 將U盤/dev/sdd1掛載至/mnt/目錄; mount -t nfs 192.168.10.11:/data/ /mnt 將遠(yuǎn)程192.168.10.11:/data目錄掛載至本地/mnt目錄。

      二、案例演示

      2.1 gdisk 給磁盤分區(qū)

      使用 gdisk 創(chuàng)建一個(gè) 500M 的 xfs 文件系統(tǒng),并將它掛載到 /data/test目錄下

      # 1.列出所有磁盤 [admin@rivers~]$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 40G 0 disk ├─sda1 8:1 0 2M 0 part ├─sda2 8:2 0 1G 0 part /boot ├─sda3 8:3 0 10G 0 part / ├─sda4 8:4 0 5G 0 part /home └─sda5 8:5 0 1G 0 part [SWAP] sr0 11:0 1 4.2G 0 rom /run/media/admin/CentOS 7 x86_64 # 2. 查看磁盤分區(qū)表類型 [admin@rivers~]$ sudo parted /dev/sda print [sudo] admin 的密碼: Model: VMware, VMware Virtual S (scsi) # (廠商)模塊名稱 Disk /dev/sda: 42.9GB # 磁盤總?cè)萘?Sector size (logical/physical): 512B/512B # 物理扇區(qū)容量 Partition Table: gpt # 這里顯示是gpt格式 Disk Flags: pmbr_boot Number Start End Size File system Name 標(biāo)志 1 1049kB 3146kB 2097kB bios_grub 2 3146kB 1077MB 1074MB xfs 3 1077MB 11.8GB 10.7GB xfs 4 11.8GB 17.2GB 5369MB xfs 5 17.2GB 18.3GB 1074MB linux-swap(v1) [admin@rivers~]$ # 3.使用gdisk 創(chuàng)建分區(qū) [admin@rivers~]$ sudo gdisk /dev/sda GPT fdisk (gdisk) version 0.8.6 Partition table scan: MBR: protective BSD: not present APM: not present GPT: present Found valid GPT with protective MBR; using GPT. Command (? for help): ? # ? 命令幫助,想到fdisk中的m b back up GPT data to a file c change a partition's name d delete a partition # 刪除一個(gè)分區(qū) i show detailed information on a partition l list known partition types n add a new partition # 增加一個(gè)分區(qū) o create a new empty GUID partition table (GPT) p print the partition table #打印出分區(qū)表 (常用) q quit without saving changes # 不保存分區(qū)直接離開 r recovery and transformation options (experts only) s sort partitions t change a partition's type code v verify disk w write table to disk and exit #保存分區(qū)后離開 x extra functionality (experts only) ? print this menu Command (? for help): p Disk /dev/sda: 83886080 sectors, 40.0 GiB # 磁盤文件名/扇區(qū)總數(shù)與總?cè)萘?Logical sector size: 512 bytes # 單一扇區(qū)大小為512 bytes Disk identifier (GUID): 00B9BA4D-D71C-462B-82F4-091B4C43A1D5 #磁盤的GPT標(biāo)識(shí)碼 Partition table holds up to 128 entries First usable sector is 34, last usable sector is 83886046 Partitions will be aligned on 2048-sector boundaries Total free space is 48230333 sectors (23.0 GiB) # 下面為完整的分區(qū)信息 Number Start (sector) End (sector) Size Code Name 1 2048 6143 2.0 MiB EF02 # 第一個(gè)分區(qū)信息 2 6144 2103295 1024.0 MiB 0700 3 2103296 23074815 10.0 GiB 0700 4 23074816 33560575 5.0 GiB 0700 5 33560576 35657727 1024.0 MiB 8200 Command (? for help): n # 新增加一個(gè) Partition number (6-128, default 6): # 標(biāo)識(shí)符 First sector (34-83886046, default = 35657728) or {+-}size{KMGTP}: # 開始扇區(qū) Last sector (35657728-83886046, default = 83886046) or {+-}size{KMGTP}: +500M Current type is 'Linux filesystem' Hex code or GUID (L to show codes, Enter = 8300): #在分區(qū)內(nèi)可能的文件系統(tǒng)類型 8300 Changed type of partition to 'Linux filesystem' Command (? for help): p Disk /dev/sda: 83886080 sectors, 40.0 GiB Logical sector size: 512 bytes Disk identifier (GUID): 00B9BA4D-D71C-462B-82F4-091B4C43A1D5 Partition table holds up to 128 entries First usable sector is 34, last usable sector is 83886046 Partitions will be aligned on 2048-sector boundaries Total free space is 47206333 sectors (22.5 GiB) Number Start (sector) End (sector) Size Code Name 1 2048 6143 2.0 MiB EF02 2 6144 2103295 1024.0 MiB 0700 3 2103296 23074815 10.0 GiB 0700 4 23074816 33560575 5.0 GiB 0700 5 33560576 35657727 1024.0 MiB 8200 6 35657728 36681727 500.0 MiB 8300 Linux filesystem # 8300 linux 文件系統(tǒng) # 8200 swap 文件系統(tǒng) Command (? for help): w # 保存 Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING PARTITIONS!! Do you want to proceed? (Y/N): Y # 按Y 退出 OK; writing new GUID partition table (GPT) to /dev/sda. Warning: The kernel is still using the old partition table. The new table will be used at the next reboot. The operation has completed successfully. [admin@rivers~]$ [admin@rivers~]$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 40G 0 disk ├─sda1 8:1 0 2M 0 part ├─sda2 8:2 0 1G 0 part /boot ├─sda3 8:3 0 10G 0 part / ├─sda4 8:4 0 5G 0 part /home └─sda5 8:5 0 1G 0 part [SWAP] sr0 11:0 1 4.2G 0 rom /run/media/admin/CentOS 7 x86_64 # 4. 更新linux 內(nèi)核的分區(qū)表信息 [admin@rivers~]$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 40G 0 disk ├─sda1 8:1 0 2M 0 part ├─sda2 8:2 0 1G 0 part /boot ├─sda3 8:3 0 10G 0 part / ├─sda4 8:4 0 5G 0 part /home ├─sda5 8:5 0 1G 0 part [SWAP] └─sda6 8:6 0 500M 0 part sr0 11:0 1 4.2G 0 rom /run/media/admin/CentOS 7 x86_64 [admin@rivers~]$ # 5.格式化剛建立的分區(qū) [admin@rivers~]$ sudo mkfs.xfs /dev/sda6 meta-data=/dev/sda6 isize=512 agcount=4, agsize=32000 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=0, sparse=0 data = bsize=4096 blocks=128000, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0 ftype=1 log =internal log bsize=4096 blocks=855, version=2 = sectsz=512 sunit=0 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 [admin@rivers~]$ # 6.查看/dev/sda6的UUID [admin@rivers~]$ sudo blkid|grep "/dev/sda6" /dev/sda6: UUID="fc584ce9-b4ff-4c54-8c2c-9ed6cf54dc1d" TYPE="xfs" PARTLABEL="Linux filesystem" PARTUUID="1aa87728-47cd-428d-b5bd-32a076c8f537" [admin@rivers~]$ # 7.創(chuàng)建掛載點(diǎn),且掛載 [admin@rivers~]$ sudo mount UUID="fc584ce9-b4ff-4c54-8c2c-9ed6cf54dc1d" /data/test [admin@rivers~]$ df -h 文件系統(tǒng) 容量 已用 可用 已用% 掛載點(diǎn) /dev/sda3 10G 4.6G 5.5G 46% / devtmpfs 1.8G 0 1.8G 0% /dev tmpfs 1.8G 0 1.8G 0% /dev/shm tmpfs 1.8G 9.1M 1.8G 1% /run tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup /dev/sda4 5.0G 37M 5.0G 1% /home /dev/sda2 1014M 158M 857M 16% /boot tmpfs 367M 4.0K 367M 1% /run/user/42 tmpfs 367M 36K 367M 1% /run/user/1000 /dev/sr0 4.3G 4.3G 0 100% /run/media/admin/CentOS 7 x86_64 /dev/sda6 497M 26M 472M 6% /data/test [admin@rivers~]$ # 8.刪除剛建立的 6號(hào)分區(qū),先卸載,再說刪除 [admin@rivers~]$ sudo umount /data/test/ [admin@rivers~]$ sudo gdisk /dev/sda GPT fdisk (gdisk) version 0.8.6 Partition table scan: MBR: protective BSD: not present APM: not present GPT: present Found valid GPT with protective MBR; using GPT. Command (? for help): p # 打印下以存在的分區(qū) Disk /dev/sda: 83886080 sectors, 40.0 GiB Logical sector size: 512 bytes Disk identifier (GUID): 00B9BA4D-D71C-462B-82F4-091B4C43A1D5 Partition table holds up to 128 entries First usable sector is 34, last usable sector is 83886046 Partitions will be aligned on 2048-sector boundaries Total free space is 47206333 sectors (22.5 GiB) Number Start (sector) End (sector) Size Code Name 1 2048 6143 2.0 MiB EF02 2 6144 2103295 1024.0 MiB 0700 3 2103296 23074815 10.0 GiB 0700 4 23074816 33560575 5.0 GiB 0700 5 33560576 35657727 1024.0 MiB 8200 6 35657728 36681727 500.0 MiB 8300 Linux filesystem Command (? for help): d # 按 d 刪除分區(qū) Partition number (1-6): 6 Command (? for help): p Disk /dev/sda: 83886080 sectors, 40.0 GiB Logical sector size: 512 bytes Disk identifier (GUID): 00B9BA4D-D71C-462B-82F4-091B4C43A1D5 Partition table holds up to 128 entries First usable sector is 34, last usable sector is 83886046 Partitions will be aligned on 2048-sector boundaries Total free space is 48230333 sectors (23.0 GiB) Number Start (sector) End (sector) Size Code Name 1 2048 6143 2.0 MiB EF02 2 6144 2103295 1024.0 MiB 0700 3 2103296 23074815 10.0 GiB 0700 4 23074816 33560575 5.0 GiB 0700 5 33560576 35657727 1024.0 MiB 8200 Command (? for help): w # 保存 Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING PARTITIONS!! Do you want to proceed? (Y/N): Y OK; writing new GUID partition table (GPT) to /dev/sda. Warning: The kernel is still using the old partition table. The new table will be used at the next reboot. The operation has completed successfully. [admin@rivers~]$ sudo lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 40G 0 disk ├─sda1 8:1 0 2M 0 part ├─sda2 8:2 0 1G 0 part /boot ├─sda3 8:3 0 10G 0 part / ├─sda4 8:4 0 5G 0 part /home └─sda5 8:5 0 1G 0 part [SWAP] sr0 11:0 1 4.2G 0 rom /run/media/admin/CentOS 7 x86_64 [admin@rivers~]$

      2.2 parted 創(chuàng)建文件系統(tǒng)

      使用parted 創(chuàng)建一個(gè)swap 分區(qū)

      # 0.檢查是否有parted 工具,沒有就安裝一個(gè)這里我有,不需安裝 [admin@rivers~]$ which parted /usr/sbin/parted #[admin@rivers~]$ yum -y install parted # 1. 先列出 磁盤分區(qū)表類型,及分區(qū)情況 [admin@rivers~]$ sudo parted /dev/sda print Model: VMware, VMware Virtual S (scsi) Disk /dev/sda: 42.9GB Sector size (logical/physical): 512B/512B Partition Table: gpt #2. 這里看到的是GPT類型,使用gdisk或者parted分區(qū) Disk Flags: pmbr_boot Number Start End Size File system Name 標(biāo)志 1 1049kB 3146kB 2097kB bios_grub 2 3146kB 1077MB 1074MB xfs 3 1077MB 11.8GB 10.7GB xfs 4 11.8GB 17.2GB 5369MB xfs 5 17.2GB 18.3GB 1074MB linux-swap(v1) # 2. 將 原本gpt格式的 磁盤變?yōu)?mbr 分區(qū)表。(很危險(xiǎn),請(qǐng)勿亂用!無法恢復(fù)!) @ 這條命令我變了一個(gè)磁盤/sdb ,新添加的磁盤,請(qǐng)不要用/sda 去弄。! [admin@rivers~]$ sudo parted /dev/sdb mklabel msdos [admin@rivers~]$parted /dev/sdb print Model: VMware, VMware Virtual S (scsi) Disk /dev/sdb: 10.7GB Sector size (logical/physical): 512B/512B Partition Table: msdos # 現(xiàn)在這里變了,變成MBR了。 Disk Flags: Number Start End Size Type File system Flags 使用parted 分區(qū),格式化為 vfat 類型大小為 500M [admin@rivers~]$ sudo parted /dev/sda mkpart primary ext4 18.3GB 18.8GB [sudo] admin 的密碼: 信息: You may need to update /etc/fstab. [admin@rivers~]$ sudo partprobe /dev/sda parted [設(shè)備名] [命令] [參數(shù)] # 固定以 MB 格式顯示 parted /dev/sdb unit mb print # 將GPT格式的分區(qū)表,將它改變?yōu)?MBR格式 parted /dev/sdb mklabel msdos # 在建立一個(gè) 500M的 ext4 格式的 parted /dev/sda mkpart primary ext4 18.3GB 18.8GB

      2.3 創(chuàng)建大文件做 swap 分區(qū)

      使用dd 命令,創(chuàng)建一個(gè)大文件,格式化做swap分區(qū),并掛載

      # 1. 創(chuàng)建一個(gè) 大文件,塊大小為1M ,共計(jì)512個(gè)塊 [admin@rivers~]$ dd if=/dev/zero of=/tmp/dvd bs=1M count=512 記錄了512+0 的讀入 記錄了512+0 的寫出 536870912字節(jié)(537 MB)已復(fù)制,30.7426 秒,17.5 MB/秒 # 2. 查看,并格式化文件 [admin@rivers~]$ sudo ls -lih /tmp/dvd 16838973 -rw-rw-r--. 1 admin admin 512M 12月 29 20:09 /tmp/dvd [admin@rivers~]$ sudo mkswap /tmp/dvd mkswap: /tmp/dvd: warning: wiping old swap signature. 正在設(shè)置交換空間版本 1,大小 = 524284 KiB 無標(biāo)簽,UUID=79a3af17-1c7a-4025-a596-c34782619b7a [admin@rivers~]$ #3. 啟動(dòng)swap ,利用swapon 將/tmp/dvd 啟動(dòng)(swapoff 關(guān)閉 swap file) [admin@rivers~]$ sudo swapon /tmp/dvd # 4. 使用swapoff 關(guān)閉,并設(shè)置自啟動(dòng) [admin@rivers~]$ sudo swapoff /tmp/dvd [admin@rivers~]$ tail -1 /etc/fstab /tmp/dvd swap swap defaults 0 0 [admin@rivers~]$

      總結(jié)

      一個(gè) 可以被掛載的數(shù)據(jù) 通常 稱為 文件系統(tǒng),不是硬盤分區(qū)

      linux 傳統(tǒng)文件系統(tǒng)為 ext2,該文件系統(tǒng)主要包含信息有:

      超級(jí)區(qū)塊:包含inode/區(qū)塊總量,使用量、剩余量,文件系統(tǒng)格式等信息

      inode:文件屬性,一個(gè)文件一個(gè)inode,同時(shí)記錄文件數(shù)據(jù)所在區(qū)塊號(hào)碼

      數(shù)據(jù)區(qū)塊:實(shí)際記錄文件的內(nèi)容,若文件太大,會(huì)占用多個(gè)數(shù)據(jù)區(qū)塊

      ext2 文件系統(tǒng)的數(shù)據(jù)存取為 索引式文件系統(tǒng)

      硬鏈接:只是多了一個(gè)文件名 對(duì)該inode 號(hào)碼的連接,不能跨文件連接、不能連接目錄

      符號(hào)鏈接:快捷方式。

      磁盤使用 必須經(jīng)過 分區(qū)、格式化與掛載。常用命令 為 parted、gdisk、fdisk、mount、partproe等

      啟動(dòng)自動(dòng)掛載,可以編寫/etc/fstab 文件,然后使用 mount -a測試

      Linux

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。

      版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。

      上一篇:怎么把文檔變成jpg格式
      下一篇:wps表格怎樣設(shè)置快捷鍵(wps的excel怎么設(shè)置快捷鍵)
      相關(guān)文章
      亚洲国产av无码精品| 中文字幕久久亚洲一区| 亚洲国产人成精品| 亚洲AV噜噜一区二区三区| 亚洲国产精品日韩在线| 亚洲综合小说久久另类区| 久久亚洲精品国产精品| 午夜影视日本亚洲欧洲精品一区 | 亚洲人成电影院在线观看| 亚洲一区二区三区高清| 亚洲国产精品久久66| 久久久久无码精品亚洲日韩| 亚洲国产天堂久久综合网站| 亚洲午夜久久影院| 亚洲精品视频在线观看免费| 亚洲无成人网77777| 33333在线亚洲| 亚洲人成网站日本片| 亚洲乱码在线播放| www.亚洲成在线| 亚洲香蕉久久一区二区三区四区| 亚洲不卡影院午夜在线观看| 亚洲av永久无码精品秋霞电影秋| 亚洲1区2区3区精华液| 成人伊人亚洲人综合网站222| 亚洲最大av无码网址| 国产亚洲综合一区柠檬导航| 亚洲成人午夜在线| 亚洲国产亚洲综合在线尤物| 亚洲国产视频久久| 日韩亚洲翔田千里在线| 亚洲日韩中文字幕日韩在线| 精品久久久久久亚洲| 一区二区三区亚洲| 亚洲va成无码人在线观看| 亚洲精品无码久久久久YW| 亚洲国产精品成人久久蜜臀 | av在线亚洲欧洲日产一区二区| 亚洲精品乱码久久久久久蜜桃 | 亚洲Av无码一区二区二三区| 亚洲综合色婷婷在线观看|