www.cyberciti.biz/faq/linux-how-to-delete-a-partition-with-fdisk-command/ <www.cyberciti.biz/faq/linux-how-to-delete-a-partition-with-fdisk-command/>
Creating a Partition Larger than 2TB on Linux with Parted
CentOS : Managing software RAID with mdadm
How to Make GPT Partition Table and Create Partitions with parted on Linux
However, the parted‘s interface is not that easy to use at the first try. After some struggling with parted, I finally make a partition on the new 6TB RAID 0 storage array. Here is the process.
pc ~ # parted /dev/sdc GNU Parted 2.3 Using /dev/sdc Welcome to GNU Parted! Type ‘help’ to view a list of commands. (parted) mklabel GPT Warning: The existing disk label on /dev/sdc will be destroyed and all data on this disk will be lost. Do you want to continue? Yes/No? Yes (parted) mkpart primary 2048s 100% (parted) q Information: You may need to update /etc/fstab. www.systutorials.com/46294/making-gpt-partition-table-and-creating-partitions-with-parted-on-linux/ <www.systutorials.com/46294/making-gpt-partition-table-and-creating-partitions-with-parted-on-linux/>
25 basic Linux terminal commands to remember
Network Throughput Testing with iPerf
iPerf <iperf.fr/> is a command-line tool used in diagnosing network speed issues by measuring the maximum network throughput a server can handle. It is particularly useful when experiencing network speed issues, as you can use iPerf to determine which server is unable to reach maximum throughput.
www.linode.com/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/