Difference between revisions of "Windows pool"

From OpenZFS on OS X
Jump to: navigation, search
(Created page with "== zpool create == Creating a pool for use with Windows, it is recommended to use '''casesensitivity=insensitive''' as it has better compatibility. For example: # LIst Disk...")
 
m
(One intermediate revision by one user not shown)
Line 2: Line 2:
  
 
Creating a pool for use with Windows, it is recommended to use '''casesensitivity=insensitive''' as it has better compatibility.
 
Creating a pool for use with Windows, it is recommended to use '''casesensitivity=insensitive''' as it has better compatibility.
 +
 +
The ZFS commands need to be run as '''Administrator''' so start your favourite shell, be it ''bash'' or ''CMD.exe'' and start it with "Run as Administrator".
  
 
For example:
 
For example:
  # LIst Disks available
+
  # List Disks available
 
  wmic diskdrive list brief   
 
  wmic diskdrive list brief   
 
   
 
   
 
  # Create pool on disk 1 named tank.
 
  # Create pool on disk 1 named tank.
 
  zpool.exe create -O casesensitivity=insensitive -O compression=lz4 -O atime=off -o ashift=12 tank PHYSICALDRIVE1
 
  zpool.exe create -O casesensitivity=insensitive -O compression=lz4 -O atime=off -o ashift=12 tank PHYSICALDRIVE1

Revision as of 07:13, 19 December 2018

zpool create

Creating a pool for use with Windows, it is recommended to use casesensitivity=insensitive as it has better compatibility.

The ZFS commands need to be run as Administrator so start your favourite shell, be it bash or CMD.exe and start it with "Run as Administrator".

For example:

# List Disks available
wmic diskdrive list brief   

# Create pool on disk 1 named tank.
zpool.exe create -O casesensitivity=insensitive -O compression=lz4 -O atime=off -o ashift=12 tank PHYSICALDRIVE1