nas:build_a_linux_nas
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
nas:build_a_linux_nas [2021/09/25 15:49] – peter | nas:build_a_linux_nas [2021/09/25 21:38] (current) – peter | ||
---|---|---|---|
Line 6: | Line 6: | ||
- [[NAS:Build a Linux NAS:Add additional software|Add additional software]] | - [[NAS:Build a Linux NAS:Add additional software|Add additional software]] | ||
- [[NAS:Build a Linux NAS:Prepare the RAID Disks|Prepare the RAID Disks]] | - [[NAS:Build a Linux NAS:Prepare the RAID Disks|Prepare the RAID Disks]] | ||
- | + | - [[NAS:Build a Linux NAS:Create a Software RAID Array|Create a Software RAID Array]] | |
- | + | - [[NAS:Build a Linux NAS:Create a Filesystem|Create a Filesystem]] | |
+ | - [[NAS:Build a Linux NAS:Mount the RAID Array|Mount the RAID Array]] | ||
+ | - [[NAS:Build a Linux NAS:Create a Samba Share|Create a Samba Share]] | ||
+ | - [[NAS:Build a Linux NAS:Data Scrubing|Data Scrubing]] | ||
+ | - [[NAS:Build a Linux NAS:Power Consumption|Power Consumption]] | ||
+ | - [[NAS:Build a Linux NAS:Tune the System|Tune the System]] | ||
+ | - [[NAS:Build a Linux NAS: | ||
+ | - [[NAS:Build a Linux NAS:Monitor the System|Monitor the System]] | ||
+ | - [[NAS:Build a Linux NAS:Support recovering from a faulty disk|Support recovering from a faulty disk]] | ||
---- | ---- | ||
- | ===== Determine the available disks ===== | + | ===== Resources |
- | + | ||
- | <code bash> | + | |
- | lsblk | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | NAME | + | |
- | sda 8:0 0 232.9G | + | |
- | ├─sda1 | + | |
- | ├─sda2 | + | |
- | ├─sda3 | + | |
- | ├─sda4 | + | |
- | sdb 8:32 | + | |
- | sdc 8:48 | + | |
- | sdd 8:64 | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * **sda**: | + | |
- | * **sdb**: | + | |
- | * **sdc**: | + | |
- | * **sdd**: | + | |
- | + | ||
- | The free disks do not have any partitions yet and will be included into a RAID. | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Initialize the free disks ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo fdisk /dev/sdb | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Welcome to fdisk (util-linux 2.36.1). | + | |
- | 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. | + | |
- | The size of this disk is 14.6 TiB (16000900661248 bytes). DOS partition table format cannot be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT). | + | |
- | + | ||
- | Created a new DOS disklabel with disk identifier 0xc778227a. | + | |
- | + | ||
- | Command (m for help): | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Create a GPT Partition ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): g | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Created a new GPT disklabel (GUID: 6D811672-A5FE-BA4F-8F79-D17E0285C5E1). | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * GPT supports much larger disks. | + | |
- | * GPT allows for a nearly unlimited number of partitions. | + | |
- | * GPT also stores cyclic redundancy check (CRC) values to check that its data is intact. | + | |
- | * If the data is corrupted, GPT can notice the problem and attempt to recover the damaged data from another location on the disk. | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Create a Linux RAID Partition ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): n | + | |
- | Partition number (1-128, default 1): | + | |
- | First sector (2048-31251759070, | + | |
- | Last sector, +/-sectors or +/ | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Created a new partition 1 of type 'Linux filesystem' | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** Just taking the default values uses the entire disk. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Print the Partition ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): p | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Disk /dev/sdb: 14.55 TiB, 16000900661248 bytes, 31251759104 sectors | + | |
- | Disk model: ST16000NM001G-2K | + | |
- | Units: sectors of 1 * 512 = 512 bytes | + | |
- | Sector size (logical/ | + | |
- | I/O size (minimum/ | + | |
- | Disklabel type: gpt | + | |
- | Disk identifier: 6D811672-A5FE-BA4F-8F79-D17E0285C5E1 | + | |
- | + | ||
- | Device | + | |
- | / | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** Just taking the default values uses the entire disk. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Change the Partition Type ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): t | + | |
- | Selected partition 1 | + | |
- | Partition type or alias (type L to list all): 29 | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Changed type of partition 'Linux filesystem' | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** The type is changed to Linux RAID, which is type 29. | + | |
- | + | ||
- | + | ||
- | </ | + | |
- | + | ||
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Print the Partition again ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): p | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Disk /dev/sdd: 14.55 TiB, 16000900661248 bytes, 31251759104 sectors | + | |
- | Disk model: ST16000NM001G-2K | + | |
- | Units: sectors of 1 * 512 = 512 bytes | + | |
- | Sector size (logical/ | + | |
- | I/O size (minimum/ | + | |
- | Disklabel type: gpt | + | |
- | Disk identifier: EAA2F832-9810-AA45-9DDB-8ED531C20139 | + | |
- | + | ||
- | Device | + | |
- | / | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** This shows the Type has been changed to **Linux RAID**. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Write the Partition Table ==== | + | |
- | + | ||
- | <code bash> | + | |
- | Command (m for help): w | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | The partition table has been altered. | + | |
- | Calling ioctl() to re-read partition table. | + | |
- | Syncing disks.</ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Partition other Disks ===== | + | |
- | + | ||
- | Repeat the above instructions for the other free disks. | + | |
- | + | ||
- | ---- | + | |
- | ===== Check the available disks again ===== | + | |
- | + | ||
- | <code bash> | + | |
- | lsblk | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | NAME | + | |
- | sda 8:0 0 232.9G | + | |
- | ├─sda1 | + | |
- | ├─sda2 | + | |
- | ├─sda3 | + | |
- | ├─sda4 | + | |
- | sdb 8:32 | + | |
- | ├─sdb1 | + | |
- | sdc 8:48 | + | |
- | ├─sdc1 | + | |
- | sdd 8:64 | + | |
- | ├─sdd1 | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * At this point, these disks can be tied together as a RAID array. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Create a Software RAID Array ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo mdadm --create --verbose /dev/md0 --level=5 --raid-devices=3 /dev/sdb1 /dev/sdc1 /dev/sdd1 | + | |
- | + | ||
- | or | + | |
- | + | ||
- | sudo mdadm --create --verbose /dev/md0 --level=5 --raid-devices=3 --spare-devices=1 / | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * This device represents the RAID 5 of /dev/sdb1, /dev/sdc1 and / | + | |
- | * Obviously other RAID types could be used instead. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Ensure the RIAD Array is reassembled automatically each time the system boots ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo mdadm --detail --scan | sudo tee -a / | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * In the background, mdadm will sync the data of these disks. | + | |
- | * This can take a very long time as it requires reading and writing a lot of data depending on the size of the disks. | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Check the RAID Status ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo mdadm --detail /dev/md0 | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Create a Filesystem ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo mkfs.ext4 /dev/md0 | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Mount the Array ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo mkdir /mnt/nas | + | |
- | sudo mount /dev/md0 /mnt/nas | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Check the Mount ===== | + | |
- | + | ||
- | <code bash> | + | |
- | lsblk | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | NAME | + | |
- | sda 8:0 0 232.9G | + | |
- | ├─sda1 | + | |
- | ├─sda2 | + | |
- | ├─sda3 | + | |
- | ├─sda4 | + | |
- | sdb 8:32 | + | |
- | ├─md0 | + | |
- | sdc 8:48 | + | |
- | ├─md0 | + | |
- | sdd 8:64 | + | |
- | ├─md0 | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Test writing to the mounted array ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo touch / | + | |
- | ls -al /mnt/nas/ | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | total 24 | + | |
- | drwxr-xr-x 3 root root 4096 Feb 14 11:19 . | + | |
- | drwxr-xr-x 4 root root 4096 Feb 14 11:19 .. | + | |
- | drwx------ 2 root root 16384 Feb 14 11:19 lost+found | + | |
- | -rw-r--r-- 1 root root 0 Feb 14 11:19 test | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Ensure the array always get mounted on boot ===== | + | |
- | + | ||
- | <code bash> | + | |
- | echo '/ | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | /dev/md0 /mnt/nas ext4 defaults, | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Create Samba Share ===== | + | |
- | + | ||
- | Save a backup of the default Samba Config. | + | |
- | + | ||
- | <code bash> | + | |
- | sudo cp / | + | |
- | </ | + | |
- | + | ||
- | Now edit the Samba Config file, **/ | + | |
- | + | ||
- | <file bash / | + | |
- | [global] | + | |
- | workgroup=WORKGROUP | + | |
- | server min protocol = SMB2 | + | |
- | server max protocol = SMB3 | + | |
- | server string = NAS | + | |
- | log file = / | + | |
- | + | ||
- | [data] | + | |
- | path = / | + | |
- | available = yes | + | |
- | valid users = peter | + | |
- | read only = no | + | |
- | browseable = yes | + | |
- | writable = yes | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Create a Samba user ===== | + | |
- | + | ||
- | <code bash> | + | |
- | sudo smbpasswd -a peter | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Added user peter. | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | ===== Test Access to the Share ===== | + | http:// |
- | Within a Web Browser, enter | + | https:// |
- | <code bash> | + | https://h3x.no/2011/07/09/tuning-ubuntu-mdadm-raid56 |
- | //192.168.1.5/data | + | |
- | </code> | + | |
- | <WRAP info> | + | https:// |
- | **NOTE:** | + | |
- | * **192.168.1.5**: The IP Address of the NAS. | + | https://www.linuxquestions.org/ |
- | * Obviously use whatever IP address that device has. | + | |
- | * **data**: | + | |
- | </WRAP> | + | |
nas/build_a_linux_nas.1632584966.txt.gz · Last modified: 2021/09/25 15:49 by peter