8.1 fdisk:磁盘分区工具

8.1.1 命令详解

【命令星级】 ★★★★★

【功能说明】

​ fdisk是Linux下常用的磁盘分区工具。受mbr分区表的限制,fdisk工具只能给小于2T的磁盘划分分区。如果使用fdisk对大于2TB的磁盘进行分区,虽然可以分区,但其仅识别2TB的空间,所以磁盘容量若超过2TB,就要使用parted分区工具(后面会讲)进行分区。

【语法格式】

fdisk [option] [device]
fdisk [选项] [设备名]

​ **说明:**在fdisk命令及后面的选项和设备名里,每个元素之间都至少要有一个空格。

【选项说明】

​ 表8-1针对该命令的参数选项进行了说明。

​ 表8-1 fdisk命令的参数选项及说明

8.1.2 使用范例

8.1.2.1 基础范例

​ **范例8-1:**显示磁盘分区列表(-l参数)例子。

[root@centos6 ~]# fdisk -l  #查看当前系统所有磁盘的分区信息。Disk /dev/sda: 21.5 GB, 21474836480 bytes  #磁盘/dev/sda的大小。
255 heads, 63 sectors/track, 2610 cylinders #255个虚拟磁头,63个扇区、磁道,2610个柱面。
Units = cylinders of 16065 * 512 = 8225280 bytes  #柱面大小8225280 bytes。
Sector size (logical/physical): 512 bytes / 512 bytes   #每个扇区的字节数。
I/O size (minimum/optimal): 512 bytes / 512 bytes   #每次读写的字节数。
Disk identifier: 0x000b962dDevice Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         131     1048576   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2             131         392     2097152   82  Linux swap / Solaris
Partition 2 does not end on cylinder boundary.
/dev/sda3             392         523     1048576   83  Linux
Partition 3 does not end on cylinder boundary.
/dev/sda4             523        2611    16776192    5  Extended
/dev/sda5             523        2611    16775168   83  Linux

​ 上述信息每列功能说明具体如下:

Device:分区,这里有三个分区;
Boot:启动分区,用*表示的启动分区;
Start:表示开始的柱面;
End:表示结束的柱面;
Blocks:block块数量;
Id:分区类型Id;
System:分区类型。
[root@centos7 ~]# fdisk -l  #查看当前系统所有磁盘的分区信息。Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors    #磁盘/dev/sda大小21.5 GB,21474836480 bytes,41943040个扇区。
Units = sectors of 1 * 512 = 512 bytes        #每个扇区大小。
Sector size (logical/physical): 512 bytes / 512 bytes   #每个扇区的字节数。
I/O size (minimum/optimal): 512 bytes / 512 bytes   #每次读写的字节数
Disk label type: dos
Disk identifier: 0x000613a7Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     2099199     1048576   83  Linux
/dev/sda2         2099200     6293503     2097152   82  Linux swap / Solaris
/dev/sda3         6293504    41943039    17824768   83  Linux

8.1.2.2 技巧性范例

​ **范例8-2:**在虚拟机(VMware Workstation Pro)模拟磁盘分区实战。

​ 步骤1:先在虚拟机关机状态下添加一块1GB磁盘(如图8-1所示),若是在开机状态下添加,则需要重启系统。

​ 图8-1 添加一块1GB的硬盘

​ 步骤2:重启系统后查看添加的磁盘。

[root@centos7 ~]# fdisk -l  #显示分区信息。Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000613a7Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     2099199     1048576   83  Linux
/dev/sda2         2099200     6293503     2097152   82  Linux swap / Solaris
/dev/sda3         6293504    41943039    17824768   83  LinuxDisk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors  #刚刚新添加的磁盘名为/dev/sdb,是第二块盘。
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

​ 还可以直接指定特定分区查看信息。

[root@centos7 ~]# fdisk -l /dev/sdb #-l参数接设备码可以显示指定设备信息。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

​ 步骤3:交互式分区实践。

