The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
- Image from https://www.archlinux.org/
#!/usr/bin/python3 | |
# | |
# Copyright 2017 Canonical, Ltd. Authored by Marco Ceppi | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
This should be used for new users to getting started with the container registry feature on docker-gitlab.
Docker Distribution >= 2.4
Docker GitLab >= 8.8.4 ( #708 must be merged)
TLS certificates because it should be run with https it's not designed to use it without https
FROM golang:1.5.2 | |
MAINTAINER Lucas Käldström <[email protected]> | |
# Enable cgo cross-compilation for armel | |
RUN echo "deb http://emdebian.org/tools/debian/ jessie main" > /etc/apt/sources.list.d/crosstools.list \ | |
&& curl -s http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add - \ | |
&& dpkg --add-architecture armel \ | |
&& apt-get update \ | |
&& apt-get install -y build-essential crossbuild-essential-armel rsync upx |
If you're writing bare-bones javascript for the browser, creating Chrome Apps and Extensions, or using remote coding apps like cloud9, Koding, or Nitrous, you may not need to install Ubuntu. Some tutorials can be done entirely within the browser. The tradeoff is that you won't have a full-featured command line, and you may hit a point where you can't install something that you need.
To start coding within Chrome OS, install Text or Caret as a text editor. (Text stores files in Google Docs and Caret stores the files locally on your machine, which may help you choose.) After that, you're good to go, since Chromebooks come with a browser installed.
function conditional_apt_update(){ | |
if expr $(date +%s) - $(stat -c %Y /var/lib/apt/periodic/update-success-stamp) > $0 | |
then | |
echo HI | |
fi | |
} | |
conditional_apt_update 10 |
#!/bin/bash | |
set -ex | |
echo "Installing consul server on $JUJU_UNIT_NAME" | |
apt-get install -qy unzip | |
TGT_DIR=/usr/local/bin | |
ARCH=linux_amd64 |
'''The EVEmu project is a developing EVE Online server suite and as yet does not support most features offered in the game.'''
'''EVEmu Crucible is compatible with EVE Crucible Client v1.6.5 build 360229.'''
= DISCLAIMER = EVEmu is an educational project. This means, our primary interest is to learn and teach us and our users more about C++ project development in a large scale. Our software is not intended for running public servers, and we do not support that. We are not responsible for what others do with the source code downloaded from this project. [[:New Users Guide|For users who are new]] to build servers and would like some background information on what they are doing for learning please go [[:New Users Guide|here]]'''.
There is a video guide [http://www.youtube.com/watch?feature=player_embedded&v=6-1WyPIbptw here]. Evemu did NOT make this guide and it is different to the instructions listed below.
def copy_into(directory, target_dir): | |
with directory.relpath(): | |
for pth in path('./').walk(): | |
tgt = target_dir.joinpath(*pth.splitpath()) | |
if pth.isdir(): | |
tgt.makedirs_p() | |
continue | |
if pth.islink(): | |
link = pth.realpath().relpath() |