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
  • type command
    Linux

    type Command : Display Information About Command Type On Linux

    BySharad Chhetri April 4, 2014June 25, 2026

    In this post we are explaining about type command with examples. In Linux system, type command is used for displaying information about command types. It displays if command is an alias,shell function, shell builtin, disk file, or shell reserved word. You can use type command with other command names also. With the help of type…

    Read More type Command : Display Information About Command Type On LinuxContinue

  • Find exit status code of last executed command on Linux and Unix
    Linux

    Find exit status code of last executed command on Linux and Unix

    BySharad Chhetri April 3, 2014June 25, 2026

    When we execute any command or script,it returns an exit status. The exit status is also called as return code or exit code. It is important to know the exit status of command which we execute. The method which we are going to describe become more helpful with script also. Exit status must be an…

    Read More Find exit status code of last executed command on Linux and UnixContinue

  • Linux Unix which command
    Linux

    Find Absolute Path Of Command On Linux / Unix : which command

    BySharad Chhetri April 1, 2014June 25, 2026

    Learn more about which command with examples to find the path of Linux command and executable files in Linux and Unix operating system.

    Read More Find Absolute Path Of Command On Linux / Unix : which commandContinue

  • df command
    Linux

    6 df Command Examples To Check Mounted Filesystem On Linux

    BySharad Chhetri April 1, 2014June 25, 2026

    In this tutorial we will learn about, how to use df command to check the mounted filesystem on linux. As a Linux System administrator, this command is basic and very important.The df command shows the usage of mounted filesystem.It is notable that the filesystems which are not mounted on system,we can not get its information…

    Read More 6 df Command Examples To Check Mounted Filesystem On LinuxContinue

  • How to show user account password expiration detail on Linux
    Linux

    How to show user account password expiration detail on Linux

    BySharad Chhetri March 31, 2014June 25, 2026

    The post is about to show account aging information.To get details of user account password expiration ,we use the command chage. With chage command use the option -l or –list. The chage program requires a shadow password file to be available.The absolute path of shadow file is /etc/shadow.It is notable that /etc/shadow file has password…

    Read More How to show user account password expiration detail on LinuxContinue

  • How to show line numbers with less command in Linux
    Linux

    How to show line numbers with less command in Linux

    BySharad Chhetri March 30, 2014June 25, 2026

    Today,in this post we will learn, How to show line numbers with less command in Linux.In our previous post we have described about how to show line number with cat command. Less command is similar to more command but it has more features.As the name suggest, it read less output rather than reading the entire…

    Read More How to show line numbers with less command in LinuxContinue

  • How to test rpm package before installation
    Linux

    How to test rpm package before installation

    BySharad Chhetri March 28, 2014June 25, 2026

    In this tutorial we will know, how to test rpm package before installation .You may have seen while installing the rpm package file by using rpm -i command, some problem may occur. It can be issue with dependency,GPG signature or corrupt rpm package etc. As a Linux System Engineer,this command is very useful and should…

    Read More How to test rpm package before installationContinue

  • How to find installation date and time of rpm package
    Linux

    How to find installation date and time of rpm package

    BySharad Chhetri March 28, 2014June 25, 2026

    In this post,we will know the linux command to find installation date and time of rpm package. As a Linux System Administrator,we take part in IT auditing activity. Sometimes for cross check we require the exact date and time of rpm file installed in Red Hat based Operating System (RHEL/CentOS/Scientific Linux). Hence,for auditing purpose,it is…

    Read More How to find installation date and time of rpm packageContinue

  • Allow only members of Wheel group to use su command on RHEL/CentOS
    Linux

    Allow only members of Wheel group to use su command on RHEL/CentOS

    BySharad Chhetri March 27, 2014June 25, 2026

    In this tutorial we will learn,how to allow only members of Wheel group to use su command.Means only members of wheel group can switch to another user by using su command.As we know that in Red Hat based operating system, wheel group is a special administrative group. To allow only Wheel group’s member to use…

    Read More Allow only members of Wheel group to use su command on RHEL/CentOSContinue

  • create a system account below uid 500 on RHEL/CentOS/Scientific Linux
    Linux

    create a system account below uid 500 on RHEL/CentOS/Scientific Linux

    BySharad Chhetri March 27, 2014June 25, 2026

    In this post we will know,how to create a system account below uid 500 on Red Hat based operating system.In Red Hat based operating system,the system account are below UID 500. The UID below 500 are reserved for system use ,it should not be assigned to other users. We can easily check the system user…

    Read More create a system account below uid 500 on RHEL/CentOS/Scientific LinuxContinue

  • Extract single and selected files from RPM package on Linux
    Linux

    Extract single and selected files from RPM package on Linux

    BySharad Chhetri March 26, 2014December 10, 2024

    Question : How can I extract single and selected files from RPM package on Linux. Answer : You can extract the single and number of selected files from RPM package by using rpm2cpio and cpio command.To achieve this task we will first list the number of files inside RPM package. After getting files name, we…

    Read More Extract single and selected files from RPM package on LinuxContinue

  • linux command to list the files from rpm package without extracting
    Linux

    linux command to list the files from rpm package without extracting

    BySharad Chhetri March 26, 2014December 10, 2024

    Question: What is the linux command to list the files from rpm package without extracting ? Answer : To do listing of files from rpm file package we will use rpm2cpio and cpio command. It is good practice to check list of files before extracting files from rpm package. By viewing list of files we…

    Read More linux command to list the files from rpm package without extractingContinue

  • How to extract RPM package on Linux system
    Linux

    How to extract RPM package on Linux system

    BySharad Chhetri March 26, 2014June 25, 2026

    In this tutorial we will learn, how to extract RPM package on Linux system. Extracting the rpm has one the important command and it will surely help you in System Administration. Many times I solved some problem which is caused by file corruption of particular package. Here is the story from my experience.One day,my colleague…

    Read More How to extract RPM package on Linux systemContinue

  • Install and upgrade to latest Git version on Ubuntu/Debian/Linux Mint
    Devops | Linux

    Install and upgrade to latest Git version on Ubuntu/Debian/Linux Mint

    BySharad Chhetri March 26, 2014June 25, 2026

    In this tutorial we will learn,how to install and upgrade to latest Git version on Debian based Operating System.At the time of writing this post,git version 1.9.1 has been released on 2014-03-18. The information of new Git version release can be obtained from git-scm.com The practical has been tested successfully in Ubuntu,Debian and Linux Mint….

    Read More Install and upgrade to latest Git version on Ubuntu/Debian/Linux MintContinue

  • XAMPP : Mysql # 2002 – No such file or directory
    Linux

    XAMPP : Mysql # 2002 – No such file or directory

    BySharad Chhetri March 25, 2014December 10, 2024

    After installing XAMPP in CentOS ,I tried to open the phpmyadmin of XAMPP. I opened the phpmyadmin URL in web browser and found the below given error. Error MySQL said: Documentation #2002 – No such file or directory The server is not responding (or the local server’s socket is not correctly configured). Later, I noticed…

    Read More XAMPP : Mysql # 2002 – No such file or directoryContinue

Page navigation

Previous PagePrevious 1 … 15 16 17 18 19 … 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