- Insertar CD
- Reiniciar
- Siguiente, siguiente, siguiente
- Dar contraseña a root
- Siguiente, siguiente, siguiente
- Reiniciar
Referencia http://www.krizna.com/centos/setup-network-centos-7/
7. Ver dispositivos de red con > nmcli d
/* | |
Copyright notice | |
© European Union, 2018 | |
Reuse of legal, administrative and case-law documents and data published on this website for commercial or non-commercial purposes is authorised provided the source is acknowledged. The reuse policy of the European Commission is implemented by a Decision of 12 December 2011. | |
The European Commission general publications may also be reused provided the source is acknowledged, according to the above-mentioned Decision. | |
For general publications of other EU institutions, bodies, offices and agencies, the following rules apply: | |
Downloading and reproduction are authorised provided the source is acknowledged. | |
Translations of publications into languages other than the language editions published on this website are subject to the conclusion of a free-of-charge licence agreement. |
Referencia http://www.krizna.com/centos/setup-network-centos-7/
7. Ver dispositivos de red con > nmcli d
#!/bin/bash | |
# This script installs `qiime` following the instructions at http://qiime.org/install/install.html, creating a conda enviroment | |
# called `qiime1` | |
# It also installs miniconda following the steps at https://conda.io/docs/install/quick.html, in case it's not found within | |
# the user's path | |
source activate qiime1 2> /dev/null | |
if [ $? -eq 0 ]; then | |
echo "qiime is already installled. Use \`source activate qiime1i\` to activate its working environment" |
a[lang]:after { | |
content: " [" attr(lang) "]"; | |
font-size: .75em; | |
} |
Licensed GPL3 |
[ | |
{time:0, | |
type: 'dancer', | |
id:'xuan', | |
gender:'m'}, | |
{time:0, | |
type: 'dancer', | |
id:'pep', | |
gender:'m'}, | |
{time:0, |
HAI | |
I HAS A AIS ITZ 0 | |
I HAS A CIS ITZ 0 | |
I HAS A TIS ITZ 0 | |
I HAS A GIS ITZ 0 | |
I HAS A DATASET | |
GIMMEH DATASET | |
I HAS A I ITZ 0 | |
IM IN YR LOOP UPPIN YR I TIL BOTH SAEM I AN LEN OF DATASET | |
DATASET!I, WTF? |
<?php | |
$sampleset = file_get_contents('data/sampleset.csv'); | |
$samples = explode("\n", $sampleset); | |
array_shift($samples); | |
array_walk($samples, function($s) { | |
$sampleData = explode(',', $s); | |
$namefile = $sampleData[0]; | |
$smallURL = $sampleData[4]; | |
copy($smallURL, 'data/repo/' . $namefile . '.jpg'); | |
}); |
// # Common declarartion | |
interface Displayable { | |
void draw(); | |
} | |
// # Closure style | |
Function<Void, Void> blinker; |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
The MIT License (MIT) | |
Copyright (c) 2014 sinfonier-project | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal |