<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>enbiso blog</title>
    <link>https://blog.enbiso.com/</link>
    <description>Recent content on enbiso blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <managingEditor>faraj@enbiso.com (Faraj Farook)</managingEditor>
    <webMaster>faraj@enbiso.com (Faraj Farook)</webMaster>
    <lastBuildDate>Tue, 27 Oct 2020 00:00:00 +0000</lastBuildDate>
    
	<atom:link href="https://blog.enbiso.com/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Mount NFS on Debian 10 Linux in 4 Steps</title>
      <link>https://blog.enbiso.com/post/mount-nfs-on-debian/</link>
      <pubDate>Tue, 27 Oct 2020 00:00:00 +0000</pubDate>
      <author>faraj@enbiso.com (Faraj Farook)</author>
      <guid>https://blog.enbiso.com/post/mount-nfs-on-debian/</guid>
      <description>1. Install required packages sudo apt update sudo apt install nfs-common  2. Test if you can mount (optional) sudo mount -t nfs4 &amp;lt;nfs server&#39;s IP&amp;gt;:&amp;lt;remote path&amp;gt; &amp;lt;local path to be mounted&amp;gt;
So in our example, we need to mount /media/nas from nfs server 192.168.0.100 to local folder /mnt/nas
sudo mount -t nfs4 192.168.0.100:/media/nas /mnt/nas  3. Add mount entry to /etc/fstab for permenant solution Lets start editing the file /etc/fstab and add the following line</description>
    </item>
    
    <item>
      <title>Setup NFS Server in Debian 10 Linux in 3 Steps</title>
      <link>https://blog.enbiso.com/post/setup-nfs-server-debian/</link>
      <pubDate>Tue, 27 Oct 2020 00:00:00 +0000</pubDate>
      <author>faraj@enbiso.com (Faraj Farook)</author>
      <guid>https://blog.enbiso.com/post/setup-nfs-server-debian/</guid>
      <description>1. Install required packages sudo apt update sudo apt install nfs-kernel-server  2. Add shared locations in /etc/exports Lets start editing the file /etc/exports and add the following line
&amp;lt;location to share&amp;gt; &amp;lt;host which consumes&amp;gt;(&amp;lt;sharing options&amp;gt;)
For example in my case, I want to share /media/nas to any host 0.0.0.0/0 with read write access rw. You can find further information about options at the end of this post.
... # /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check) # /media/nas 0.</description>
    </item>
    
    <item>
      <title>Angular - NaNbut they point to different modules</title>
      <link>https://blog.enbiso.com/post/angular-nanbut-they-point-to-different-modules/</link>
      <pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
      <author>faraj@enbiso.com (Faraj Farook)</author>
      <guid>https://blog.enbiso.com/post/angular-nanbut-they-point-to-different-modules/</guid>
      <description>TD;LR Navigate back one level when you LoadChildren
Detail reading I had two submodules with the same path ./app/apps.module#AppsModule in two different modules.
|- Storage | |- storage.module.ts | |- apps | |- apps.module.ts |- Cuckoo | |- cuckoo.module.ts | |- apps | |- apps.module.ts  In cuckoo.module.ts &amp;amp; storage.module.ts I had the following routes
const routes: Routes = [ { path: &#39;apps&#39;, loadChildren: &amp;quot;./apps/apps.module#AppsModule&amp;quot; }, ];  Due to a known issue in angular angular/angular-cli#10128, I couldn&amp;rsquo;t get this dynamically loaded using LoadChildren.</description>
    </item>
    
    <item>
      <title>Enable Deep Sleep in ESP-01</title>
      <link>https://blog.enbiso.com/post/esp-01-deep-sleep/</link>
      <pubDate>Mon, 13 Aug 2018 00:00:00 +0000</pubDate>
      <author>faraj@enbiso.com (Faraj Farook)</author>
      <guid>https://blog.enbiso.com/post/esp-01-deep-sleep/</guid>
      <description>TD;LR Connect XPD_DCDC to RESET.
Detail reading ESP-01 and ESP0-01s are both miniature and cheap IOT modules which has a full TCP layer powered by ESP8266 chip with inbuilt Wifi. Without a doubt this chip consumes alot of power. Unless you got plenty of spare batteries to change at least twice a day, with this chip it&amp;rsquo;s nearlly impossible to make a module which can be powered by batteries.</description>
    </item>
    
  </channel>
</rss>