[root@centos7 ~]# ls /dev/sd*   #查看分区当前设备的状态。
/dev/sda  /dev/sda1  /dev/sda2  /dev/sda3  /dev/sdb[root@centos7 ~]# fdisk /dev/sdb    #不加参数,直接设备名就可以分区。
Welcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x1f0c4dd0.Command (m for help): m        #m是帮助,需要人工输入m后回车,下同。
Command actiona   toggle a bootable flag    #设置引导扇区。b   edit bsd disklabel  #编辑bsd卷标。c   toggle the dos compatibility flag  #设置dos兼容扇区。d   delete a partition   #删除一个分区。g   create a new empty GPT partition table   # 创建一个空的GPT分区表。G   create an IRIX (SGI) partition table      # 创建一个IRIX分区表。l   list known partition types  #查看分区类型对应编号列表。m   print this menu   #打印帮助菜单。n   add a new partition #新建一个分区。o   create a new empty DOS partition table  #创建一个新的空DOS分区表。p   print the partition table    #打印分区表。q   quit without saving changes  #退出不保存更改。s   create a new empty Sun disklabel   #创建新的空Sun卷标。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): n      #新建一个分区,需要人工输入n后回车。
Partition type:p   primary (0 primary, 0 extended, 4 free)  #创建主分区(编号1-4)。e   extended        #创建扩展分区。
Select (default p): p   #创建一个主分区,需要人工输入p后回车。
Partition number (1-4, default 1): 1    #设置分区编号为1,需要扔输入1后回车。
First sector (2048-2097151, default 2048):  #设置起始扇区,直接敲回车键会使用默认值2048。
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-2097151, default 2097151): +100M #设置结束扇区(2097151)或分区大小(+100M),因为要划分出指定大小的分区,所以常用+100M这种方法,如果分区时使用fdisk -cu /dev/sdb,则这里就会使用扇区为单位来进行分区。
Partition 1 of type Linux and of size 100 MiB is setCommand (m for help): p     #打印分过的分区表。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  LinuxCommand (m for help): n        #再新建一个分区。
Partition type:p   primary (1 primary, 0 extended, 3 free)e   extended
Select (default p): e   #创建一个扩展分区。
Partition number (2-4, default 2): 2    #设置分区编号为2.
First sector (206848-2097151, default 206848):  #按回车默认开始扇区号为206848。
Using default value 206848
Last sector, +sectors or +size{K,M,G} (206848-2097151, default 2097151):  #按回车,默认设置结束扇区号2097151。
Using default value 2097151
Partition 2 of type Extended and of size 923 MiB is setCommand (m for help): p      #打印分区表。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848     2097151      945152    5  ExtendedCommand (m for help): n     #再新建一个分区。
Partition type:p   primary (1 primary, 1 extended, 2 free)l   logical (numbered from 5) #分了扩展分区,这里自动变为逻辑分区。
Select (default p): p   #创建一个主分区。
Partition number (3,4, default 3): 3
No free sectors available   #不能再创建主分区,没有磁盘空间了。Command (m for help): n        #再新建一个分区。
Partition type:p   primary (1 primary, 1 extended, 2 free)l   logical (numbered from 5)
Select (default p): l   #再新建一个逻辑分区。
Adding logical partition 5
First sector (208896-2097151, default 208896): #按回车开始扇区号208896.
Using default value 208896
Last sector, +sectors or +size{K,M,G} (208896-2097151, default 2097151): +400M   #设置分区大小为400M。
Partition 5 of type Linux and of size 400 MiB is setCommand (m for help): p     #打印分区表。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848     2097151      945152    5  Extended
/dev/sdb5          208896     1028095      409600   83  LinuxCommand (m for help): n        #再新建一个分区。
Partition type:p   primary (1 primary, 1 extended, 2 free)l   logical (numbered from 5)
Select (default p): l   #新建一个逻辑分区。
Adding logical partition 6
First sector (1030144-2097151, default 1030144): #开始扇区默认。
Using default value 1030144
Last sector, +sectors or +size{K,M,G} (1030144-2097151, default 2097151):     #结束扇区默认。
Using default value 2097151
Partition 6 of type Linux and of size 521 MiB is setCommand (m for help): p     #打印分区表。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848     2097151      945152    5  Extended
/dev/sdb5          208896     1028095      409600   83  Linux
/dev/sdb6         1030144     2097151      533504   83  LinuxCommand (m for help): w        #将操作写入分区表生效并退出程序。
The partition table has been altered!Calling ioctl() to re-read partition table.
Syncing disks.
[root@centos7 ~]# ls /dev/sd*  #查看分区后设备的状态。
/dev/sda   /dev/sda2  /dev/sdb   /dev/sdb2  /dev/sdb6
/dev/sda1  /dev/sda3  /dev/sdb1  /dev/sdb5
[root@centos7 ~]# partprobe /dev/sdb   #执行该命令通知内核分区表已更改,此步是不重启让分区表生效的命令。

