1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| # fdisk /dev/sdf 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 0x9ec0a047. Command (m for help): g Building a new GPT disklabel (GUID: 31D328DD-E9A0-4306-9C99-8D42F7BA8008) Command (m for help): n Partition number (1-128, default 1): First sector (2048-503316446, default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-503316446, default 503316446): +20G Created partition 1 Command (m for help): n Partition number (2-128, default 2): First sector (41945088-503316446, default 41945088): Last sector, +sectors or +size{K,M,G,T,P} (41945088-503316446, default 503316446): +20G Created partition 2 Command (m for help): n Partition number (3-128, default 3): First sector (83888128-503316446, default 83888128): Last sector, +sectors or +size{K,M,G,T,P} (83888128-503316446, default 503316446): +20G Created partition 3 Command (m for help): n Partition number (4-128, default 4): First sector (125831168-503316446, default 125831168): Last sector, +sectors or +size{K,M,G,T,P} (125831168-503316446, default 503316446): +20G Created partition 4 Command (m for help): p Disk /dev/sdf: 257.7 GB, 257698037760 bytes, 503316480 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: gpt # Start End Size Type Name 1 2048 41945087 20G Linux filesyste 2 41945088 83888127 20G Linux filesyste 3 83888128 125831167 20G Linux filesyste 4 125831168 167774207 20G Linux filesyste Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.
|