9.02.2022

Artificial intelligence in Nutshell

  Artificial intelligence is a field of study in which we can program computers to make decisions for the work and attain a specific output. The field of AI research was founded at a workshop held on the campus of Dartmouth College, the USA during the summer of 1956. The study helps the computer build models for specific...

4.25.2015

Kali Linux NetHunter HID Attack ON ANDROID DEVICE

Kali has not stopped or restricted to the computers or laptops now its time to explore it on tablets. the tablets have very high collaboration and accessibility of great feature of kali Linux Linux os. Introducing KALI Nethunter. Kali Linux NetHunter. NetHunter is a Android...

Why doesn't Linux run on 16 bit architecture ?

You may think where are people using 16 bit architecture  hardware for building devices. And yes they required in embedded systems, if you want to design a Linux based interface to show up details on the electric cooker with small screen setup on it. you may go  less architecture processor (may be 16 bit). In...

4.24.2015

ubuntu 15.04 - Vivid Vervet released

In ubuntu 15.04 systemd is introduced as previously the OS starts with init (ubuntu's custom start up where it loads all boot up modules to start the system services).  systemd's model for starting processes (units) is "lazy dependency-based", i. e. a unit will only start...

4.23.2015

4.21.2015

Moderating Network speeds in LINUX

Linux gives you the scope of moderating the Speeds of the LINUX OS First we need check for our card if it is suitable attaining the sped we are about to set. Wrong settings may lead you to getting hardware problems. configuration files: /etc/sysconfig/network-scripts/ifconfig-eth0 (your NIC card) we can use 1. MII TOOL 2...

4.20.2015

Shell scripting basics

1. A shell script is a text file that typically begins with a shebang, as follows: #!/bin/bash Shebang is a line on which #! is prefixed to the interpreter path. /bin/bash is the interpreter command path for Bash. 2. Execution of scripts : $ bash script.sh # Assuming script is in the current directory. Or: $ bash...