sábado, 17 de dezembro de 2011

Artigo aceito no CCSA - Melbourne - Austrália

Foi apresentado o artigo "FairCPU: Architecture for Allocation of Virtual Machines Using Processing Features" no CCSA 2011: 1st International Workshop on Cloud Computing and Scientific Applications (http://www.cloudbus.org/ucc2011/ccsa/ccsa2011.html
).
O evento ocorreu em Dezembro 2011, em Melbourne, Austrália.


Abstract:


This paper proposes an architecture to handle the allocation of virtual machines based on the processing power for heterogeneous Clouds, where there is a wide variety of CPU types. Our major contribution is a novel representation of the processing capacity in terms of the Processing Unit (PU) and the CPU usage limitation in order to isolate the processing capability from the Physical Machine (PM) where the Virtual Machine (VM) is allocated. The efficiency of the proposed architecture is validated by extensive replications of five experiments using a real private cloud. The results show that it is possible to use the proposed idea to define a PU, supported by the CPU usage limitation, to enable the VM's processing power remain at the same level regardless of the PM.

Criando no Windows um pendrive para instalação do LINUX

No Windows baixe o programa UNetbootin (http://unetbootin.sourceforge.net/).
Ele é um executável direto, ou seja, não precisa de instalação.

Baixe a ISO de alguma distribuição LINUX. Eu baixei a do UBUNTU 11.04.

Selecione a opção de utilizar uma ISO (DISKIMAGE) e informe o caminho.

Selecione o pendrive, que deve ter pelo menos 1GB e formatado.

Dê OK e espere.

Após o término, se você quiser instalar o LINUX ou só testar, reinicialize seu computador e altere a opção de boot no setup para que o primeiro dispositivo seja o pendrive.
Assim, se tudo der certo, aparecerá uma tela com opções para executar o LINUX a partir do pendrive ou para instalar.

Instalando o JAVA no UBUNTU

Uso o UBUNTU 11.04.

Em uma tela do terminal siga os passos abaixo.

Baixar o java: jdk-7u2-linux-i586.tar.gz
Descompactar em alguma pasta: tar -zxvf jdk-7u2-linux-i586.tar.gz
É criada a pasta jdk1.7.0_02

Descubra o caminho completo do diretório do java: pwd
No meu caso aparece: /home/emanuel/jdk1.7.0_02

Ajustando as variáveis:

editar o /etc/bash.bashrc
sudo /etc/bash.bashrc
Adiciona no final:

PATH=$PATH:/home/emanuel/jdk1.7.0_02/bin
export
JAVA_HOME=/home/emanuel/jdk1.7.0_02
export JAVA_HOME

Saia do terminal (exit) e abra um novo. Para testar as variáveis, os diretórios devem aparecer quando você digitar $PATH e $JAVA_HOME
Para testar o java, basta digitar qualquer comando do java, como java ou javac, e as opções devem surgir na tela.