Debian As Router

In this tutorial , we will discuss how we can make our debian machine as a router, provided our machine has alteast two network interfaces. We will demonstrate this using virtual machine.  create a virtual machine setup two network interfaces on it. one as bridged adapter---for accessing working network one as internal network--for our local… Continue reading Debian As Router

Laravel With Debian Stretch

Laravel Workshop Introduction Early days of dynamic web,writing web application looked alot of different than it look today. Developers need to write both business components and general purpose components like user authentication,input validation,database access and templating But today alot of application development frameworks and thousands of components and libraries easily available. The problem is by… Continue reading Laravel With Debian Stretch

LDAP & NFS Client Configuration

  This post will be based on the server setup made from the previous two post and here we will see how we can setup a client machine to use both LDAP and NFS . install required libraries apt-get install libnss-ldap libpam-ldap nscd ldap-utils configure the appropriate files Delete use_authtok in /etc/pam.d/common-password Add ldap to… Continue reading LDAP & NFS Client Configuration

Configuring NFS and Incorporating it with NethServer

  In this post we will see how  we can configure NFS in centos and incorporating it with NethServer. install nfs libraries yum install nfs-utils nfs-utils-lib chkconfig nfs on service rpcbind start service nfs start Export the directories to be shared. /home 192.168.1.0/24(rw,sync,no_root_squash,no_subtree_check) exportfs -a Attach it with the nethserver config set nfs service status… Continue reading Configuring NFS and Incorporating it with NethServer

NethServer with Ldap

  In this post , we will see how a ldap server can be configured in nethserver. step1:Installing centos create a bootable disk of nethserver after booting into the disk with nethserver, select the option with nethserver interactive install. give appropriate parameters in the os installation procedure after finishing nethserver installation , reboot the machine.… Continue reading NethServer with Ldap

Modern Trends In Database Technology

New Trends In Database Technology Over the last few years we have seen the rise of two new types of databases, known as NoSQL & NewSQL databases, that are challenging the dominance of relational databases. Relational Database Management Systems (RDBMSs) have dominated the software industry for a long time providing mechanisms to store data persistently, concurrency… Continue reading Modern Trends In Database Technology

Canvas Installation On Ubuntu 14.04

Canvas Installation on Ubuntu 14.04 This is how I installed Canvas On a Fresh Ubuntu 14.04 Installation. This is guide is 80% copy of the official documentation on Canvas LMS Production Start. Errors I Encountered During the Installation is added.   step 1: Install the Database sudo apt-get update sudo apt-get install postgresql step2:creating a… Continue reading Canvas Installation On Ubuntu 14.04

Blender

Blender is a professional free and open-source 3D computer graphics software product. Default objects on the Screen A 3D cube A camera A Light Source Basic Navigation Mouse is necessary for using blender. So Please try using mouse if you are using blender. Mouse roll--zooming in and out of the viewport Ctrl + roll-----moving left… Continue reading Blender

Latex-Tutorial

Basic latex tutorial install ----apt-get install latexlive-full using ----create a tex document( with extension .tex)  in any editor and compile it to see the output. each document have a preamble section and document section syntax \command{option} eg. \documentclass{article} commands begin {document} and end {document}---document part begin{environment} to start a new editor settings environment.usually has a… Continue reading Latex-Tutorial