tips

Arch Linux Installation : Part 1

18 Sep 2020, 12:52pm TZ +05:30
linux, Arch
Software, tips

I am using Manjaro Linux for a while now. May be more than 2 years now. Though its Arch Linux based you still have supporting wrappers.

Having your own custom install of Linux was far dream. I had tried my luck with debian and failed to get close to Ubuntu.

This time, it was different.

Linux is running the Windows in VM now !

It was my time to take the next step.

My tryst with Arch Linux Installation

This is the Part 1 in the series. This part deals with creation of Installation Media, Internet connection and making the installer usable.

Part 1 | Part 2 | Part 3

...

Check Zephyr Version

20 Jul 2020, 10:35am TZ +05:30
Zephyr, hardware
Embedded, Software, IoT, tips

Check Zephyr Version # Find the version of Zephyr OS you are currently using. Commands # 1 2 3 4 5 # Go to your Zephyr installation Directory cd Workspace/zephyr # View the Last 2 commits in Zephyr repository git log --abbrev-commit --pretty=oneline -2 Typical Output # This shows that we are on Patch Level 99 of Version 2.3.0.

Update Zephyr SDK

20 Jul 2020, 10:35am TZ +05:30
Zephyr, hardware
Embedded, Software, IoT, tips

Update Zephyr SDK # There is an active development community behind Zephyr OS. They frequently release updates and patch. We need to keep our own SDK instance updated with these releases. Commands # 1 2 3 4 5 6 7 8 9 # Go the Workspace cd ${HOME}/Workspace # Configure the Environment source ./env.sh # West command for update # - This would force update all the repositories west update -f always This is typically the case since we configured it this way. ...