Category Archives: bash/linux

Linux - Resources *****

 

 

Introduction

When managing a linux/unix operating system from the command line, users are interacting with the system via shell. This article will explore some of the basic features of the bash shell prompt. Default bash command line prompt on many linux systems does not have a color and display information about user's username, hostname and current working directory. As you well see in the following sections of this document this default settings can be easily changed by exporting a bash prompt PS{n} variables. Bash prompt can be modified to suit users needs and can display time, load, number of users using the system, uptime and more.

Bash prompt variables

As anything else in the linux system also bash prompt can be customized. Bash prompt can be customized by changing the values of bash PS1, PS2, PS3, PS4 variables. To keep the things simple, this article will be concerned just with PS1 and PS2 variables. Use echo command to see the current value of PS1 and PS2 variables.

echo "Bash PS1 variable:"  $PS1
echo "Bash PS2 variable:"  $PS2

Bash prompt variables

Bash PS1 prompt variable

PS1 is a primary prompt variable. Currently it holds \u@\h:\w\$ special bash characters. This is the default structure of the bash prompt on many Linux systems and is displayed every time you log in using a terminal.Please see the following section "Bash prompt special characters" for explanation of \u, \h, \w and \$ symbols. Here is a classical bash prompt with default settings:

Bash PS1 prompt variable

Bash PS2 prompt variable

PS2 bash shell variable is a secondary prompt. This prompt is displayed for if the shell waits for a user input, for example your forget to insert second quotation.

Bash PS2 prompt variable

Linux Bash prompt

Bash prompt special characters

Bash prompt can be customized by use of special characters. This table contains bash prompt special characters and its explanation.

Bash special character Bash special character explanation Bash special character Bash special character explanation
\a an ASCII bell character (07) \d the date in "Weekday Month Date" format (e.g., "Tue May 26")
! begin a sequence of non-printing characters, which could be used to embed a terminal control sequence into the prompt
\D{format} the format is passed to strftime(3) and the result is inserted into the prompt string; an empty format results in a locale-specific time representation. The braces are required

Bash prompt customization

After user login to the systems user environment variables initialized from various files like:

  • global system files /etc/profile or /etc/bashrc
  • user files ~/.bash_profile , ~/.bash_login , ~/.profile , ~/.bashrc or ~/.bash_logout

It is important to know that all users environment variable have a life time equal to the terminal session. When the terminal session is closed the user's variables including bash shell variables defined during a terminal session are emptied and a again redefined when new terminal session is created either via logo in shell or interactive shell. Lets define two variables to prove this statement.

Permanent bash variable definition

First permanent variable we define in one of the bash initialization files ~/.bash_profile and second variable we define on the shell prompt. Let's define permanent user variable:

Define Permanent bash user variable

What happened here, is that user "prompt" modified its own .bash_profile initialization file located in his/her home directory by appending a VAR1 variable definition. When user "prompt" logged out and logged in again the $var1 variable is initialized and available for the new terminal session.
On the same principles we can define our bash prompt. The best place to do it is that bash initialization file .~/bashrc. open up your ~/.bashrc file and add/edit the line defining a PS1 variable to something like:

PS1='MY NEW BASH PROMPT@\t:\w$ '

NOTE: Your ~/.barshrc file may differ from the example below !

define new bash prompt
After the user "prompt" restarts a terminal session he/she is welcomed by new bash prompt. This changes to the bash prompt are permanent.
HINT: Use "source" command to re-read a bash initialization .bashrc file instead of restarting a terminal session.

source .bashrc

or similarly

. .bashrc

bash prompt definition

Temporary bash variable definition

Temporary bash variable definition is defined only for a lifetime of the current terminal session. This is tome by an export command. bash temporary variable
As you can see the variable $VAR2 is not defined when user closes his/her terminal session. The permanent variable $VAR1 is always defined from the bash initialization file: ~/.bash_profile . As we can use an export command to define new bash variables we can also use it to modify a bash prompt $PS1 variable. To change a current bash prompt to display only time we could do:

export PS1="\t: "

define bash temporary prompt

Changing foreground and background bash prompt colors

Syntax for changing colors in the bash is as follows:

3[ -> Indicates the beginning of color in the text
 x;yzm - Indicates color code
 3[00m - Indicates the end of color in the text

Bash color codes:

Bash color codes

export PS1="3[01;31mBASH IN RED3[00m: "

bash prompt and red color

Bash Prompt Examples

To get you started with your new bash prompt here are couple examples:

Display current Time

export PS1="\u@\h \t:$ "

Display current Time with bash prompt

Counting Files in the Current Directory

This bash prompt displays current number of files and directories in the current directory.

export PS1="\u@\h [$(ls | wc -l)]:$ "

Counting Files in the Current Directory in bash prompt

 


 

pygame installation for mac

 

Published on August 28, 2016

 

Published on May 7, 2014

From youtube.com: How to install Python3 + Pygame on mac os x - Mac computer

I hope the video was helpful, drop me a comment if you have any questions or help..

Xcode - https://itunes.apple.com/gb/app/xcode...

http://matthewcarriere.com/2013/08/05/how-to-install-and-use-homebrew/

Python3 - https://www.python.org/

tcltk versions - http://www.activestate.com/activetcl/...

DOCUMENT!!!

Install Python 3

Homebrew has a recipe for Python 3, which we are going to use. Type

brew install python3

and hit Return. Once that is done, verify the Python version by typing

python3 —version

Install Pygame

First install the Mercurial version control system:

brew install mercurial

Note: It didn't work for me at first. To test if it works for you, type:
hg
and press enter. If you don't get an error but a text that starts with Mercurial Distributed SCM, you have no problem. If you do get an error, type again
brew install mercurial
and press enter. Hopefully it will work.
Then do the same for the git version control system, which is needed by a dependency package:

brew install git
Now install all the dependencies of Pygame:

brew install sdl sdl_image sdl_mixer sdl_ttf portmidi

And now, finally:

pip3 install hg+http://bitbucket.org/pygame/pygame

After this is done, verify that it is working:

python3

At the prompt, type:

import pygame
More...

Screen Shot 2014-07-29 at 8.34.04 PM