国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Linux > 正文

Linux-磁盤管理小結

2024-06-28 13:20:46
字體:
來源:轉載
供稿:網友
linux-磁盤管理小結

這篇博文主要總結了Linux磁盤的一些操作,主要是硬盤的加載,分區(MBR分區和GPT分區),分區的掛載,以及swap分區的加載設置。


基礎命令

  • df查看磁盤分區使用狀況
    1. -l //僅顯示本地磁盤(默認)
    2. -a //顯示所有文件系統的磁盤使用情況,包含比如/PRoc/
    3. -h //以1024進制計算最合適的單位顯示磁盤容量
    4. -H //以1000進制計算最合適的單位顯示磁盤容量
    5. -t //顯示指定類型文件系統的磁盤分區
    6. -T //顯示磁盤分區類型
    7. -x //不顯示指定類型文件系統的磁盤分區
  • du統計磁盤上的文件大小
    1. -b //以byte為單位統計文件
    2. -k //以KB為單位統計文件
    3. -m //以MB為單位統計文件
    4. -h //以1024進制計算最合適的單位顯示磁盤容量
    5. -H //以1000進制計算最合適的單位顯示磁盤容量
    6. -s //統計指定目標
  • 常用命令
    1. df -lhT
    2. df -lhT -t ext4(分區類型)
    3. df -lhT -x ext4
    4. du -s [指定目錄]
    5. du -sb *.zip //模糊匹配
    6. du -sm *.zip
    7. du -sh *.zip

回顧磁盤分區時的注意事項:

  • 主分區和擴展分區總數不能超過4個。
  • 擴展分區最多只能有一個
  • 擴展分區不能直接存取數據
    小知識:
  • Linux系統中硬件設備都是以文件的形式存在于根目錄下的Dev目錄下。
  • 硬件設備都是有Linux系統自動識別的。
  • 添加的新硬盤,必須進行分區、格式化、掛載后才能使用。
  • MBR分區模式:主分區不超過4個,單個分區容量最大為2TB
  • GPT分區模式:主分區個數“幾乎”沒有限制,單個分區容量“幾乎”沒有限制。GPT分區中,最多可以支持128個主分區,且每個分區的大小突破了MBR分區的2TB的限制,最大為18EB=18432PB=18874368TB。缺點是GPT的主分區中,不適合安裝X86架構的系統。

當硬盤空間消耗殆盡時怎么辦?

比較好的做法應該是:在保留原硬盤的基礎上,給服務器添加新的硬盤。


