Skip to main content

NUC5i5RYH - Barebone PC as Linux Server

After thinking of  installing VMWare ESXi on NUC5i5RYH barebone , I decided not to go ahead. This is because you need a separate system to manage (vSphere Client) to manage your lab which in my case was not helpful. I decided to go ahead and install CentOS 7 as my main OS(host) and install VMware workstation to support Windows Server (for ActiveDirectory) as guest.

I faced few issues while installing CentOS into the i5 NUC. Mainly because the CentOS Kernel & drivers are bit outdated compared to NUC. Just to document what I've done to fix them !!

Preparation 

  • Download Minimal CentOS7 from main site
  • Use "UNetbootin" to put the ISO into thumbdrive. 
  • FAT32 formatting of your USB is best suited

Installation

  • Attach bootable USB to your NUC and enter ensure your USB as primary boot.
  • Ensure you create a "root" user and password
  • Reboot and CentOS installation is straight forward. 

Network Issues

Your Wi-Fi won't be listed in your detected devices (ifconfig, iwlist etc are not installed)

NetworkManager to your rescue

NetworkManager Command Line (nmcli) is very powerful. Full details here
sudo su - # All activities in root
nmcli device show   # Shows all devices available. Only your ethernet and loop back would show
nmcli con show # Shows connections available. You won't be able to see anything initially

Installing Relevant Driver. 

(You need an extra laptop for this)
I had CentOS 7 with Kernel 3.10.x . NUC5i5RYH uses Wireless 7265 ,but the downloads are meant for Kernel 3.13+ onwards. So I had to download multiple drivers thus facing lot of hit & miss. I can confirm, the driver that works is  "iwlwifi-7265-ucode-25.228.9.0.tgz" though it's for a higher Kernel. Extract just the "iwlwifi-7265-9.ucode" file from the archive and copy it into usb drive and copy it to /lib/firmware/ of your CentOS installation.  (USB mounting tips at this link). Now REBOOT your NUC

Verify if your Network is detected. 

sudo su - # All activities in root
nmcli device show   # Shows all devices available. Now it show a wireless device (eg wls2p0)
nmcli con show # Connections won't be still available
if no devices are shown, something went wrong. Need to debug by running "dmesg | tail -100" to see if there are any errors when OS rebooted.

Add your interface

Now try adding a new connection to your interface using networkmanager cli (wls2p0 is my ifname shown when I ran  "nmcli device show") . More Details in this link

nmcli con add con-name wls2p0 ifname wls2p0 type wifi ssid MyInternetConnectionName ip4 192.168.100.101/24 gw4 192.168.100.1
service NetworkManager restart# This should restart network
You should be now able to see ifcfg-wls2p0 file in /etc/sysconfig/network-scripts/  location with above details and will get a MAC address automatically.

Adding wifi plugin to NetworkManager

Unfortunately "NetworkManager" itself doesn't contain wifi setup plugins. You need to download "NetworkManager-wifi" rpm offline package separately into your laptop. Copy this again using usb into your NUC.   Install it using  rpm -Uvh <rpmfile> 
Verify if the package is installed
rpm -qa | grep NetworkManager
service NetworkManager restart
service NetworkManager status

Connect your Wifi

nmcli device wifi connect <MyInternetConnectionName> password <myPassword>

Verify by running 
curl -k https://www.google.com 
Atlast, it should all work now !!

Now you could install GUI by
sudo yum groups install "GNOME Desktop"



Popular posts from this blog

Create your own Passport Photo using GIMP

This tutorial is for semi-techies who knows a bit of GIMP (image editing).   This tutorial is for UK style passport photo ( 45mm x 35 mm ) which is widely used in UK, Australia, New Zealand, India etc.  This is a quick and easy process and one can create Passport photos at home If you are non-technical, use this link   .  If you want to create United States (USA) Passport photo or Overseas Citizen of India (OCI) photo, please follow this link How to Make your own Passport Photo - Prerequisite GIMP - One of the best image editing tools and its completely Free USB stick or any memory device to store and take to nearby shop A quality Digital camera Local Shops where you can print. Normally it costs (£0.15 or 25 US cents) to print 8 photos Steps (Video Tutorial attached blow of this page) Ask one of your colleague to take a photo  of you with a light background. Further details of how to take a photo  yourself       Take multiple pictures so that you can choose from th

Syslog Standards: A simple Comparison between RFC3164 & RFC5424

Syslog Standards: A simple Comparison between RFC3164 (old format) & RFC5424 (new format) Though syslog standards have been for quite long time, lot of people still doesn't understand the formats in detail. The original standard document is quite lengthy to read and purpose of this article is to explain with examples Some of things you might need to understand The RFC standards can be used in any syslog daemon (syslog-ng, rsyslog etc.) Always try to capture the data in these standards. Especially when you have log aggregation like Splunk or Elastic, these templates are built-in which makes your life simple. Syslog can work with both UDP & TCP  Link to the documents the original BSD format ( RFC3164 ) the “new” format ( RFC5424 ) RFC3164 (the old format) RFC3164 originated from combining multiple implementations (Year 2001)

VS Code & Portable GIT shell integration in Windows

Visual Studio Code & GIT Portable shell Integration Summary Many of your corporate laptop cannot install programs and it is quite good to have them as portable executables. Here we find a way to have Portable VS Code and Portable GIT and integrate the GIT shell into VS Code Pre-Reqs VS Code (Install version or Portable ) GIT portable Steps Create a directory in your Windows device (eg:  C:\installables\ ) Unpack GIT portable into the above directory (eg it becomes: C:\installables\PortableGit ) Now unpack Visual Studio (VS) Code and run it. The default shell would be windows based Update User or Workspace settings of VS Code (ShortCut is:  Control+Shift+p ) Update the settings with following setting { "workbench.colorTheme": "Default Dark+", "git.ignoreMissingGitWarning": true, "git.enabled": true, "git.path": "C:\\installables\\PortableGit\\bin\\git.exe", "terminal.integrated.shell.windows"