Announcement

Collapse
No announcement yet.

How to Change Your Prompt in Bash Shell in Ubuntu

Collapse
X
Collapse
  •  

  • How to Change Your Prompt in Bash Shell in Ubuntu


    I don’t like my prompt, i want to change it. it has my username and host, but the formatting is not what i want. This blog will get you started quickly on doing exactly that.
    This is my current prompt below:



    To change the prompt you will update .bashrc and set the PS1 environment variable to a new value.

    Here is a cheatsheet of the prompt options:

    You can use these placeholders for customization:

    \u – Username

    \h – Hostname

    \w – Current working directory

    \W – Basename of the current working directory

    \$ – Shows $ for a normal user and # for the root user

    \t – Current time (HH:MM:SS)

    \d – Date (e.g., "Mon Jan 05")

    \! – History number of the command

    \# – Command number


    I want to change my prompt to say

    Here is my new prompt I am going to use:

    export PS1="linuxhint@mybox \w: "


    Can you guess what that does? Yes for my article writing this is exactly what i want. Here is the screenshot:



    A lot of people will want the Username, Hostname, for my example i don’t! But you can use \u and \h for that. I used \w to show what directory i am in. You can also show date and time, etc.

    You can also play with setting colors in the prompt with these variables:

    Foreground Colors:

    \e[30m – Black

    \e[31m – Red

    \e[32m – Green

    \e[33m – Yellow

    \e[34m – Blue

    \e[35m – Magenta

    \e[36m – Cyan

    \e[37m – White



    Background Colors:

    \e[40m – Black

    \e[41m – Red

    \e[42m – Green

    \e[43m – Yellow

    \e[44m – Blue

    \e[45m – Magenta

    \e[46m – Cyan

    \e[47m – White

    Reset Color:

    \e[0m – Reset to default


    Here is my colorful version. The backslashes are primarily needed to ensure proper formatting of the prompt and avoid breaking its functionality.

    export PS1="\[\e[35m\]linuxhint\[\e[0m\]@\[\e[34m\]mybox\[\e[0m\] \[\e[31m\]\w\[\e[0m\]: "




    This uses Magenta, Blue and Red coloring for different parts of the prompt.

    Conclusion

    You can see how to customize your bash prompt with PS1 environment in Ubuntu. Hope this helps you be happy with your environment in linux.





    More...
      Posting comments is disabled.

    Categories

    Collapse

    Article Tags

    Collapse

    There are no tags yet.

    Latest Articles

    Collapse

    • How to Change Your Prompt in Bash Shell in Ubuntu
      by Kasimba
      I don’t like my prompt, i want to change it. it has my username and host, but the formatting is not what i want. This blog will get you started quickly on doing exactly that.
      This is my current prompt below:



      To change the prompt you will update .bashrc and set the PS1 environment variable to a new value.

      Here is a cheatsheet of the prompt options:

      You can use these placeholders for customization:

      \u – Username

      ...
      01-06-2025, 01:15 AM
    • How to Install ZSH shell on Rocky Linux
      by Kasimba
      In this post I will show you how to install the ZSH shell on Rocky Linux. ZSH is an alternate shell that some people prefer instead of BASH shell. Some people say ZSH has better auto-completion, theme support, and plugin system. If you want to give ZSH a try its quite easy to install and give it a try. This post is focused on the Rocky Linux user and how to install ZSH and get started with its usage.
      Before installing anything new, it’s good practice to update your system packages:...
      12-25-2024, 02:01 AM
    • 5 Compelling Reasons to Choose Linux Over Windows
      by Kasimba



      by George Whittaker


      Introduction

      In the world of operating systems, Windows has long held the lion’s share of the market. Its user-friendly interface and wide compatibility have made it the default choice for many. However, in recent years, Linux has steadily gained traction, challenging the status quo with its unique offerings. What was once considered the domain of tech enthusiasts and developers is now...
      12-21-2024, 06:52 AM
    • NGINX vs Apache; Web Server Comparison
      by Kasimba
      Overview of NGINX and Apache

      NGINX and Apache are leading web server solutions utilized for hosting websites and web applications. Apache, developed by the Apache Software Foundation, offers robust configuration options and extensibility. NGINX, created by Igor Sysoev, is known for its efficiency in handling numerous concurrent connections with low resource utilization. Both servers function not only as HTTP servers but also as reverse proxies, load balancers, and more.

      What is

      ...
      12-21-2024, 03:54 AM
    • Monthly News – November 2024
      by Kasimba
      Hi everyone, I hope you are enjoying the BETA so far! This release introduces new features, tools, and artwork, so we anticipate a good number of bug reports. Every single fix helps us refine and improve the final release. Your feedback during the BETA phase is extremely important to us. Linux Mint 22.1 is our […]

      More...
      12-16-2024, 11:50 AM
    • Mastering OpenSSH for Remote Access on Debian Like a Pro
      by Kasimba



      by George Whittaker


      Introduction

      Remote access is a cornerstone of modern IT infrastructure, enabling administrators and users to manage systems, applications, and data from virtually anywhere. However, with great power comes great responsibility—ensuring that remote access remains secure is paramount. This is where OpenSSH steps in, providing robust, encrypted communication for secure remote management....
      12-13-2024, 10:31 PM
    Working...
    X