Prerequisites:
Ubuntu Installation Media: Download Ubuntu 22.04 LTS (Jammy Jellyfish) or a newer version (e.g., 24.04 LTS). *Older versions (like 20.04) may lack drivers for the Intel i226-V 2.5G NICs.*
Bootable USB Drive: Create a bootable USB stick using tools like Rufus (Windows), balenaEtcher, or the dd command (Linux/Mac).
Peripherals: USB Keyboard, USB Mouse, Monitor (VGA cable required).
Storage: SATA SSD/HDD or mSATA SSD for the OS.
Network: Ethernet cable (for post-install updates/drivers).
Step-by-Step Installation
Prepare the BIOS/UEFI:
Power on the system and press Del, F2, or F10 (check boot screen prompt) to enter AMI UEFI BIOS.
Navigate to the Boot section.
Disable Secure Boot. (Ubuntu generally supports Secure Boot, but disabling it can prevent rare issues during installation).
Ensure UEFI Boot Mode is enabled (recommended over Legacy/CSM).
Set your USB Drive as the First Boot Device.
Save changes and exit (F10 usually).
Boot from USB:
Insert the Ubuntu bootable USB drive into one of the USB 3.0 ports.
Power cycle or restart the system. It should now boot from the USB drive.
Select "Try or Install Ubuntu" at the GRUB menu.
Start Ubuntu Installer:
Once the live desktop loads, double-click the "Install Ubuntu" icon.
Select your Language and click "Continue".
Keyboard Layout:
Choose your keyboard layout. Test it in the box. Click "Continue".
Network & Updates (Optional but Recommended):
Connect an Ethernet cable to one of the Intel i226-V 2.5G ports. The installer should detect the network automatically.
Check both boxes:
"Install third-party software for graphics and Wi-Fi hardware, Flash, MP3 and other media" (Provides proprietary drivers/firmware).
"Download updates while installing Ubuntu" (Ensures latest fixes/drivers are included). Highly recommended for NIC stability.
Click "Continue".
Installation Type (Partitioning):
Critical Step: Choose how to install Ubuntu.
Option A (Simplest): Select "Erase disk and install Ubuntu" if using a dedicated drive. WARNING: This erases ALL data on the selected disk!
Option B (Manual): Select "Something else" for custom partitioning (e.g., separate /, /home, swap). Click "Continue".
Identify your target SATA or mSATA drive (e.g., /dev/sda or /dev/sdb).
Create Partitions: (Example for UEFI)
EFI System Partition: Size 512MB (or 1GB), Type EFI System Partition, Format FAT32, Mount point /boot/efi.
Swap: Size >= RAM size (e.g., 16GB), Type swap area.
Root (/): Size >= 30GB (recommend 50-100GB+), Type Ext4 journaling file system, Mount point /.
Home (/home): Use remaining space, Type Ext4, Mount point /home. (Optional but recommended).
Device for boot loader installation: Select the EFI System Partition you created (e.g., /dev/sda1). Crucial for UEFI booting.
Double-check selections and click "Install Now". Confirm changes if prompted.
Location:
Select your time zone by clicking on the map or entering a city. Click "Continue".
User Setup:
Enter your Name.
Enter a Computer Name (e.g., industrial-server).
Choose a Username.
Set a strong Password.
Choose "Require my password to log in" or "Log in automatically".
Click "Continue".
Installation Progress:
Ubuntu will now install. This takes some time. Keep the system powered and connected to Ethernet.
You may see prompts about slides describing Ubuntu features.
Installation Complete:
When finished, you will see a message: "Installation Complete". Click "Restart Now".
Remove the USB drive when prompted and press Enter.
First Boot & Login:
The system should boot into Ubuntu from the internal drive.
Enter your password at the login screen.
Post-Installation Configuration & Verification
Apply Updates IMMEDIATELY:
Open a terminal (Ctrl+Alt+T).
Run the following commands:
bash
复制
下载
sudo apt update && sudo apt upgrade -y
sudo apt dist-upgrade -y
sudo apt autoremove -y
Reboot when prompted/after completion: sudo reboot
Verify Network Functionality:
After reboot, open a terminal.
Run: ip a or ifconfig (install with sudo apt install net-tools if needed). You should see your Ethernet interfaces (likely enpXsY, e.g., enp1s0).
Run: sudo ethtool enpXsY | grep Speed (replace enpXsY with your interface name). It should report Speed: 2500Mb/s for the i226-V ports. If speed shows 1000Mb/s or lower, see troubleshooting below.
Test internet connectivity: ping google.com
Verify Hardware:
USB Ports: Test both USB 3.0 and USB 2.0 (via header pins) ports.
SATA/mSATA: Verify all connected drives are detected in Disks utility or via lsblk / sudo fdisk -l.
VGA Output: Ensure display works correctly. Install additional graphics drivers only if necessary (Intel integrated graphics usually work well OOTB).
Troubleshooting Key Issues
Network Interfaces Not Working / Incorrect Speed (1Gbps instead of 2.5Gbps):
Cause: Older kernel lacking optimal i226-V driver.
Solution:
Ensure you installed Ubuntu 22.04 LTS or NEWER. (20.04 LTS might work with HWE kernel updates).
Run sudo apt update && sudo apt upgrade -y and reboot.
Check kernel version: uname -r. You need Kernel 5.16 or newer for reliable i226-V support. Ubuntu 22.04.4 LTS ships with 6.5.
Force 2.5G Mode (if auto-negotiation fails): Temporarily try: sudo ethtool -s enpXsY speed 2500 duplex full autoneg off (replace enpXsY). If this works, make it persistent:
Create/edit: sudo nano /etc/network/interfaces.d/10-enpXsY.cfg
Add:
text
复制
下载
allow-hotplug enpXsY
iface enpXsY inet dhcp
pre-up /sbin/ethtool -s enpXsY speed 2500 duplex full autoneg off
Save (Ctrl+O, Enter, Ctrl+X) and restart networking: sudo systemctl restart networking.service.
System Fails to Boot (GRUB/Black Screen):
Cause: UEFI/BIOS misconfiguration, Secure Boot conflict, or boot loader installation issue.
Solution:
Re-enter BIOS/UEFI (Del/F2/F10).
Double-check Boot Order (Ubuntu/HDD first).
Verify Secure Boot is OFF.
Ensure UEFI Mode is enabled (disable CSM/Legacy if present).
If problems persist, try reinstalling GRUB from a Live USB.
Storage Not Detected During Install:
Cause: Missing SATA controller driver (unlikely for Intel C236), faulty cable/drive, or BIOS setting.
Solution:
Enter BIOS/UEFI. Check SATA controller mode is set to AHCI (should be default).
Check physical SATA/mSATA connections and power.
Try a different SATA port/drive.
Optional Configuration (For Specific Use Cases)
Watchdog: Install and configure watchdog daemon: sudo apt install watchdog. Configure /etc/watchdog.conf and enable the service: sudo systemctl enable --now watchdog.
Serial Console (COM / RJ45): Configure GRUB and systemd to use a serial console for headless management. Requires specific kernel parameters and getty configuration.
GPIO: Access requires kernel drivers and userspace tools (e.g., libgpiod). Development usually needed.
Custom Network Cards: If you have a BYPASS or 4x10G SFP+ card installed, ensure the correct kernel drivers (ixgbe for X710, ixgbevf for VFs, i40e for XL710/X710, igb for i211/i210) are loaded (lsmod | grep ). Install dkms versions if necessary.
Important Notes:
Backup Important Data: Before partitioning/installing.
Kernel is Key: Using Ubuntu 22.04 LTS or newer is essential for reliable support of the Intel i226-V 2.5G Ethernet controllers.
UEFI Preferred: Use UEFI mode and an EFI System Partition for installation.
Monitor Installation: Keep the system connected to power and network during the entire installation and initial update process.
The custom manufacturing journey begins with the Inquiry phase. Here, the client initiates the process by submitting detailed customization requirements, clearly outlining their specific needs and desired product specifications.
Following the initial inquiry, the focus shifts to Requirements Confirmation. The supplier provides feasibility previews based on the client's request. This stage culminates when the client reviews and approves the final technical specifications, ensuring alignment before deeper analysis.
A critical Feasibility Analysis phase then takes place. The supplier conducts a thorough technical validation of both the design and production plan. A comprehensive risk assessment report is generated, identifying potential challenges and mitigation strategies before committing resources.
Based on the validated feasibility, the supplier presents a formal Quotation. This includes a detailed cost breakdown covering all aspects of production and a clear production timeline with key milestones, providing the client with a complete financial and scheduling overview.
Upon accepting the quotation, the client moves to Place the Order. This involves contract execution which formally defines the project scope, deliverables, and payment terms. A crucial final requirement verification (a thorough double-check) is performed to ensure all details are accurately captured before manufacturing begins.
With the contract in place, Mass Production commences. This phase involves the bulk manufacturing launch of the custom product. Rigorous quality control measures are implemented during production to maintain standards and catch issues early.
Before shipment, a mandatory Pre-Delivery Audit is conducted. This ensures all export documentation (including HS codes, commercial invoices, etc.) is complete and accurate. The declared value of the shipment is verified for customs purposes. Most importantly, a conclusive final QC inspection is performed on the finished goods to guarantee they meet all specifications and quality standards.
Finally, the Delivery & Support phase ensures the product reaches the client smoothly. The supplier handles all logistics coordination, selecting carriers and managing transport. The client is provided with real-time shipment tracking for visibility. Furthermore, post-delivery support is offered to address any immediate questions or needs after the product arrives.
This guide provides step-by-step solutions for frequent technical problems encountered with computer systems. Follow these checks methodically before seeking further technical support.
I. System Does Not Power On
1. Verify the power cable is securely plugged into both the wall outlet and the system unit.
2. Confirm the power supply unit (PSU) meets the voltage and wattage requirements specified by the motherboard.
3. Reseat the memory modules (RAM) by removing and firmly reinserting them.
4. Try replacing the memory modules with known-good ones.
5. Clear the motherboard CMOS according to the manufacturer's instructions (usually involves jumper or battery removal).
6. Remove any non-essential expansion cards (e.g., dedicated graphics, sound cards) and test if the system powers on.
II. No Display Output After Power On
1. Ensure the monitor is powered on (check its power indicator).
2. Check the power cable connection to the monitor and the system unit.
3. Verify the video cable (HDMI, DisplayPort, VGA, DVI) is securely connected to both the graphics output (on motherboard or dedicated GPU) and the monitor.
4. Adjust the monitor's brightness control; it might be set too low. Consult the monitor manual.
5. Wake the monitor if it's in "power-saving" mode (move mouse, press keyboard key).
III. BIOS Settings Not Saving
1. Check the CMOS battery voltage. If below 2.8V, replace it with a new CR2032 battery and reconfigure BIOS settings.
2. Re-enter the BIOS Setup (usually by pressing Del, F2, or F10 during boot) and ensure the system time and date are correctly set.
IV. "Bootable Device Not Found" Error
1. Ensure both the SATA/IDE data cable and power cable are securely connected to the hard drive/SSD and motherboard/PSU.
2. Test the drive in another system or use diagnostic tools to check for physical damage/failure.
3. Verify that a bootable operating system is correctly installed on the drive.
V. Blue Screen or System Freeze During Boot/OS Entry
1. Reseat memory modules and any expansion cards.
2. Remove any recently installed hardware. Uninstall associated drivers or software.
3. Try replacing the memory modules with known-good ones.
VI. Slow Operating System Boot Times
1. Use reputable hard drive diagnostic software (e.g., manufacturer tools, CrystalDiskInfo) to check the health of the primary drive (HDD/SSD).
2. Ensure the system drive (usually C:) has sufficient free disk space (recommended >15-20%).
3. Confirm the CPU cooling fan is spinning correctly and not obstructed.
VII. System Randomly Restarts
1. Confirm the CPU cooling fan is spinning correctly and CPU temperatures are within normal limits.
2. Check if the system's reset button is stuck or being accidentally pressed.
3. Perform a full system scan using updated antivirus/anti-malware software.
4. Reseat memory modules and any expansion cards.
5. Suspect insufficient power delivery. Test with a known-good power supply unit (PSU) of adequate wattage.
VIII. USB Devices Not Detected
1. If using a high-power device (e.g., external HDD), connect it to a powered USB hub or ensure its separate power adapter is used.
2. Try different USB ports on the system. Inspect ports for physical damage or debris.
3. Enter BIOS Setup and confirm USB Controller support is enabled.
Important Notes:
Safety First: Always power off the computer and disconnect the power cable before opening the case or touching internal components.
Documentation: Refer to your specific motherboard and component manuals for detailed instructions.
Warranty: Opening the case or replacing components may void warranties. Check manufacturer policies first.
Complex Issues: If problems persist after following these steps, contact qualified technical support or the hardware manufacturer.
Shenzhen Zhizhenyuan Technology Co., Ltd. specializes in the R&D and manufacturing of industrial PCs, mini PCs, and All-in-One PCs. Beyond these core products, we also source additional electronic products according to your requirements, ensuring both competitive pricing and strict quality control for all sourced items.