Installing
-
Download TeamCity Server for Linux
-
Then Extract into /tmp
Possibly Double-Click/Right-Click and Open with Archive Manager:
Or from Shell:tar xvzf $HOME/Downloads/TeamCity*.tar.gz -C /tmp/
-
Next to Relocating TeamCity Server
Here for a Local Setup:mv /tmp/TeamCity* $HOME/TeamCity
-
How to Install Recommended Oracle-Sun JDK on Fedora
To check your current JDK version:
javac --version && java -XshowSettings:properties -version 2>&1 | grep 'java.vendor'
If it’s the official Oracle JDK, the output will include:
java.vendor = Oracle Corporation
. -
User Path SetUp for TeamCity Server
nano $HOME/.bashrc
Append:
export PATH=$PATH:$HOME/TeamCity/bin
Load new Path:
bash
Contents