how to install runC on ubuntu14.04

https://github.com/opencontainers/runc/wiki/Ubuntu-14.04---Mint17-and-runc

this link is pretty good.

But please be careful about the "golang" version.

if you use ‘apt-get install golang‘, you will get go1.2 which is not work for the build.

==

what you need to do: curl -O https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz

tar xvf go1.6.linux-amd64.tar.gz

mv go /usr/local

vim ~/.profile add ‘export PATH=$PATH:/usr/local/go/bin‘

source ~/.profile

[check the version now] [email protected]vm1:~/gocode/github.com/opencontainers/runc# go version

go version go1.6 linux/amd64

==

apt-get install libseccomp-dev

now you can follow the instruction step by step:

you will get:

[email protected]:~/gocode/github.com/opencontainers/runc# runc -v runc version 1.0.0-rc1 commit: ab10b6068b3f7ec99370eb66bf48592998cc9db1 spec: 1.0.0-rc1

时间: 2024-12-05 18:31:53

how to install runC on ubuntu14.04的相关文章

Install Skype for ubuntu14.04

1. add the ppa sudo sh -c "echo 'deb http://archive.canonical.com/ubuntu/ trusty partner' >> /etc/apt/sources.list.d/canonical_partner.list" 2. update system repository sudo apt-get update 3. install sudo apt-get install skype

How to install ZeroMQ on Ubuntu14.04

Prepare: sudo apt-get install libtool autoconf automake uuid-dev sudo apt-get install python-dev sudo apt-get install g++ sudo apt-get install python-setuptools Check Stable Release: http://zeromq.org/intro:get-the-software Download: wget http://down

Ubuntu14.04 x86_64 install Xen

Recommended reference: https://help.ubuntu.com/community/Xen Step One: Install Ubuntu14.04 on your computer Step Two: Install Xen using “sudo apt-get install xen-hypervisor” which will automatically choose suitable version of Xen. If you do this on a

[译]How to Install Node.js on Ubuntu 14.04 如何在ubuntu14.04上安装node.js

**原文链接为** [http://www.hostingadvice.com/how-to/install-nodejs-ubuntu-14-04/](http://www.hostingadvice.com/how-to/install-nodejs-ubuntu-14-04/) **由作者Jacob Nicholson 发表于October 27, 2015** **在此对作者表示感谢** Node.js作为一个基于JavaScript的开发平台,正变得越来越流行.许多开发人员都想构建通过

ubuntu14.04 install emacs24.5

ubuntu14.04 install emacs24.5 Table of Contents 1. get the src 2. libs prepare 3. install emacs-24.5 4. start 4.1. start with window 4.2. start without window 1 get the src Use git clone $ git clone https://github.com/emacs-mirror/emacs.git or downlo

艰辛五天:Ubuntu14.04+显卡驱动+cuda+Theano环境安装过程

题记:从一开始不知道显卡就是GPU(虽然是学计算机的,但是我真的不知道-脑残如我也是醉了),到搞好所有这些环境前后弄了5天时间,前面的买显卡.装显卡和装双系统见另一篇博客装显卡.双系统,这篇主要记录我怎么配置后面的环境,虽然中间重装Ubuntu三次,后面安装过程也没差别. 基础平台:64-bit,Ubuntu14.04 1.安装NVIDIA驱动(参考技术文章,基本是复制啊,蟹蟹作者~) (1) 在官网下载NVIDIA驱动,根据自己买的型号选择下载,放到 /home/lvxia/ 目录下面,我下载

ubuntu14.04升级以及gitlab升级

环境:系统版本ubuntu14.04 .gitlab-ce.8.11.3 升级要求:系统升级为目前最新的LTS版本的ubuntu16.04.gitlab升级为最新的版本 升级可以有两种方案: 一种类似于迁移(重新找台机器,系统直接安装ubuntu16.04,然后安装gitlab版本和原版本一致,进行数据迁移后确认数据无误后再对gitlab进行升级). 另一种直接在原机器上,首先对系统升级,然后对gitlab升级. 1.直接在原机器上升级的方案: 升级前备份数据: 停止gitlab备份数据 git

ubuntu14.04建立交叉编译环境,arm-none-linux-gnueabi-gcc: not found

~$ arm-linux-gcc/opt/FriendlyARM/toolschain/4.4.3/bin/arm-linux-gcc: 15: exec: /opt/FriendlyARM/toolschain/4.4.3/bin/.arm-none-linux-gnueabi-gcc: not found 问题分析: ubuntu14.04 64位 缺少32位库 解决方法: ~$ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0

ubuntu14.04安装vim

今天安装完ubuntu14.04后开始编辑文件,使用vim时提示: 使用apt-get install vim尝试安装: 装完系统后默认已经装了vim了,但是路径不对 解决方法: 1.找到vim在什么位置 #whereis vim 2.做链接 #ln -s /usr/bin/vim.tiny /usr/bin/vim 这时vim就可以正常使用了 ubuntu14.04安装vim,布布扣,bubuko.com