為虛擬機添加硬盤

  1. 將虛擬機關機(poweroff)。(當然,也有服務器的主板支持熱插拔的。可以帶電連接新硬盤。)
  2. 虛擬機設置->下面的“添加”->類型選擇“硬盤”->下一步->選擇硬盤類型(默認的(SCSI)就好)->創建一個新的虛擬機硬盤(下一步)->設置磁盤最大值;(沒什么特殊要求,基本都是下一步,最后一步OK)。
  3. 重啟Linux系統,使用fdisk -l//顯示每個硬盤的分區列表(新添加的硬盤是沒有分區表的)可以看到Disk /dev/sdb:和Disk /dev/sda:2塊硬盤,以及sda的分區表,沒有sdb的分區表。
  4. 先使用MBR分區模式為sdb分區。
    [root@joe dev]# 
    fdisk /dev/sdb
        //進入分區模式Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabelBuilding a new DOS disklabel with disk identifier 0x9ce83f46.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    //修改分區的系統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): nCommand action   e   extended        //擴展分區   p   primary partition (1-4)//主分區pPartition number (1-4):
    1
    First cylinder (1-2610, default 1):         //扇區的范圍(1-2610),默認開始1,直接回車則使用默認數值Using default value 1Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610): 500MCommand (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux        //分配好的主分區1//添加第二個分區Command (m for help): nCommand action   e   extended   p   primary partition (1-4)pPartition number (1-4): Value out of range.Partition number (1-4): 2First cylinder (501-2610, default 501): Using default value 501Last cylinder, +cylinders or +size{K,M,G} (501-2610, default 2610): 500MValue out of range.Last cylinder, +cylinders or +size{K,M,G} (501-2610, default 2610): Using default value 2610Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        2610    16948575   83  Linux        //第二個分區//由于分配不合適主觀意愿,想刪除分區Command (m for help): dPartition number (1-4):
    2
          //分區編號Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux        //第二個分區已經刪除Command (m for help): nCommand action   e   extended   p   primary partition (1-4)pPartition number (1-4):
    2
    First cylinder (501-2610, default 501): Using default value 501Last cylinder, +cylinders or +size{K,M,G} (501-2610, default 2610): 1000Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        1000     4016250   83  LinuxCommand (m for help): nCommand action   e   extended   p   primary partition (1-4)e    //建立擴展分區Partition number (1-4):
    3
    First cylinder (1001-2610, default 1001): Using default value 1001Last cylinder, +cylinders or +size{K,M,G} (1001-2610, default 2610): Using default value 2610Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        1000     4016250   83  Linux/dev/sdb3            1001        2610    12932325    5  ExtendedCommand (m for help): nCommand action   l   logical (
    5 or over)
        //此時擴展分區e沒有了,說明MBR只能有一個擴展分區,接下來是邏輯分區   p   primary partition (1-4)lFirst cylinder (1001-2610, default 1001): Using default value 1001Last cylinder, +cylinders or +size{K,M,G} (1001-2610, default 2610): 1500Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        1000     4016250   83  Linux/dev/sdb3            1001        2610    12932325    5  Extended/dev/sdb5            1001        1500     4016218+  83  Linux        //邏輯分區是從5開始的,1-4只能是主分區和擴展分區的編號Command (m for help): nCommand action   l   logical (5 or over)   p   primary partition (1-4)lFirst cylinder (1501-2610, default 1501): Using default value 1501Last cylinder, +cylinders or +size{K,M,G} (1501-2610, default 2610): Using default value 2610Command (m for help): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        1000     4016250   83  Linux/dev/sdb3            1001        2610    12932325    5  Extended/dev/sdb5            1001        1500     4016218+  83  Linux/dev/sdb6            1501        2610     8916043+  83  LinuxCommand (m for help):
    w //保存寫
    The partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.[root@joe dev]# fdisk 
    -
    lDisk 
    /dev/sdb
    : 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x9ce83f46   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1         500     4016218+  83  Linux/dev/sdb2             501        1000     4016250   83  Linux/dev/sdb3            1001        2610    12932325    5  Extended/dev/sdb5            1001        1500     4016218+  83  Linux/dev/sdb6            1501        2610     8916043+  83  LinuxDisk 
    /dev/sda
    : 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x000a030a   Device Boot      Start         End      Blocks   Id  System/dev/sda1   *           1          26      204800   83  LinuxPartition 1 does not end on cylinder boundary./dev/sda2              26         281     2048000   82  Linux swap / SolarisPartition 2 does not end on cylinder boundary./dev/sda3             281         536     2048000   83  LinuxPartition 3 does not end on cylinder boundary./dev/sda4             536        2611    16669696    5  Extended/dev/sda5             536        2611    16668672   83  Linux
  5. 使用GPT分區模式分區(同時GPT的分區工具parted也可以MBR分區)
    [root@joe dev]# partedGNU Parted 2.1使用 
    /dev/sda
        //注意正在使用的是sdaWelcome to GNU Parted! Type 'help' to view a list of commands.(parted) print all                                                        Model: VMware, VMware Virtual S (scsi)Disk /dev/sda: 21.5GBSector size (logical/physical): 512B/512BPartition Table: msdosNumber  Start   End     Size    Type      File system     標志 1      1049kB  211MB   210MB   primary   ext4            啟動 2      211MB   2308MB  2097MB  primary   linux-swap(v1) 3      2308MB  4405MB  2097MB  primary   ext4 4      4405MB  21.5GB  17.1GB  extended 5      4406MB  21.5GB  17.1GB  logical   ext4Model: VMware, VMware Virtual S (scsi)Disk 
    /dev/sdb:
     21.5GBSector size (logical/physical): 512B/512BPartition Table: msdos    //sdb的應該是我們需要的gptNumber  Start  End  Size  Type  File system  標志警告: 無法以讀寫方式打開 /dev/sr0 (只讀文件系統)。/dev/sr0 已按照只讀方式打開。錯誤: /dev/sr0: unrecognised disk label                                   (parted) 
    select /dev/sdb
          //選擇sdb                                            使用 /dev/sdb(parted) mkpart     //如果不進行gpt的選擇設置,直接mkpart那么我們還是使用的MBR模式                                                      分區類型?  primary/主分區/extended/擴展分區? primary                     文件系統類型?  [ext2]? ^Z--------------------------------------------------------------------------------------------------(parted) 
    select /dev/
    sdb                                                  使用 /dev/sdb(parted) mklabel gpt                                                      警告: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do youwant to continue?是/Yes/否/No? yes(parted) print all                                                        Model: VMware, VMware Virtual S (scsi)Disk 
    /dev/sda:
     21.5GBSector size (logical/physical): 512B/512BPartition Table: msdosNumber  Start   End     Size    Type      File system     標志 1      1049kB  211MB   210MB   primary   ext4            啟動 2      211MB   2308MB  2097MB  primary   linux-swap(v1) 3      2308MB  4405MB  2097MB  primary   ext4 4      4405MB  21.5GB  17.1GB  extended 5      4406MB  21.5GB  17.1GB  logical   ext4Model: VMware, VMware Virtual S (scsi)Disk 
    /dev/sdb:
     21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start  End  Size  File system  Name  標志警告: 無法以讀寫方式打開 /dev/sr0 (只讀文件系統)。/dev/sr0 已按照只讀方式打開。錯誤: /dev/sr0: unrecognised disk label                                   (parted) mkpart                                                           分區名稱?  []? test1                                                     文件系統類型?  [ext2]? ext4起始點?
    1
               //以1開始,默認單位是M  unit GB 指定為GB為單位                                               結束點? 1000M                                                           (parted) print                                                            Model: VMware, VMware Virtual S (scsi)Disk /dev/sdb: 21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start   End     Size   File system  Name   標志 1      1049kB  1000MB  999MB               test1(parted)
    rm 1
         //刪除分區                                                        (parted) print                                                            Model: VMware, VMware Virtual S (scsi)Disk /dev/sdb: 21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start  End  Size  File system  Name  標志(parted) mkpart                                                           分區名稱?  []? test1                                                     文件系統類型?  [ext2]? ext4                                            起始點?0       //以0開始,出現了警告,這里是字節對齊的原因造成的,所以一般為了避免警告,我們不以0開始。                                                        結束點? 1000M警告: The resulting partition is not properly aligned for best performance.忽略/Ignore/放棄/Cancel? cancel                                           (parted) mkpart分區名稱?  []? test1                                                     文件系統類型?  [ext2]? ext4                                              起始點?1                                                                結束點?1000M                                                            (parted) print                                                            Model: VMware, VMware Virtual S (scsi)Disk /dev/sdb: 21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start   End     Size   File system  Name   標志 1      1049kB  1000MB  999MB               test1(parted) mkpart                                                           分區名稱?  []? test2                                                     文件系統類型?  [ext2]? ext4                                              起始點? 1000M                                                            結束點? 1500M                                                            (parted) printModel: VMware, VMware Virtual S (scsi)Disk /dev/sdb: 21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start   End     Size   File system  Name   標志 1      1049kB  1000MB  999MB               test1 2      1000MB  1500MB  500MB               test2//上面是交互模式,下面是命令模式(parted) mkpart test3 
    1500 3000
             //使用一條命令直接搞定 分區名 起始位 結束位                                  警告: The resulting partition is not properly aligned for best performance.    //出現分區的原因是起始的1500和上次結束的1500重疊了。忽略/Ignore/放棄/Cancel? cancel         (parted) mkpart test3 1501M 1700M                                         (parted) mkpart test4 1701M 1800M                                        (parted) mkpart test5 1801M 1900M                                        (parted) print                                                            Model: VMware, VMware Virtual S (scsi)Disk /dev/sdb: 21.5GBSector size (logical/physical): 512B/512BPartition Table: gptNumber  Start   End     Size    File system  Name   標志 1      1049kB  1000MB  999MB                test1 2      1000MB  1500MB  500MB                test2 3      1501MB  1700MB  199MB                test3 4      1701MB  1800MB  99.6MB               test4 5      1801MB  1900MB  98.6MB               test5(parted) 
    rm 5
    (parted) quit
  6. 分區完以后,就是格式化和掛載分區了。也就是設置文件系統。在這里需要注意以下內容:MBR分區只能格式化主分區和擴展分區,邏輯分無不能格式化 GPT分區,在格式化以后,只能使用parted 的print查看格式結果 掛載分區:分區默認的掛載目錄/mnt目錄掛載點必須存在。
    [root@joe dev]#
    ls -l /dev/sdb*
    brw-rw----. 1 root disk 8, 16 5月   7 01:18 /dev/sdbbrw-rw----. 1 root disk 8, 17 5月   7 01:18 /dev/sdb1brw-rw----. 1 root disk 8, 18 5月   7 01:18 /dev/sdb2brw-rw----. 1 root disk 8, 19 5月   7 01:18 /dev/sdb3brw-rw----. 1 root disk 8, 21 5月   7 01:18 /dev/sdb5brw-rw----. 1 root disk 8, 22 5月   7 01:18 /dev/sdb6[root@joe dev]# mkfs.ext3 
    /dev/sdb1
            //第一種設置方式mke2fs 1.41.12 (17-May-2010)文件系統標簽=操作系統:Linux塊大小=4096 (log=2)分塊大小=4096 (log=2)Stride=0 blocks, Stripe width=0 blocks502944 inodes, 2008117 blocks100405 blocks (5.00%) reserved for the super user第一個數據塊=0Maximum filesystem blocks=205940326462 block groups32768 blocks per group, 32768 fragments per group8112 inodes per groupSuperblock backups stored on blocks:     32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632正在寫入inode表: 完成                            Creating journal (32768 blocks): 完成Writing superblocks and filesystem accounting information: 完成This filesystem will be automatically checked every 23 mounts or180 days, whichever comes first.  Use tune2fs -c or -i to override.[root@joe dev]# mkfs 
    -t ext4 /dev/sdb2
            //第二種方法mke2fs 1.41.12 (17-May-2010)文件系統標簽=操作系統:Linux塊大小=4096 (log=2)分塊大小=4096 (log=2)Stride=0 blocks, Stripe width=0 blocks50288 inodes, 200812 blocks10040 blocks (5.00%) reserved for the super user第一個數據塊=0Maximum filesystem blocks=2097152007 block groups32768 blocks per group, 32768 fragments per group7184 inodes per groupSuperblock backups stored on blocks:     32768, 98304, 163840正在寫入inode表: 完成                            Creating journal (4096 blocks): 完成Writing superblocks and filesystem accounting information: 完成This filesystem will be automatically checked every 26 mounts or180 days, whichever comes first.  Use tune2fs -c or -i to override.[root@joe dev]# 
    mkdir -p /mnt/joetest
        //首先建立掛載點[root@joe dev]# 
    mount /dev/sdb1 /mnt/joetest/
            //掛載分區[root@joe dev]# 
    umount /mnt/joetest/
                //卸載掛載點上面這中掛載方式是臨時的,永久性的應該如下:vim 
    + /etc/
    fstab在末尾插入一行
    /dev/sdb1 /mnt/imooc ext3 default 0 0
    設備名稱    掛載點    文件系統類型保存退出即可
  7. swap交換分區(步驟為:建立一個普通的Linux分區,修改分區類型的16進制編碼,格式化交換分區,啟用交換分區。
    [root@joe dev]# 
    fdisk /dev/
    sdbWARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.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): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x00000000   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1        1000     8032468+  83  Linux/dev/sdb2            1001        1100      803250   83  Linux/dev/sdb3            1101        2610    12129075    5  Extended/dev/sdb5            1101        1500     3212968+  83  Linux/dev/sdb6            1501        2610     8916043+  83  LinuxCommand (m for help): tPartition number (1-6): 
    2
           //修改IDHex code (type L to list codes): L 0  Empty           24  NEC DOS         81  Minix / old Lin bf  Solaris         1  FAT12           39  Plan 9          
    82 Linux swap
     / So c1  DRDOS/sec (FAT- 2  XENIX root      3c  PartitionMagic  
    83 Linux
               c4  DRDOS/sec (FAT- 3  XENIX usr       40  Venix 80286     84  OS/2 hidden C:  c6  DRDOS/sec (FAT-Hex code (type L to list codes): 82Changed system type of partition 2 to 82 (Linux swap / Solaris)Command (m for help): wThe partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.[root@joe dev]# fdisk 
    /dev/
    sdbWARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.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): pDisk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x00000000   Device Boot      Start         End      Blocks   Id  System/dev/sdb1               1        1000     8032468+  83  Linux/dev/sdb2            1001        1100      803250  
    82 Linux swap /
     Solaris/dev/sdb3            1101        2610    12129075    5  Extended/dev/sdb5            1101        1500     3212968+  83  Linux/dev/sdb6            1501        2610     8916043+  83  LinuxCommand (m for help): q[root@joe dev]# mkswap 
    /dev/sdb2
        //設置交換區Setting up swapspace version 1, size = 803244 KiBno label, UUID=c7d31434-4013-4bbb-b68e-29b501934377[root@joe dev]# swapon 
    /dev/sdb2
        //開啟交換區[root@joe dev]# free             total       used       free     shared    buffers     cachedMem:       1030612     132468     898144          0      13612      51388-/+ buffers/cache:      67468     963144Swap:      
    2851232 0 2851232
    [root@joe dev]# swapoff 
    /dev/sdb2
        //關閉交換區[root@joe dev]#

上一篇:Linux升級Ruby

下一篇:Linux-tr命令

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 扶绥县| 安远县| 琼海市| 裕民县| 依兰县| 阿拉尔市| 长春市| 淳安县| 改则县| 沂水县| 山阴县| 嘉黎县| 新巴尔虎右旗| 衡南县| 浙江省| 城市| 凤翔县| 乡城县| 盱眙县| 永安市| 昌图县| 平顶山市| 隆德县| 丹巴县| 蕉岭县| 福海县| 望都县| 垫江县| 吴旗县| 黄骅市| 博爱县| 株洲县| 田阳县| 房产| 从江县| 沂南县| 额济纳旗| 潼南县| 万全县| 定南县| 茌平县|