• ubuntu lts install licode tag pre-v5.4


    1. Requirements

    Ubuntu 14.04 LTS

    2. Clone Licode code
    You first need to clone our code from github.
    You need to have git installed in your computer.
    In ubuntu use "sudo apt-get install git".
    git clone https://github.com/ging/licode.git
    cd licode

    git fetch --all --tags --prune
    git checkout tags/pre-v5.4 -b pre-v5.4

    3. Install Dependencies Ubuntu LTS.
    sudo ./scripts/installUbuntuDeps.sh

    4. Install Licode
    This step will install all Licode components.
    These components are: Erizo, Erizo API, Erizo Controller and Nuve.
    sudo ./scripts/installNuve.sh

    sudo ./scripts/installErizo.sh

    5. Install the Basic Example
    ./scripts/installBasicExample.sh

    6. Test Licode!
    This step will initialize all Licode components.
    ./licode/scripts/initLicode.sh

    This step will initialize the basic example.
    ./scripts/initBasicExample.sh

    如果遇到错误可以打印日志 检查使用的node版本和位置 

    参考:

    拉取远端tag
    # --all will fetch all the remotes.
    # --tags will fetch all tags as well
    git fetch --all --tags --prune

    Then check out the tag by running
    git checkout tags/<tag_name> -b <branch_name>

    显示tag
    # list all tags
    git tag
    # list all tags with given pattern ex: v-
    git tag --list 'v-*'

    创建tag
    # normal tag 
    git tag 
    # annotated tag
    git tag -a

    删除tag
    # delete any given tag
    git tag -d <tag name>
    # Don't forget to remove the deleted tag form the server with push tags

  • 相关阅读:
    集合改变时会自动通知的集合类
    WPF中的MatrixTransform
    WPF中,如何将Vista Aero效果扩展到整个窗口
    WPF中的命令与命令绑定(二)
    参加BEA Dev2Dev TechDays 归来
    在WPF中自定义你的绘制(五)
    Microsoft Surface
    WPF与缓动(二) 正弦与余弦缓动
    WPF与缓动(一) N次缓动
    终于找到了一个WPF中的日历控件
  • 原文地址:https://www.cnblogs.com/zxpo/p/7867171.html
Copyright © 2020-2023  润新知