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
  • How to install Cassandra 2 on CentOS 7 / RHEL 7
    Linux

    How to install Cassandra 2 on CentOS 7 / RHEL 7

    BySharad Chhetri April 25, 2015December 10, 2024

    Cassandra is one the popular and robust distributed database management system. It is known for providing high availability with no single point of failure. It has one of the awesome feature that is asynchronous replication between multiple nodes without requiring master nodes. While working on Cassandra cluster, I was introduced with terms called Data Center…

    Read More How to install Cassandra 2 on CentOS 7 / RHEL 7Continue

  • sed : remove lines between two keywords [ including keywords ]
    Linux

    sed : remove lines between two keywords [ including keywords ]

    BySharad Chhetri April 16, 2015December 10, 2024

    The post explains a useful sed command trick to remove all lines between two keywords. The lines which has these keywords will also be removed. The below given command will show you the output on terminal and do not make any changes inside the file. So it is safe to use as preview output. sed…

    Read More sed : remove lines between two keywords [ including keywords ]Continue

  • Install php 5.4 on CentOS 6 with yum command
    Linux

    Install php 5.4 on CentOS 6 with yum command

    BySharad Chhetri April 4, 2015December 10, 2024

    In this post we will install php 5.4 on CentOS 6 with yum command . In available default repo of CentOS, we will get the php 5.3 version. Some PHP developers uses the PHP 5.4 version for application, hence we need PHP 5.4 to be installed on CentOS 6.x . It is known that in…

    Read More Install php 5.4 on CentOS 6 with yum commandContinue

  • Attach security groups to existing instance with AWS cli
    AWS

    Attach security groups to existing instance with AWS cli

    BySharad Chhetri April 1, 2015December 10, 2024

    In this post, we will learn command to attach security groups to existing instance with AWS cli. Working with command line is always fun. We can use the command in our scripts which also help us to do automation work. Requirement : 1. AWS cli must be installed on system 2. Access and secret keys…

    Read More Attach security groups to existing instance with AWS cliContinue

  • How to upgrade to CentOS 6.6 from CentOS 6.x series
    Linux

    How to upgrade to CentOS 6.6 from CentOS 6.x series

    BySharad Chhetri March 29, 2015December 10, 2024

    In this post we will learn, how we can upgrade to Cent 6.6 from CentOS 6.x series. By this method, you can upgrade from CentOS 6.0/6.1/6.2/6.3/6.4/6.5 . Doing regularly update is recommended practice. Whereas we have to check and consider many things.Hence, before upgrading to CentOS 6.6 we highly recommend you to read the release…

    Read More How to upgrade to CentOS 6.6 from CentOS 6.x seriesContinue

  • Enable verbose mode while gem install of package
    Linux

    Enable verbose mode while gem install of package

    BySharad Chhetri March 28, 2015December 10, 2024

    This is a quick post on how to enable verbose mode while gem install of package. When we install package with gem command, it takes time to fetch the spec file from site . We require the verbose mode to check the progress of installation. It helps in troubleshooting in case there is any problem…

    Read More Enable verbose mode while gem install of packageContinue

  • Install and configure elasticsearch cluster on Ubuntu 14.04 LTS
    Linux

    Install and configure elasticsearch cluster on Ubuntu 14.04 LTS

    BySharad Chhetri March 22, 2015December 10, 2024

    Elasticsearch is a popular search server based on Lucene. It is well developed in Java and with awesomeness of Open source, it is available to all. In this tutorial we will talk about how to install and configure elasticsearch cluster on Ubuntu 14.04 LTS. Details Of Elasticsearch Cluster Architecture Operating System : Ubuntu 14.04 LTS…

    Read More Install and configure elasticsearch cluster on Ubuntu 14.04 LTSContinue

  • Install and set Java on Ubuntu 14.04 LTS with tar ball file
    Linux

    Install and set Java on Ubuntu 14.04 LTS with tar ball file

    BySharad Chhetri March 21, 2015December 10, 2024

    In this tutorial we will learn , how to install and set Java on Ubuntu 14.04 LTS with tar ball. Currently on Oracle official site the .deb package is not available. We will first download the JDK tar package and then simply set the environment. Steps to set Java environment is same with Debian, Ubuntu,…

    Read More Install and set Java on Ubuntu 14.04 LTS with tar ball fileContinue

  • vi and vim editor
    Linux

    2 Methods to remove CONTROL-M characters from a file in Linux/Unix

    BySharad Chhetri March 20, 2015December 18, 2024

    Whenever we transfer the files from Windows to Linux / Unix system generally it has CONTROL-M character inside. Which appears as ^M inside the files . To prevent this you can first copy paste the content in notepad then again copy to file in linux system. Here, notepad will help you to transfer the ASCII character.

    Read More 2 Methods to remove CONTROL-M characters from a file in Linux/UnixContinue

  • Install Maxthon cloud browser on Ubuntu
    Linux

    Install Maxthon cloud browser on Ubuntu

    BySharad Chhetri March 15, 2015December 10, 2024

    Learn how to Install Maxthon cloud browser on Ubuntu. It is very easy to install. Browser like Firefox, google Chrome, Opera this is also another Web browser.

    Read More Install Maxthon cloud browser on UbuntuContinue

  • bash scripting : Prompt user yes / no for confirmation
    Linux

    bash scripting : Prompt user yes / no for confirmation

    BySharad Chhetri March 13, 2015December 10, 2024

    In this tutorial we will learn simple bash script to prompt user yes / no for confirmation. It means when user run the script, it will first ask user to confirm by typing yes or no. Once user confirm it take appropriate action. Whereas in case, the user type apart of yes/no , it will…

    Read More bash scripting : Prompt user yes / no for confirmationContinue

  • Create and Remove AWS EC2 key pair by using command line
    AWS

    Create and Remove AWS EC2 key pair by using command line

    BySharad Chhetri March 9, 2015December 10, 2024

    When we launch a new EC2 instance in AWS Cloud , to access the server we need the ssh keys. In EC2 instances password are not set , we have to use ssh key to get access whereas keys are based on public–key cryptography. Here, we are quickly going through with creating/removing/listing the ssh keys…

    Read More Create and Remove AWS EC2 key pair by using command lineContinue

  • How to set Name of EC2 instance by aws cli
    AWS

    How to set Name of EC2 instance by aws cli

    BySharad Chhetri March 7, 2015December 10, 2024

    Today, we are sharing a quick tip on AWS cloud computing. We will learn how to set Name of EC2 instance by aws cli. This task you can also do through AWS console dashboard but as a System Administrator it is good practice to use command line. At present AWS is top Cloud Computing provider….

    Read More How to set Name of EC2 instance by aws cliContinue

  • Google Authenticator Apps
    Linux

    Google Authenticator Apps

    BySharad Chhetri March 5, 2015December 10, 2024

    We have recently wrote a post on Protect ssh with Google Authenticator on Ubuntu 14.04 LTS . After writing the post, we were determined to share info on the Google Authenticator Apps for Linux / Windows / Smart Phones / Web Browsers. Google Authenticator apps is used for generating codes even you are not connected…

    Read More Google Authenticator AppsContinue

  • Protect ssh with Google Authenticator on Ubuntu 14.04 LTS
    Linux

    Protect ssh with Google Authenticator on Ubuntu 14.04 LTS

    BySharad Chhetri March 1, 2015December 10, 2024

    The tutorial is about how we can protect ssh with Google Authenticator on Ubuntu 14.04 LTS server . Google authenticator is a security application which implements time based one time password (TOTP) security tokens. It is often also called as “Two steps verification” . The server in which Google Authenticator has been setup , to…

    Read More Protect ssh with Google Authenticator on Ubuntu 14.04 LTSContinue

Page navigation

Previous PagePrevious 1 … 6 7 8 9 10 … 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