Video Conferencias

Forums: 

Hola quisiera que me indicaran como realizar una video conferencia desde mi PC tengo instlado Debian y no hace mucho asistí a una feria de Software Libre aquí en Ibarra en mi Universidad y aquí hicieron la video conferencia quisiera que me indiquen como hacerlo en mi computadora gracias:)

Puedes utilizar el FreeJ

Imagen de tuxero

Puedes utilizar el FreeJ para emitir; si necesitas instalar un servidor puedes usar el Icecast; aunque si usas GNOME a lo mejor tienes instalado el GnomeMeeting que ahora se llama Ekiga

Durante el FLISOL en Portoviejo usamos el FreeJ para emitir a un servidor con Icecast.

Antes fueron los dinosaurios los que se extinguieron, ahora le está llegando la hora a Micro$oft

Gabriel Eduardo Morejón López. [email]gabrielmorejon@gmail.com[/email] [img]http://counter.li.org/cgi-bin/certificate.cgi/378903

Instala

Imagen de RazaMetaL

Instala gnomemeeting:


aptitude install gnomemeeting

Gnomemeeting utiliza H.323, lo que significa que podras conectarte con un usuario guindous que utilize netmeeting que tambien soporta H.323.

-------------------------

Antes de preguntar visita esta dirección :evil:

 

-----

Visita este [url=http://www.sindominio.net/ayuda/preguntas-inteligentes.html]link[/url] :evil:

[img]http://www.bbspot.com/Images/News_Features/2003/01/os_quiz/debian.jpg[/img]

(adsbygoogle = window.adsbygoogle || []).push({});

Respuesta

Muchas gracias por contestar mis preguntas, y siento mucho si te molesta n mis preguntas o mi forma de hacerlas nunca a sido esa mi intencion, si yo acudo siempre a este foro es porque me parece un lugar fantástico para encontrar todo tipo de respuesta y porque además en el medio no hay nadie que tenga tanto conocimiento sobre software libre,por otra parte es muy interesante conocer diferentes formas de realizar un trabajo con ayuda de expertos.
De todas formas muchas gracias por tu forma de ayudar a las personas ;)

Quote:Muchas gracias por

Imagen de RazaMetaL

[quote]Muchas gracias por contestar mis preguntas, y siento mucho si te molesta n mis preguntas o mi forma de hacerlas nunca a sido esa mi intencion,[/quote]

Dije algo malo?? fui grosero? troll? no entiendo :?

Explicame por favor porque crees que tus preguntas me molestan.

-------------------------

Antes de preguntar visita esta dirección :evil:

 

-----

Visita este [url=http://www.sindominio.net/ayuda/preguntas-inteligentes.html]link[/url] :evil:

[img]http://www.bbspot.com/Images/News_Features/2003/01/os_quiz/debian.jpg[/img]

(adsbygoogle = window.adsbygoogle || []).push({});

Ja,ja, Raza, me parece que

Imagen de Root Bit

Ja,ja, Raza, me parece que nuestro amigo vio tu firma o pie de pagina que dice "Antes de preguntar visita esta dirección"

Supongo que es por eso el comentario!!

Ahora si es por eso mi estimado amigo te comento que no es que moleste la preguntas de nadie, solamente que son normas de buena costumbre que se usan en las listas, para tratar de evitar preguntas y respuestas repetitivas.

Ejm.

Aqui en la lista he visto un monton de veces la misma pregunta "Cual es el mejor linux" cuando este tema se lo ha tratado hasta el cansancio.

La unica sugerencia que trata de hacer la firma de Raza es, lee, investiga y despues pregunta.

There are only 10 types people in the world:
Those who understand binary and those who don't

There are only 10 types people in the world:
Those who understand binary and those who don't

Como diria el Chapulin

Imagen de RazaMetaL

Como diria el Chapulin Colorado, lo sospeche desde un principio ! :evil:

-------------------------

Antes de preguntar visita esta dirección :evil:

 

-----

Visita este [url=http://www.sindominio.net/ayuda/preguntas-inteligentes.html]link[/url] :evil:

[img]http://www.bbspot.com/Images/News_Features/2003/01/os_quiz/debian.jpg[/img]

(adsbygoogle = window.adsbygoogle || []).push({});

configuración icecast

Hola como están, espero qeu bien la razon por la que les escribo es debido a un reciente problemas con icecast ya que no me inicia el servicio espero me peudan ayudar aqui les mand los archivos d configuracñon para ver si vven algun error de mi parte o su flata algo
icecas.xml:

100
2
5
524288
30
15
10

1

65535

J@h!r091085

J@h!r091085

admin
jahir91085

/live.nsv
-->

15
http://dir.xiph.org/cgi-bin/yp-cgi

-->

localhost

8000

8001

-->

definitions here.
The default is 0 -->

127.0.0.1
8001
/example.ogg
/different.ogg
0

0

-->

section if you want to use advanced options,
like alternative usernames or passwords

/example-complex.ogg

othersource
hackmemore

1
/tmp/dump-example1.ogg
65536
/example2.ogg
1
1
/example_intro.ogg
1
1

/home/icecast/bin/stream-start
/home/icecast/bin/stream-stop

/auth_example.ogg

-->

1

/usr/share/icecast2

is turned on below, these paths must both
be relative to the new root, not the original root -->
/var/log/icecast2
/usr/share/icecast2/web
/usr/share/icecast2/admin

-->

access.log
error.log

3
10000

0

nobody
nogroup

-->


icecast2:

#! /bin/sh
### BEGIN INIT INFO
# Provides: icecast2
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Starts the icecast audio streaming server daemon
### END INIT INFO
#
# icecast2
#
# Written by Miquel van Smoorenburg .
# Modified for Debian
# by Ian Murdock .
#
# Further modified by Keegan Quinn
# for use with Icecast 2
#

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/icecast2
NAME=icecast2
DESC=icecast2

test -x $DAEMON || exit 0

# Defaults
CONFIGFILE="/etc/icecast2/icecast.xml"
CONFIGDEFAULTFILE="/etc/default/icecast2"
USERID=icecast2
GROUPID=icecast
ENABLE="true"

# Reads config file (will override defaults above)
[ -r "$CONFIGDEFAULTFILE" ] && . $CONFIGDEFAULTFILE

if [ "$ENABLE" != "true" ]; then
echo "$NAME daemon disabled - read $CONFIGDEFAULTFILE."
exit 0
fi

set -e

case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --chuid $USERID:$GROUPID \
--exec $DAEMON -- -b -c $CONFIGFILE
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --oknodo --quiet --exec $DAEMON
echo "$NAME."
;;
reload|force-reload)
echo "Reloading $DESC configuration files."
start-stop-daemon --stop --signal 1 --quiet --exec $DAEMON
;;
restart)
echo -n "Restarting $DESC: "
# Send TERM after 5 seconds, wait at most 30 seconds.
start-stop-daemon --stop --oknodo --retry TERM/5/0/30 --quiet --exec $DAEMON
start-stop-daemon --start --quiet --chuid $USERID:$GROUPID \
--exec $DAEMON -- -b -c $CONFIGFILE
echo "$NAME."
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac

exit 0
Mensaje de error cuando intento iniciar el servicio
jahiro@WarMachine:~$ /etc/init.d/icecast2 start
Starting icecast2: start-stop-daemon: unable to set gid to 125 (Operation not permited)