Skip to content
sharadchhetri
  • Home
  • ResourcesExpand
    • Artificial Intelligence
    • Devops
    • Cloud Computing
    • Database Server
    • BSD
    • Linux
    • Learn Linux
  • My Projects & WorkExpand
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • Facebook Page
  • Contact
  • Privacy Policy
  • About Me
sharadchhetri
  • How to install vim in freebsd
    BSD | Linux

    How to install vim in freebsd

    BySharad Chhetri August 13, 2013June 25, 2026

    vim is the acronym of Vi Improved . vim is text editor written by Bram Moolenaar. Vim is available in command line as well as in graphical mode. It has advanced features as compared to vi text editor which usually by default available in almost all unix like operating system. Note: Practical Tested in FreeBSD…

    Read More How to install vim in freebsdContinue

  • How to install korn shell ksh in Linux
    Linux

    How to install korn shell ksh in Linux

    BySharad Chhetri August 12, 2013June 25, 2026

    Korn shell or ksh is another Unix shell like bash,sh and csh. Korn shell was developed by David Korn at Bell Labs in the early 1980s and announced at USENIX on July 14, 1983. Many Unix based operating system like AIX,BSD etc. they already have ksh preinstalled. The AIX by default uses the ksh. To…

    Read More How to install korn shell ksh in LinuxContinue

  • Your own analytics server like google analytics with Piwik
    Linux

    Your own analytics server like google analytics with Piwik

    BySharad Chhetri August 11, 2013December 10, 2024

    Piwik is free and open source web analytics software for your websites.It helps to give insight details of your website visitors activity. Likewise google analytics it is also capable of providing the Live website visitors information. It comes with many default features,apps and plugin which enhance the Piwik as one of the best analytics software…

    Read More Your own analytics server like google analytics with PiwikContinue

  • Show visitor ip address php code
    Linux

    Show visitor ip address php code

    BySharad Chhetri August 10, 2013June 25, 2026

    In this post we will learn how to use php to get the visitor’s IP address in a webpage.This code also helps Network or system admin to know from which IP he is using currently. For eg. your company have 2 public IP from different ISP and both are in failover. The companies network is…

    Read More Show visitor ip address php codeContinue

  • How to know storage engine of mysql table
    Linux

    How to know storage engine of mysql table

    BySharad Chhetri August 10, 2013December 10, 2024

    When you are working in mysql server sometimes you need the information about what is the storage engine of table in database. Mostly we use Innodb and MyISAM but it might be the case in mysql server other storage engine can also be used. In mysql to know storage engine of mysql table,use the below…

    Read More How to know storage engine of mysql tableContinue

  • See mysql command output vertically
    Database Server

    See mysql command output vertically

    BySharad Chhetri August 10, 2013June 25, 2026

    When you work on mysql server and hit some command in mysql prompt,you get the output in horizontal way. For eg. I hit the command, select emailid from linuxtable where user = ‘sharad’; and this table has lots of fields . In that case the output looks weird. Rather than seeing the output Horizontally in…

    Read More See mysql command output verticallyContinue

  • How to set default storage engine to MyISAM to InnoDB vice versa
    Database Server

    How to set default storage engine to MyISAM to InnoDB vice versa

    BySharad Chhetri August 10, 2013June 25, 2026

    In this tutorial we will learn about how to set default storage engine to MyISAM to InnoDB or vice versa. Since the change in MySQL default storage engine as InnoDB there are many Database Servers which are still running in MyISAM. The change in Default storage engine come after MySQL 5.0 and later versions. In…

    Read More How to set default storage engine to MyISAM to InnoDB vice versaContinue

  • linux release renew dhcp assigned ip address
    Linux

    linux release renew dhcp assigned ip address

    BySharad Chhetri August 10, 2013June 25, 2026

    In this post we will read about how to release renew dhcp assigned ip address in linux. In Windows for releasing and renew of DHCP assigned IP, we use the command ipconfig /release ipconfig /renew How to release the DHCP assigned IP in linux. The below command will be applied to all interfaces which are…

    Read More linux release renew dhcp assigned ip addressContinue

  • How to check default storage engine in MySQL server
    Database Server

    How to check default storage engine in MySQL server

    BySharad Chhetri August 9, 2013June 25, 2026

    MySQL server comes with many engines,earlier MyISAM was default storage engine but from MySQL version 5.5 and later InnoDB now become a default storage engine. Yet,you should know what is the default storage engine running in mysql server. It might be possible any database admin has changed to MyISAM or INNODB as default storage engine…

    Read More How to check default storage engine in MySQL serverContinue

  • Beginners 4 basic commands of database in mysql server
    Database Server

    Beginners 4 basic commands of database in mysql server

    BySharad Chhetri August 9, 2013June 25, 2026

    Today we will learn about 4 basic commands in mysql server which are related to manage the database.These 4 commands are important for any Mysql Database administrator.The post is mainly written for beginners of MySQL database administration. All the data are saved in some database. These Databases have some name hence the basic thing is,we…

    Read More Beginners 4 basic commands of database in mysql serverContinue

  • How to install Seafile server in Debian Wheezy 7
    Linux

    How to install Seafile server in Debian Wheezy 7

    BySharad Chhetri August 8, 2013December 10, 2024

    Seafile is a syncing and collabarative tool for team. The team members can share the files among themself and can sync the file from seafile client. Seafile is based upon python django.Many people compare it with owncloud and both have almost same functionality like file sharing but owncloud has many features. For professional team, I…

    Read More How to install Seafile server in Debian Wheezy 7Continue

  • How to install owncloud in Debian Wheezy 7
    Linux

    How to install owncloud in Debian Wheezy 7

    BySharad Chhetri August 8, 2013June 25, 2026

    Installing owncloud in Debian is easy stuff. And hardly take a few minutes to install.I have posted some how to on installing owncloud in CentOS and Ubuntu as well. The details of Debian server IP Address: 10.0.0.24 OS info: Debian GNU/Linux 7 n l arch: x86_64 To install owncloud in Debian Wheezy 7, follow the…

    Read More How to install owncloud in Debian Wheezy 7Continue

  • sudo command not found Debian 7
    Linux

    sudo command not found Debian 7

    BySharad Chhetri August 7, 2013December 10, 2024

    After fresh installation of Debian 7.0 wheezy I tried to do sudo su – . But got the first error message “sudo: command not found” . As per error message it means sudo is not installed in Debian system. linux@debian:~$ sudo su – -bash: sudo: command not found linux@debian:~$ To solve this issue install sudo…

    Read More sudo command not found Debian 7Continue

  • How to know how many swap space exist in linux system
    Linux

    How to know how many swap space exist in linux system

    BySharad Chhetri August 5, 2013December 10, 2024

    How to know how many swap space exist in system When I started using linux I was curious to know from where I can get info, how many swap space exist in system. I hope this post will help the linux beginners. To know about how many swap space exist in system either it is…

    Read More How to know how many swap space exist in linux systemContinue

  • Linux enable or disable multiple swap space
    Linux

    Linux enable or disable multiple swap space

    BySharad Chhetri August 5, 2013December 10, 2024

    How to enable or disable multiple swap space in Linux In this tutorial we will learn how to disable and enable the swap space. In this post we will see different scenario.The practical has been performed in Red Hat based Linux OS and Debian based OS. Scenraio 1: How to disable and enable all swap…

    Read More Linux enable or disable multiple swap spaceContinue

Page navigation

Previous PagePrevious 1 … 26 27 28 29 30 … 39 Next PageNext

© 2026 sharadchhetri.com

  • Home
  • Resources
    • Artificial Intelligence
    • Devops
    • Cloud Computing
    • Database Server
    • BSD
    • Linux
    • Learn Linux
  • My Projects & Work
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • Facebook Page
  • Contact
  • Privacy Policy
  • About Me