Skip to content
sharadchhetri
  • Home
  • Linux Commands
  • ResourcesExpand
    • Learn Linux
  • My Projects & WorkExpand
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • AboutExpand
    • Privacy Policy
    • Contact
sharadchhetri
  • 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 | Tips And Tricks

    Show visitor ip address php code

    BySharad Chhetri August 10, 2013December 10, 2024

    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
    Linux | mysql

    See mysql command output vertically

    BySharad Chhetri August 10, 2013December 10, 2024

    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
    Linux | mysql

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

    BySharad Chhetri August 10, 2013December 10, 2024

    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 | Tips And Tricks

    linux release renew dhcp assigned ip address

    BySharad Chhetri August 10, 2013December 10, 2024

    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
    Linux | mysql

    How to check default storage engine in MySQL server

    BySharad Chhetri August 9, 2013December 10, 2024

    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
    mysql

    Beginners 4 basic commands of database in mysql server

    BySharad Chhetri August 9, 2013December 10, 2024

    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 | owncloud

    How to install owncloud in Debian Wheezy 7

    BySharad Chhetri August 8, 2013December 10, 2024

    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

  • Linux: Add swap without rebooting system
    Linux

    Linux: Add swap without rebooting system

    BySharad Chhetri August 5, 2013December 10, 2024

    In this tutorial we will learn how to add additional swap file in Linux after Operating System installation without rebooting the system. There is another method of adding swap space but the condition is you should have free space in Disk partition. Means additional partition is required to create swap space. Problem Statement What happen…

    Read More Linux: Add swap without rebooting systemContinue

  • Easy steps to install latest google chrome in Linux Mint 15
    Linux | LinuxMint

    Easy steps to install latest google chrome in Linux Mint 15

    BySharad Chhetri August 4, 2013December 10, 2024

    Easy steps to install latest google chrome in Linux Mint 15 In this post I am sharing the easy steps to install latest google chrome in Linux Mint 15. If you are a first time Linux user and it is also your first time using Linux Mint 15 in system this easy steps will help…

    Read More Easy steps to install latest google chrome in Linux Mint 15Continue

Page navigation

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

Tags

apache automation awk aws bash script cat CentOS centos 7 debian devops docker freebsd ftp ghost git grep jenkins kvm linux linux command MariaDB Server mysql Nagios nginx Octopress owncloud Owncloud 6 php postfix postgres python Red Hat rpm sed ssh swap tips troubleshooting ubuntu user management vagrant varnish virtualbox vsftp wordpress
  • About Me
  • Contact
  • Learn Linux
  • My Wordpress plugins
  • Privacy Policy
  • Search
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

© 2025 sharadchhetri.com

  • Home
  • Linux Commands
  • Resources
    • Learn Linux
  • My Projects & Work
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • About
    • Privacy Policy
    • Contact