• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » $PATH and .bashrc File in Shared Server

By Abhishek Ghosh July 26, 2014 7:28 am Updated on July 26, 2014

$PATH and .bashrc File in Shared Server

Advertisement

Installing Git or doing SSH on a shared hosting account is simple and in most cases go without documentation. Here is some words on $PATH and and .bashrc File in Shared Server. For the most users, who has an average knowledge about environmental variable – they will need top up knowledge on $PATH, like we described on $PATH Variable Guide for OS X. We have discussed how to SSH in Shared Hosting Server, using Git Repo In Shared Hosting. In this context, it is important to know something about VirtFS or Jailed Shell.

 

$PATH and .bashrc File in Shared Server

 

We usually start with a bare repository. All other repositories are cloned from this one. Master is usually a standard repository, the live web site from the Push is served from the working directory. Using a pair of repositories is simple and flexible way of managing stuffs on a Multi-tenant environment where Git is the files for the working live website. Remote clones with ssh-access can update a live site with a simple git push to the main first repository. Any files edited directly on the server are instantly mirrored into the first repository upon commit. Git is a priority above all of the other tools used today. Git really changed the way developers think of merging and branching.

But none of these advanced ideas will work if we do not update the $PATH environment variable. In most cases, this is set in the .bashrc file. Using a .bashrc file instead of a .bash_profile updates the $PATH for interactive and non-interactive sessions“which is necessary in many cases. We can simply add these two lines on .bashrc file :

Advertisement

---

Vim
1
2
export PATH=$HOME/bin:$PATH
export MANPATH=$HOME/opt/share/man:$MANPATH

$PATH and .bashrc File in Shared Server

 

Do More With New $PATH and .bashrc File Changes on Shared Server

 

We should source the file and echo to double check :

Vim
1
2
3
4
source ~/.bashrc
echo $PATH
# output
/home/tcwmedia/bin:/usr/local/bin:/bin:/usr/bin

Previous methods used to install the stuffs into the ~/opt directory. We will now be installing stuffs into the default ~/bin. You must have the permission to use GCC on the server. Run the following command to check :

Vim
1
gcc --version

On OS X, we will get output like this :

Vim
1
2
3
4
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.3.0
Thread model: posix

If we get output like /usr/bin/gcc: Permission denied simply we do not have the access to the GCC compiler and we will not be able to build the Git binaries from source. We can simply run :

Vim
1
2
3
4
5
6
7
8
9
10
11
mkdir -p src
cd src
curl -kOL https://github.com/git/git/archive/v2.0.3.tar.gz
# do ls to get the real name
tar -xzvf v2.0.3*
# check the name with ls command
cd v2*
mv * ..
cd .. && rm -r v2.0*
make
make install

In this case, we are running a Git server. If the GCC compiler throws error, you will be unable to use this method.

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to $PATH and .bashrc File in Shared Server

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • OpenShift OctoPress Auto install Script

    OpenShift OctoPress Auto install Script is an Advanced Script to Run OctoPress on Free OpenShift PaaS Practically Without Any Knowing Ruby or Git.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

  • How to Use Git Repo In Shared Hosting Account

    It might wonder many, but actually one can push a Git Repo in shared hosting environment, that is great to do many advanced works. Here is how.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy