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
  • cron job not working : troubleshooting steps
    Linux

    cron job not working : troubleshooting steps

    BySharad Chhetri November 5, 2014December 10, 2024

    In this post,I am sharing the troubleshooting steps for cron job problem. You may have seen many times, the cron job stopped working suddenly or not working on first instance. As a Linux System Engineer,I also faced this problem many times.The reasons are many and we are sharing few them which generally occurs. What is…

    Read More cron job not working : troubleshooting stepsContinue

  • tr command to convert lines to space , tab and vertical tab
    Linux Commands

    tr command to convert lines to space , tab and vertical tab

    BySharad Chhetri October 31, 2014December 10, 2024

    In this post , we are explaining how to use tr command to convert lines or rows to space , tab , vertical tab and vertical tab. In our last post we have explained converting lines to space by using sed command. This time we will use tr command, which translate, squeeze, and/or delete characters…

    Read More tr command to convert lines to space , tab and vertical tabContinue

  • Bash : print variable value inside single and double quotes
    Linux

    Bash : print variable value inside single and double quotes

    BySharad Chhetri October 16, 2014December 10, 2024

    In this post we will learn, how to print variable value inside single and double quotes. Today I was working on some bash scripting and got this requirement. The script is working wonderfully and as expecting output was also coming. Today we will share this basic bash scripting. Explaining step by step , which gives…

    Read More Bash : print variable value inside single and double quotesContinue

  • CentOS 7 / RHEL 7 : change OpenSSH port number ( SELINUX enabled )
    SSH

    CentOS 7 / RHEL 7 : change OpenSSH port number ( SELINUX enabled )

    BySharad Chhetri October 15, 2014December 10, 2024

    The tutorial will explain about how to change default ssh port number in OpenSSH Server on CentOS 7 and RHEL 7 . We will change the SSH default port no. 22 to our desired number and we will keep SELINUX enabled. We will also add new firewalld rule with respect to new ssh port number….

    Read More CentOS 7 / RHEL 7 : change OpenSSH port number ( SELINUX enabled )Continue

  • CentOS 7 / RHEL 7 : Reset / Recover forgotten root password
    Linux

    CentOS 7 / RHEL 7 : Reset / Recover forgotten root password

    BySharad Chhetri October 11, 2014December 10, 2024

    In this post we will learn, how to reset / recover forgotten root password on CentOS 7 / RHEL 7 (Red Hat Enterprise Linux 7). On RHEL 5/6 or CentOS 5/6 series , the method of resetting forgotten root password was same. In latest RHEL 7 / CentOS 7 this time we have found some difference in steps to reset the forgotten root password.

    Read More CentOS 7 / RHEL 7 : Reset / Recover forgotten root passwordContinue

  • Unable to complete install:’unsupported configuration hda-duplex not supported in this Qemu binary’
    Linux

    Unable to complete install:’unsupported configuration hda-duplex not supported in this Qemu binary’

    BySharad Chhetri October 9, 2014December 10, 2024

    While creating first virtual machine in KVM on Ubuntu 14.04 got Error : Unable to complete install:’unsupported configuration hda-duplex not supported in this Qemu binary’. Note: It was my fresh installation of KVM on Ubuntu 14.04 LTS. Solution : Restart libvirt-bin. sudo stop libvirt-bin sudo start libvirt-bin Reopen the virt-manager. I hope the problem is…

    Read More Unable to complete install:’unsupported configuration hda-duplex not supported in this Qemu binary’Continue

  • Install KVM on Ubuntu 14.04 LTS Desktop
    Linux

    Install KVM on Ubuntu 14.04 LTS Desktop

    BySharad Chhetri October 9, 2014December 10, 2024

    KVM ( Kernel-based Virtual Machine ) is virtualisation software which is used for creating virtual machines on host system. In this post, we will share installation method of KVM on Ubuntu 14.04 LTS. We also include brief introduction of problem we have faced during installation and its solution we will also share. We recommend you…

    Read More Install KVM on Ubuntu 14.04 LTS DesktopContinue

  • CentOS 7 / RHEL 7 : Install and setup samba server ( file sharing)
    samba

    CentOS 7 / RHEL 7 : Install and setup samba server ( file sharing)

    BySharad Chhetri October 9, 2014December 10, 2024

    In this tutorial we will learn, how to install and setup samba server ( file sharing server ) on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7) . Samba server is popularly use for file and printer server and now a days it is also used as domain controller in network (like Windows…

    Read More CentOS 7 / RHEL 7 : Install and setup samba server ( file sharing)Continue

  • smbpasswd command not found on CentOS 7 and RHEL 7
    Linux Commands

    smbpasswd command not found on CentOS 7 and RHEL 7

    BySharad Chhetri October 7, 2014December 10, 2024

    While setting up the Samba Server on CentOS 7, I met with this message on termial that is ” -bash: smbpasswd: command not found “. The smbpasswd is mainly use for setting the password for user in samba server. How to get smbpasswd commad on system To get smbpasswd commad on system ,use the below…

    Read More smbpasswd command not found on CentOS 7 and RHEL 7Continue

  • semanage command not found
    Linux Commands

    Solution : semanage command not found

    BySharad Chhetri October 7, 2014December 10, 2024

    This time again I stuck with -bash: semanage: command not found on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7) . I mostly use the minimal installed CentOS/RHEL Servers. I got the same issue with semanage command not found on CentOS 6/RHEL 6 Quick Introduction: semanage semanage is SELinux Policy Management tool. Fix:…

    Read More Solution : semanage command not foundContinue

  • virtualbox guest addition video
    Linux

    Install VirtualBox Guest Additions and create videos

    BySharad Chhetri October 7, 2014December 20, 2024

    In this article we will learn how to install VirtualBix Guest Additions and create videos in VirtualBox.

    Read More Install VirtualBox Guest Additions and create videosContinue

  • How to install Redis server on CentOS 7 / RHEL 7
    Linux

    How to install Redis server on CentOS 7 / RHEL 7

    BySharad Chhetri October 4, 2014December 10, 2024

    Introduction In this tutorial we will learn, how to install Redis server on CentOS 7 / RHEL 7 . The abbreviation of Redis is “Remote Dictionary Server”. It is one the of the most popular open source, advanced key-value cache and store. Project Website: Redis Install Redis Server Follow the given below steps to install…

    Read More How to install Redis server on CentOS 7 / RHEL 7Continue

  • Install MariaDB Server 10 on CentOS 7 and RHEL 7 by using yum
    Linux

    Install MariaDB Server 10 on CentOS 7 and RHEL 7 by using yum

    BySharad Chhetri September 28, 2014December 10, 2024

    In this post we will how to install MariaDB Server 10.4.7 version on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7 ) by using yum command. We are doing fresh installation of MariaDB Server on minimal installed CentOS 7 version. The method is applicable to RHEL 7 as well. While installing MariaDB 10…

    Read More Install MariaDB Server 10 on CentOS 7 and RHEL 7 by using yumContinue

  • ss command : alternate of netstat
    Linux

    ss command : alternate of netstat

    BySharad Chhetri September 27, 2014December 10, 2024

    In case you are looking for alternate of netstat command, here is called ss command. By default ss command is shipped with package called iproute (Advanced IP routing and network device configuration tools) Introduction of ss ss command is another utility to investigate sockets. It is used to dump socket statistics. It allows showing information…

    Read More ss command : alternate of netstatContinue

  • netstat command not found on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7)
    Linux

    netstat command not found on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7)

    BySharad Chhetri September 27, 2014December 10, 2024

    We have observed many new changes on Red Hat Enterprise Linux and CentOS 7 . With the previous RHEL and CentOS version, netstat command was available even in minimal installation. On CentOS 7 and RHEL 7, on doing minimal installation we have not found netstat command. To get the netstat command on RHEL 7 and…

    Read More netstat command not found on CentOS 7 and RHEL 7 (Red Hat Enterprise Linux 7)Continue

Page navigation

Previous PagePrevious 1 … 9 10 11 12 13 … 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