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
  • Install owncloud 8 on ubuntu server 14.04
    Linux

    Install owncloud 8 on ubuntu server 14.04

    BySharad Chhetri April 26, 2015December 10, 2024

    Owncloud which is now very very famous and considered as one the best free Open Source alternate of Dropbox. The steps of installation is almost similar as we did while installing Owncloud 7. Checkout what is new in Owncloud 8. Install Owncloud 8 Before starting , let’s share our practical scenario – 1. Owncloud :…

    Read More Install owncloud 8 on ubuntu server 14.04Continue

  • Install yEd graph editor on Ubuntu
    Linux

    Install yEd graph editor on Ubuntu

    BySharad Chhetri April 25, 2015December 10, 2024

    Introduction yEd is famous free graph editor. yEd is written in Java and cross platform, it means it can be installed on most of Operating system like Windows, Unix like, Linux , Mac OS etc. It is best alternate of Dia. We can create different types of graph by using yEd, some of them are…

    Read More Install yEd graph editor on UbuntuContinue

  • 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
    Cloud Computing

    Attach security groups to existing instance with AWS cli

    BySharad Chhetri April 1, 2015June 25, 2026

    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
    Cloud Computing

    Create and Remove AWS EC2 key pair by using command line

    BySharad Chhetri March 9, 2015June 25, 2026

    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
    Cloud Computing

    How to set Name of EC2 instance by aws cli

    BySharad Chhetri March 7, 2015June 25, 2026

    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

Page navigation

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