​ 步骤4:格式化磁盘。

[root@centos7 ~]# mkfs.ext4 /dev/sdb1   #只有格式化后的磁盘才能挂载到系统中使用,后面将会详细讲解mdfs.ext4命令。
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
25688 inodes, 102400 blocks
5120 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=33685504
13 block groups
8192 blocks per group, 8192 fragments per group
1976 inodes per group
Superblock backups stored on blocks: 8193, 24577, 40961, 57345, 73729Allocating group tables: done
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done [root@centos7 ~]# tune2fs -c 1 /dev/sdb1   #执行这个命令可以避免磁盘挂载自动检查磁盘,后面将会讲解tune2fs命令。
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to 1

​ 步骤5:挂载磁盘分区。

[root@centos7 ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        476M     0  476M   0% /dev
tmpfs           487M     0  487M   0% /dev/shm
tmpfs           487M  7.7M  479M   2% /run
tmpfs           487M     0  487M   0% /sys/fs/cgroup
/dev/sda3        17G  2.4G   15G  14% /
/dev/sda1      1014M  160M  855M  16% /boot
tmpfs            98M     0   98M   0% /run/user/0
[root@centos7 ~]# mount /dev/sdb1 /mnt
[root@centos7 ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        476M     0  476M   0% /dev
tmpfs           487M     0  487M   0% /dev/shm
tmpfs           487M  7.7M  479M   2% /run
tmpfs           487M     0  487M   0% /sys/fs/cgroup
/dev/sda3        17G  2.4G   15G  14% /
/dev/sda1      1014M  160M  855M  16% /boot
tmpfs            98M     0   98M   0% /run/user/0
/dev/sdb1        93M  1.6M   85M   2% /mnt
[root@centos7 ~]# vim /etc/fstab   #最后一行加入,要开机自动挂载磁盘就要加入/etc/fstab或将上面的mount命令放入/etc/rc.local中。
/dev/sdb1                                  /mnt                   ex
t4    defaults        0 0
:wq

​ **提示:**有关fstab文件的知识,读者可以查看man fstab。

[root@centos7 ~]# vim /etc/rc.local     #或者编辑/etc/rc.local,最后一行加入,两种方法二选一。
mount /dev/sdb1 /mnt

​ 步骤6:其他事项。

​ 用交互指令d删除分区时要小心,看好分区的序号,如果删除了扩展分区,那么扩展分区之下的逻辑分区都会删除,所以操作时一定要小心。如果不小心操作错了,直接使用交互指令q不保存退出,这样先前的操作就会无效。如果输入w(保存指令)则会保存所有修改。

[root@centos7 ~]# fdisk /dev/sdb
Welcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Command (m for help): p   #打印分区表。Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848     2097151      945152    5  Extended
/dev/sdb5          208896     1028095      409600   83  Linux
/dev/sdb6         1030144     2097151      533504   83  LinuxCommand (m for help): d    #扇区分区。
Partition number (1,2,5,6, default 6): 2    #输入要删除的分区编号,2是扩展分区。
Partition 2 is deletedCommand (m for help): pDisk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
#可以看到逻辑分区都不见了。
Command (m for help): q #不保存退出。

​ **范例8-3:**fdisk非交互式分区(批量分区案例)。

​ 表8-2展示的就是上面范例8-2步骤3中交互分区输入的字符串,其中enter为回车键。

​ 表8-2 范例8-2步骤3交互分区输入的字符串


​ 以下是实现非交互式分区的代码。

fdisk /dev/sdb<<EOF    #也可以将下面的内容写入文本文件,然后读文本执行。
n
p
1+100M
n
e
2n
1+400M
n
lp
w
EOF

​ 执行命令及结果如下:

[root@centos7 ~]# fdisk /dev/sdb<<EOF #也可以将下面的内容写入文本。
> n
> p
> 1
>
> +100M
> n
> e
> 2
>
>
> n
> l
>
> +400M
> n
> l
>
>
> p
> w
> EOF    #输入EOF结束输入。如果输入无误,回车后系统输出的结果如下:
Welcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Command (m for help): Partition type:p   primary (0 primary, 0 extended, 4 free)e   extended
Select (default p): Partition number (1-4, default 1): First sector (2048-2097151, default 2048): Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-2097151, default 2097151): Partition 1 of type Linux and of size 100 MiB is setCommand (m for help): Partition type:p   primary (1 primary, 0 extended, 3 free)e   extended
Select (default p): Partition number (2-4, default 2): First sector (206848-2097151, default 206848): Using default value 206848
Last sector, +sectors or +size{K,M,G} (206848-2097151, default 2097151): Using default value 2097151
Partition 2 of type Extended and of size 923 MiB is setCommand (m for help): Partition type:p   primary (1 primary, 1 extended, 2 free)l   logical (numbered from 5)
Select (default p): Adding logical partition 5
First sector (208896-2097151, default 208896): Using default value 208896
Last sector, +sectors or +size{K,M,G} (208896-2097151, default 2097151): Partition 5 of type Linux and of size 400 MiB is setCommand (m for help): Partition type:p   primary (1 primary, 1 extended, 2 free)l   logical (numbered from 5)
Select (default p): Adding logical partition 6
First sector (1030144-2097151, default 1030144): Using default value 1030144
Last sector, +sectors or +size{K,M,G} (1030144-2097151, default 2097151): Using default value 2097151
Partition 6 of type Linux and of size 521 MiB is setCommand (m for help):
Disk /dev/sdb: 1073 MB, 1073741824 bytes, 2097152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x1f0c4dd0Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848     2097151      945152    5  Extended
/dev/sdb5          208896     1028095      409600   83  Linux
/dev/sdb6         1030144     2097151      533504   83  LinuxCommand (m for help): The partition table has been altered!Calling ioctl() to re-read partition table.WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.

​ 从结果看所有的分区已经分好了。

8.2 partprobe:更新内核的硬盘分区表信息

8.2.1 命令详解

【命令星级】 ★★★★☆

【功能说明】

​ partprobe命令用于在硬盘分区发生改变时,更新Linux内核中的磁盘分区表数据。有时在使用fdisk、part命令对硬盘进行分区后,会发现找不到新分区,此时需要重启系统才能使修改生效,但使用partprobe可以不重启系统就让修改的分区表生效。

【语法格式】

partprobe [option]
partprobe [选项]

​ **说明:**在partprobe命令及后面的选项里,每个元素之间都至少要有一个空格。

【选项说明】

【选项说明】

​ 表8-3针对该命令的参数选项进行了说明。

​ 表8-3 partprobe命令的参数选项及说明

8.2.2 使用范例

​ 范例8-4:更新分区表信息。

[root@centos7 ~]# partprobe /dev/sdb    #最好加上具体的磁盘,否则可能会报错,很多人这块直接执行最后导致报错,只好重启系统。

L49.linux命令每日一练 -- 第八章 Linux磁盘与文件系统管理命令 -- fdisk和partprobe相关推荐

  1. L52.linux命令每日一练 -- 第八章 Linux磁盘与文件系统管理命令 -- resize2fs和fsck

    8.7 resize2fs:调整ext2/ext3/ext4文件系统大小 8.7.1 命令详解 ​ [命令星级] ★★★★☆ ​ [功能说明] ​ resize2fs命令用于扩容或收集未挂载的ext2 ...

  2. L60.linux命令每日一练 -- 第九章 Linux进程管理命令 -- top和nice

    9.7 top:实时显示系统中各个进程的资源占有状况 9.7.1 命令详解 ​ [命令星级] ★★★★★ ​ [功能说明] ​ top命令用于实时地对系统处理器状态进行监控,它能够实时地显示系统中各个 ...

  3. L29.linux命令每日一练 -- 第四章 文本处理三剑客 -- sed命令

    4.2 sed:流编辑器 4.2.1 sed命令语法及参数说明 ​ [命令星级] ★★★★★ ​ [功能说明] ​ sed是Stream Editor(字符流编辑器)的缩写,简称流编辑器.它是Linu ...

  4. L63.linux命令每日一练 -- 第九章 Linux进程管理命令 -- runlevel、init和service

    9.13 runlevel:输出当前运行级别 9.13.1 命令详解 ​ [命令星级] ★★★★★ ​ [功能说明] ​ runlevel命令用于输出当前Linux系统的运行级别. ​ [语法格式] ...

  5. L71.linux命令每日一练 -- 第十章 Linux网络管理命令 -- wget和mailq

    10.15 wget:命令行下载工具 10.15.1 命令详解 ​ [命令星级] ★★★★☆ ​ [功能说明] ​ wget命令用于从网络上下载某些资料,该命令对于能够连接到互联网的Linux系统的作 ...

  6. L67.linux命令每日一练 -- 第十章 Linux网络管理命令 -- netstat和ss

    10.7 netstat:查看网络状态 10.7.1 命令详解 ​ [命令星级] ★★★★★ ​ [功能说明] ​ netstat命令用于显示本机网络的连接状态.运行端口和路由表等信息. ​ [语法格 ...

  7. L70.linux命令每日一练 -- 第十章 Linux网络管理命令 -- nc和ssh

    10.13 nc:多功能网络工具 10.13.1 命令详解 ​ [命令星级] ★★★★☆ ​ [功能说明] ​ nc是一个简单.可靠.强大的网络工具,它可以建立TCP连接,发送UDP数据包,监听任意的 ...

  8. L58.linux命令每日一练 -- 第九章 Linux进程管理命令 -- pgrep和kill

    9.3 pgrep:查找匹配条件的进程 9.3.1 命令详解 ​ [命令星级] ★★★★☆ ​ [功能说明] ​ pgrep命令可以查找匹配条件的进程号. ​ [语法格式] pgrep [option ...

  9. L61.linux命令每日一练 -- 第九章 Linux进程管理命令 -- renice和nohup

    9.9 renice:调整运行中的进程的优先级 9.9.1 命令详解 ​ [命令星级] ★★★☆☆ ​ [功能说明] ​ nice命令常用于修改未运行的程序运行时的优先级,但是对于正在运行的进程,若想 ...

最新文章

  1. Bzoj3530: [Sdoi2014]数数
  2. PyTorch分布式训练
  3. hadoop和spark搭建记录
  4. 力扣: 231. 2的幂 【位运算】
  5. c语言数据库线程池,C语言多线程中运行线程池,在线程池中运行线程池,,传递的结构体参数值为空/NULL/0...
  6. long mode 分页_在Spring Boot中使用Spring-data-jpa实现分页查询(转)
  7. 进阶清单 | 这份码农修炼指南,助你掌控全场
  8. 机器学习系列补充:数据集准备和更正YSX包
  9. Redis(1)---五种数据结构
  10. 【Java SE】记录一次Java实验(多态,集合,泛型)
  11. POJ - 2392 朴素多重背包 + 贪心 WA与AC代码细节分析
  12. 神经网络全连接层详解
  13. 小乌龟git的安装、配置(TortoiseGit安装、配置)
  14. QTreeView实现圆角样式
  15. 《C语言程序设计》讲义
  16. 一只蒟蒻的树形DP学习笔记
  17. coj #10066新的开始(最小生成树)
  18. mysql 备库 1032_【MySQL 5.7 】从库1032 报错处理
  19. Mac OS X,下载并安装ant
  20. AutoLeaders控制组——51单片机学习笔记(蜂鸣器、AT24C02芯片)

热门文章

  1. java set 的使用方法_Java中Set的使用(转载)
  2. python定义私有变量的方法_Python类中的 私有变量和私有方法
  3. MFC中关闭窗口的几种方法
  4. flex布局各种对齐方式
  5. 印刷报价系统源码_皇家印刷术-设计系统案例研究
  6. 【opencv】你必须知道的五个基本功能
  7. 【JavaScript】隐藏显示元素(实用)
  8. 移动端 使用X5 内核 html自动播放视频
  9. Java8 stream流map方法使用
  10. 前端本地缓存知识:indexDB、localStorage、sessionStorage