$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install TeamCity on Fedora 28 Gnu/Linux

August 25, 2018 | By the+gnu+linux+evangelist.

TeamCity Fedora 28 Installation Guide

How to Install TeamCity IDE on Fedora 28 GNU/Linux – Step by step Tutorial.

And TeamCity for Fedora 28 is a Powerful and user-friendly Continuous Integration and Deployment server that works Out of the Box.

Finally, the Oracle Java Development Kit is Recommended for Running TeamCity on Fedora Linux.

How to Install TeamCity on Fedora 28 GNU/Linux - Featured
  1. Open a Shell Session
    (Press “Enter” to Execute Commands)

    How to Install TeamCity on Fedora 28 GNU/Linux - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. Download TeamCity Server for Linux

    TeamCity tar.gz Linux
  3. Double-Click on Archive and Extract into /tmp.

    tar xvzf $HOME/Downloads/TeamCity*.tar.gz -C /tmp/
  4. Relocating TeamCity Server

    mv /tmp/TeamCity* $HOME/TeamCity
  5. How to Install Recommended Oracle-Sun JDK on Fedora

    Install Oracle JDK for 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.

  6. User Path SetUp for TeamCity Server

    nano $HOME/.bashrc

    Append:

    export PATH=$PATH:$HOME/TeamCity/bin

    Load new Path:

    bash
  7. How to Getting Started with TeamCity Server

    TeamCity Quick Start Guide