martes, 12 de julio de 2016

Installation of Dell Open Manage Server Administrator






1.- Download

Dell Support


2.- Install

Unzip:  OM-SrvAdmin-Dell-Web-A00.exe

Run:  Windows/setup.exe

Installation of numpy, scipy and matplotlib on Debian (python2)



1.- Installing dependencies


apt-get update
apt-get install  python-setuptools python-pip python-dev python-virtualenv libblas-dev liblapack-dev libatlas-base-dev gfortran libfreetype6-dev pkg-config


3.- Installing scipy, numpy, matplotlib

pip install scipy numpy
apt-get install python-matplotlib


4.- Testing

import numpy as np
import matplotlib.pyplot as plt

X = np.linspace(-np.pi, np.pi, 256, endpoint=True)
C, S = np.cos(X), np.sin(X)

plt.plot(X, C)
plt.plot(X, S)

plt.show()



Links:
Scipy Lectures

Installation of Python3, scipy, numpy and matplotlib on Debian 8





1.- Download and Install Python3

wget  https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz

tar xvf Python-3.5.2
cd Python-3.5.2
./configure
make
make test
make install


2.- Installing dependencies


apt-get update
apt-get install  python-setuptools python-pip python-dev python-virtualenv libblas-dev liblapack-dev libatlas-base-dev gfortran libfreetype6-dev pkg-config


3.- Installing scipy, numpy, matplotlib

pip3.5 install --upgrade pip
pip3.5 install scipy numpy matplotlib


4.- Testing

import numpy as np
import matplotlib.pyplot as plt

X = np.linspace(-np.pi, np.pi, 256, endpoint=True)
C, S = np.cos(X), np.sin(X)

plt.plot(X, C)
plt.plot(X, S)

plt.savefig('test.pdf')



Links:
Scipy Lectures


martes, 28 de junio de 2016

Install Networkx python software package





1.- Install python2.7

wget https://centos(version).iuscommunity.org/ius-release.rpm
rpm -i ius-release.rpm
yum -y install python27 python27-devel python27-pip python27-setuptools python27-virtualenv --enablerepo=ius


2,. Install networkx:

pip2.7 install networkx


3.- Install nose, scipy and numpy (testing networkx)

pip2.7 install nose scipy numpy


4.- Test:

python2.7

>>import networkx
>>networkx.test()



Referencia:

NetworkX

Follow me in Elastix





1.- Edit Extension "Add Follow me settings" :

2.- Edit "Follow me lists" :

Number + #

3.- Edit "Destination if no answer" :

Extensions + No.Ext



Referencia:

Elastix Tech

viernes, 24 de junio de 2016

Disk cloning




1.- Linux commands for hard disk information:

- hdparm -i /dev/sda

- lshw


2.- Linux commands for clone disk:

Option 1: dd if=/dev/sdb of =/dev/sdc bs=100M

Install pv (apt-get install pv):

Option 2: dd if=/dev/sdb  | pv |  of=/dev/sdc bs=100M



3- Monitor status Option 1:

pkill -USR1 dd
watch -n5 'sudo pkill -USR1 dd'


miércoles, 1 de junio de 2016

Teamviewer en Linux





1.- Descargar software Teamviewer

2.- Para que inicie al loguearse en una sesión hay que agregarlo a los demonios de inicio dentro de la cuenta que lo ejecutará:

user$ genome-session-properties