Differences

This shows you the differences between two versions of the page.

Link to this comparison view

infra:howto:manage_users [2026/06/24 11:51] – created - external edit 127.0.0.1infra:howto:manage_users [2026/07/23 07:59] (current) varinka
Line 32: Line 32:
 ===== Creating Datasets ===== ===== Creating Datasets =====
  
-TO BE WRITTEN+For each user two datasets shall be created in the storage - 10G home and 100G user - in (/prefix)/home/username and (/prefix)/user/username respectively.  
 + 
 +<code> 
 +# creation of 10G/10G/12G home 
 +zfs create -o refquota=10G  -o refreservation=10G  -o reservation=12G  znas1/abi/home/${username} 
 + 
 +# creation of 100G/100G/120G user 
 +zfs create -o refquota=100G -o refreservation=100G -o reservation=120G znas1/abi/user/${username} 
 + 
 +# Granting permissions to both 
 +chown -R ${userid}:${userid} /znas1/abi/home/${username} 
 +chown -R ${userid}:${userid} /znas1/abi/user/${username} 
 + 
 +</code> 
  
 ===== Setting Password ===== ===== Setting Password =====