From dfb24a5e72db97743eb203aaf61e0fadacaed3eb Mon Sep 17 00:00:00 2001 From: Ian Date: Sat, 16 Feb 2019 21:50:02 +0000 Subject: [PATCH] Added newfs example to 'Adding a disk' section --- docs/handbook/UnixBasics/index.mdwn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/handbook/UnixBasics/index.mdwn b/docs/handbook/UnixBasics/index.mdwn index c85f7c4a..f6db1948 100644 --- a/docs/handbook/UnixBasics/index.mdwn +++ b/docs/handbook/UnixBasics/index.mdwn @@ -653,6 +653,10 @@ Edit label to add partitions as needed: # disklabel -e da6s1 +Once you have added your partitions you must use newfs(8) (for UFS), newfs_hammer(8) or newfs_hammer2(8) to construct the chosen filesystem in the partition: + + # newfs /dev/da6s1 + ## Processes DragonFly is a multi-tasking operating system. This means that it seems as though more than one program is running at once. Each program running at any one time is called a ***process***. Every command you run will start at least one new process, and there are a number of system processes that run all the time, keeping the system functional. -- 2.41.0