1. Overview
As we all know, transferring data between two computers in an office can be very troublesome, and NAS can solve this problem very well. There are many methods to build NAS with Raspberry Pi. Previously, we have filmed tutorials using Samba and FTP to achieve NAS functionality, but these require command line configuration and are not intuitive or convenient for beginners, and the functionality of such NAS systems is not complete. Therefore, this time we will use the open-source OMV to build the NAS system!
Currently, most tutorials on building NAS with OMV available online are quite outdated, and following them may result in various issues. However, our tutorial is based on the latest official Raspberry Pi system, so you won’t encounter any problems by following along. The concise video tutorial can be found on Bilibili – Yang Kun Raspberry Pi Enthusiasts Base, and the VLOG recording the whole process is available on Bilibili – Play Pi VLOG. We welcome your support!
2. Tutorial Content
1. Install the System on Raspberry Pi
Here, we will use the latest official lightweight version of the Raspberry Pi system (the version with a desktop cannot be used!)
Remember to click on this setting, where you need to enable SSH, set the password for the pi account, and configure the WIFI username and password.
2. Set a Static IP
Open the router’s backend to view the Raspberry Pi’s IP address.
In the ssh software, enter the following command to configure the DHCP file:
Modify this position in the file according to your situation.
Then restart the Raspberry Pi.
3. Change the Source
Comment out the original ones and copy the following into it:
Continue with:
Comment out the original ones and copy the following into it:
Then remember to update:
4. Install OMV
5. Configure OMV
Enter the NAS system by typing the Raspberry Pi’s IP address in the browser.
First, set the logout time in System Settings – Workbench, as the previous one was too short.
Insert the hard disk into the Raspberry Pi and quickly wipe the disk.
Create a file system.
Mount it.
Create a shared folder.
Configure the SMB service.
Configure the general login user pi.
6. Start Using
Add a mapping directly on WINDOWS.
Then it can be used.
On MAC, just go to and connect to the server.
7. Install a Small Display for NAS
Start the I2C function of the Raspberry Pi.
Follow the steps below to enable the i2c function.
Restart the Raspberry Pi.
Install the Adafruit-SSD1306 library.
The Adafruit-SSD1306 library is a Python-based OLED library that can be used to control screens with 128*64 and 128*32 pixel SSD1306 chips.
Install the PIL library, which some image processing programs will use.
Use pip to install the Adafruit-SSD1306 library.
Then download a copy of the library containing code examples for later use.
For the screen wiring, make sure not to connect it incorrectly. The Raspberry Pi pin layout (all Raspberry Pi 40-pin layouts are the same, no need to change for different versions) is as shown below:
Connect the screen PCB pins to the corresponding GPIO pins on the Raspberry Pi as indicated.
Be careful not to reverse VCC and GND, or the screen will burn out!!!
After connecting, use the command to check whether the i2c device is recognized.
Modify the program.
Replace all the content in the file with the following:
To make stats.py run automatically on boot, we can configure it like this, so we won’t have to find the Raspberry Pi’s IP address through tools or the router!!!
Modify the /etc/rc.local file:
Add a line before exit 0:
3. Check the Effect