sitio oficial
http://www.bonitasoft.com/
informacion en español
http://es.bonitasoft.com/
facil descarga y registro, con correo personal.
miércoles, 14 de diciembre de 2011
Bonita Open Solution
domingo, 13 de noviembre de 2011
InfoWorld's the best open source software of 2011
InfoWorld's Test Center picks the best open source productivity software and mobile tools of 2011
http://www.infoworld.com/d/open-source-software/bossie-awards-2011-the-best-open-source-desktop-and-mobile-software-171722-0¤t=2&last=1#slideshowTop
. 7-Zip
. Google Android
. CamStudio
. Google Chrome
. LibreOffice
. Oracle VM VirtualBox
. PDFCreator
. Pidgin
. TrueCrypt
. VLC
InfoWorld's Test Center picks the best open source applications of 2011
http://www.infoworld.com/d/open-source-software/bossie-awards-2011-the-best-open-source-applications-171572-1¤t=2&last=1#slideshowTop
. Apache Lucene and Solr
. Bonita Open Solution
. Drupal
. WordPress
. Openbravo ERP
. Pentaho BI Suite
. SugarCRM
InfoWorld's Test Center picks the best open source development tools of 2011
. CakePHP
. CoffeeScript
. Git
. Apache Hadoop
. Hudson and Jenkins
. jQuery Mobile and Sencha Touch
. MongoDB
. Node.js
. Web2py
http://www.infoworld.com/d/open-source-software/bossie-awards-2011-the-best-open-source-desktop-and-mobile-software-171722-0¤t=2&last=1#slideshowTop
. 7-Zip
. Google Android
. CamStudio
. Google Chrome
. LibreOffice
. Oracle VM VirtualBox
. PDFCreator
. Pidgin
. TrueCrypt
. VLC
InfoWorld's Test Center picks the best open source applications of 2011
http://www.infoworld.com/d/open-source-software/bossie-awards-2011-the-best-open-source-applications-171572-1¤t=2&last=1#slideshowTop
. Apache Lucene and Solr
. Bonita Open Solution
. Drupal
. WordPress
. Openbravo ERP
. Pentaho BI Suite
. SugarCRM
InfoWorld's Test Center picks the best open source development tools of 2011
. CakePHP
. CoffeeScript
. Git
. Apache Hadoop
. Hudson and Jenkins
. jQuery Mobile and Sencha Touch
. MongoDB
. Node.js
. Web2py
lunes, 10 de octubre de 2011
servidor jabber Openfire en ubuntu
Instala tu propio servidor Jabber con OpenFire en Ubuntu Linux
http://ubunlog.com/instala-tu-propio-servidor-jabber-con-openfire-en-ubuntu-linux/
Pasos de la instalacion
# Instalamos Apache2 + MySQL5.1 + PHP5 y phpmyadmin
sudo apt-get -y install apache2
sudo apt-get -y install mysql-server mysql-common
sudo apt-get -y install php5 php5-cli
sudo apt-get -y install phpmyadmin
# Para que Apache2 mustre el Error de Host
sudo echo "ServerName localhost" >> /etc/apache2/httpd.conf
# Para que Apache2 Mustre Bien los Asentos y Tildes
sudo echo "AddDefaultCharset ISO-8859-1" >> /etc/apache2/conf.d/charset
# Reseteamos Apache2
sudo /etc/init.d/apache2 restart
ya tenemos las aplicaciones mínimas, ahora a instalar OpenFire:
# Instalmos Java
sudo apt-get install sun-java6-bin
# Configuramos Java como Interprete Principal
sudo update-alternatives --config java
# Creamos el Usuario para OpenFire
sudo adduser openfire
# Descargamos OpenFire en Paquete DEB
wget -c http://www.igniterealtime.org/downloads/download-landing.jsp?file=openfire/openfire_3.7.0_all.deb
# Instalamos OpenFire
sudo dpkg -i openfire_3.7.0_all.deb
# Copiamos Contenido Basico para OpenFire y MySQL
sudo cp /usr/share/openfire/resources/database/openfire_mysql.sql $HOME/
sudo chmod 777 openfire_mysql.sql
# Creamos Base de Datos e Importamos Comtenido Basico en MySQL
mysqladmin -h localhost -u root -p create openfire
mysql -h localhost -u root -p openfire < openfire_mysql.sql
# Creamos Usuario y Asignamos Permisos en MySQL
Linea="CREATE USER openfire@localhost IDENTIFIED BY 'CONTRASEÑA';"
echo "$Linea" | mysql -h localhost -u root -p
Linea="GRANT ALL ON openfire.* TO openfire@localhost;"
echo "$Linea" | mysql -h localhost -u root -p
# Eliminamos Archivos Residuales
rm openfire_3.7.0_all.deb
rm openfire_mysql.sql
# Resetamos OpenFire
sudo /etc/init.d/openfire restart
# Abrimos Administrador Web
firefox http://127.0.0.1:9090
http://ubunlog.com/instala-tu-propio-servidor-jabber-con-openfire-en-ubuntu-linux/
Pasos de la instalacion
# Instalamos Apache2 + MySQL5.1 + PHP5 y phpmyadmin
sudo apt-get -y install apache2
sudo apt-get -y install mysql-server mysql-common
sudo apt-get -y install php5 php5-cli
sudo apt-get -y install phpmyadmin
# Para que Apache2 mustre el Error de Host
sudo echo "ServerName localhost" >> /etc/apache2/httpd.conf
# Para que Apache2 Mustre Bien los Asentos y Tildes
sudo echo "AddDefaultCharset ISO-8859-1" >> /etc/apache2/conf.d/charset
# Reseteamos Apache2
sudo /etc/init.d/apache2 restart
ya tenemos las aplicaciones mínimas, ahora a instalar OpenFire:
# Instalmos Java
sudo apt-get install sun-java6-bin
# Configuramos Java como Interprete Principal
sudo update-alternatives --config java
# Creamos el Usuario para OpenFire
sudo adduser openfire
# Descargamos OpenFire en Paquete DEB
wget -c http://www.igniterealtime.org/downloads/download-landing.jsp?file=openfire/openfire_3.7.0_all.deb
# Instalamos OpenFire
sudo dpkg -i openfire_3.7.0_all.deb
# Copiamos Contenido Basico para OpenFire y MySQL
sudo cp /usr/share/openfire/resources/database/openfire_mysql.sql $HOME/
sudo chmod 777 openfire_mysql.sql
# Creamos Base de Datos e Importamos Comtenido Basico en MySQL
mysqladmin -h localhost -u root -p create openfire
mysql -h localhost -u root -p openfire < openfire_mysql.sql
# Creamos Usuario y Asignamos Permisos en MySQL
Linea="CREATE USER openfire@localhost IDENTIFIED BY 'CONTRASEÑA';"
echo "$Linea" | mysql -h localhost -u root -p
Linea="GRANT ALL ON openfire.* TO openfire@localhost;"
echo "$Linea" | mysql -h localhost -u root -p
# Eliminamos Archivos Residuales
rm openfire_3.7.0_all.deb
rm openfire_mysql.sql
# Resetamos OpenFire
sudo /etc/init.d/openfire restart
# Abrimos Administrador Web
firefox http://127.0.0.1:9090
Etiquetas:
linux ubuntu servidor Jabber Openfire
domingo, 9 de octubre de 2011
virtualbox iniciar automaticamente
Guia de VirtualBox en Ubuntu
http://www.guia-ubuntu.org/index.php?title=VirtualBox
sistema=>preferencias=>aplicaciones al inicio y luego Añadir:
en orden pone lo siguiente VBoxManage startvm "nombre de tu sesión de la maquina virtual"
http://www.guia-ubuntu.org/index.php?title=VirtualBox
sistema=>preferencias=>aplicaciones al inicio y luego Añadir:
en orden pone lo siguiente VBoxManage startvm "nombre de tu sesión de la maquina virtual"
ubuntu activar escritorio remoto
Hablitar escritorio remoto x desktop
http://www.howtoforge.com/configure-remote-access-to-your-ubuntu-desktop
servidores vnc
https://help.ubuntu.com/community/VNC/Servers#Connecting_to_your_login_screen
Habilitar en firewall port 5900
http://www.linuxquestions.org/questions/linux-security-4/how-to-open-ports-in-ubuntu-451282/
http://www.howtoforge.com/configure-remote-access-to-your-ubuntu-desktop
servidores vnc
https://help.ubuntu.com/community/VNC/Servers#Connecting_to_your_login_screen
Habilitar en firewall port 5900
http://www.linuxquestions.org/questions/linux-security-4/how-to-open-ports-in-ubuntu-451282/
viernes, 9 de septiembre de 2011
Servidor en Linux Ubuntu Server en Español
http://www.forat.info/2008/08/12/servidor-en-linux-ubuntu-server-manual-completo/
Suscribirse a:
Entradas (Atom)