- http://www.thegeekstuff.com/2014/06/linux-ntp-server-client
- https://www.server-world.info/en/note?os=CentOS_6&p=ntp
- https://www.server-world.info/en/note?os=CentOS_6&p=ntp&f=2
Install NTP Server
name_en,name_es,unit,calories,protein | |
Almonds,Almendras,unit,7,0.3 | |
Brown rice,Arroz integral,cup,248,5.5 | |
Kidney beans (cooked),Fríjoles rojos (cocidos),cup,255,15.3 | |
Chickpeas (cooked),Garbanzos (cocidos),cup,269,14.5 | |
Egg whites,Huevos (claras),unit,17,3.6 | |
Milk 0%,Leche descremada, cup,68,6.7 | |
Chicken breast,Pechuga de pollo (mediana 120g),unit,208,37.1 | |
Banana (medium),Platanito (mediano),unit,103.8,0.9 | |
Protein powder (Naked Pea),Proteína en polvo (Naked Pea),scoop,120,13.5 |
## INSTALACIÓN DE ORANGEFS EN CENTOS 6.9 | |
# actualizar el sistema | |
yum update; reboot | |
# deshabilitar SELinux | |
sestatus | |
setenforce 0 | |
vi /etc/sysconfig/selinux | |
cambiar "SELINUX=enforcing" to "SELINUX=disabled" : | |
reboot |
#include <stdio.h> | |
#include "mpi.h" | |
int main(int argc, char *argv[ ]) | |
{ | |
int rank, size; | |
MPI_Init(&argc, &argv); | |
MPI_Comm_rank(MPI_COMM_WORLD, &rank); | |
MPI_Comm_size(MPI_COMM_WORLD, &size); |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.PrintWriter; | |
import java.util.StringTokenizer; | |
public class Criptografia { | |
public static void main(String[] args) throws IOException { | |
PrintWriter out = new PrintWriter(System.out); | |
BufferedReader tec = new BufferedReader(new InputStreamReader(System.in)); |
https://wiki.centos.org/HowTos/VNC-Server https://www.server-world.info/en/note?os=CentOS_6&p=x&f=2
[root@apaternina nfs]# yum install tigervnc-server
Loaded plugins: fastestmirror, refresh-packagekit, security
package co.edu.poligran.ingenieria.de.software.taller1; | |
public class InputInvalidoException extends Exception { | |
private static final long serialVersionUID = 1L; | |
} |