Difference between revisions of "Kiwix-serve/es"

Jump to navigation Jump to search
Updating to match new version of source page
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(43 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{translations}}
{{translations}}
[[File:Kiwix_0.9_rc2_article_served_en_screenshot.png|right|thumb|Kiwix-serve, embedded in Kiwix, on a Microsoft Windows computer]]
[[File:Kiwix_0.9_rc2_article_served_en_screenshot.png|right|thumb|Kiwix-serve, incluido en Kiwix, en una computadora con Microsoft Windows]]
[[File:Two_kiwix-plugs.jpg|right|thumb|With [[Kiwix-plug]], kiwix-serve runs on pretty small hardwares]]
[[File:Two_kiwix-plugs.jpg|right|thumb|Con [[Kiwix-plug]], kiwix-serve corre en hardwares de bajos recursos]]


'''Kiwix-serve is a ZIM compatible Web server.''' With it's help you can deliver ZIM file content over your network.
'''Kiwix-serve es un servidor Web compatible con ZIM.''' Con él podrás disponer del contenido de un archivo ZIM en tu red local.


Based on the well known protocol HTTP, kiwix-serve allows you to share the [[Special:MyLanguage/Wikipedia_in_all_languages|ZIM files available]] on your computer easily with the other computers connected to your network. You simply need to start kiwix-serve on your computer and others will be able to access it with their own Web browser.
Basado en el bien conocido protocolo HTTP, kiwix-serve te permite compartir fácilmente los [[Special:MyLanguage/Wikipedia_in_all_languages|archivos ZIM disponibles]] en tu computadora con otros usuarios conectados a tu red local. Simplemente necesitas iniciar kiwix-serve y tu contenido estará disponible para cualquiera a través de su navegador Web.


Kiwix-serve is a good solution if you have a LAN network and don't want to install Kiwix on all computers. It's a good alternative if you don't have a shared network disk from which everybody can start Kiwix.
Kiwix-serve es una buena solución si tienes una red local y no quieres instalar Kiwix en todas las computadoras. Es una buena alternativa si no tienes un disco compartido en tu red con el cual todo el mundo pueda iniciar Kiwix.


== Features ==
== Características ==
Kiwix-serve has not so many features like Kiwix, but provides the most important ones:
Kiwix-serve no tiene tantas funciones como Kiwix, pero provee las principales como:
* Full text search engine
*Motor de búsqueda de texto completo
* Search suggestions
*Sugerencias en las búsquedas
* Really small and efficient
*Pequeño y eficiente
* Compatible with almost all browsers
*Compatible com la mayoría de los navegadores
* Available on all platforms
*Disponible en todas las plataformas
* Available as command line executable
*Disponible como ejecutable en línea de comandos
* Embedded in Kiwix UI
*Incorporado en la interfaz de usuario de Kiwix
* Able to deal with one ZIM file or XML library files
*Capaz de lidear con un archivo ZIM o una biblioteca XML


== Get it ==
== Obtenerlo ==
On Microsoft Windows, Apple Mac OSX and GNU/Linux, kiwix-serve is packaged and distributed with Kiwix. You simply need to [[Special:MyLanguage/Software|download the Kiwix installer corresponding to your Operating System]].
En Microsoft Windows, Apple Mac OSX y GNU/Linux, kiwix-serve es empaquetado y distribuído con Kiwix. Simplemente necesitas [[Special:MyLanguage/Software|descargar el instalador de Kiwix correspondiente a tu sistema operativo]].


We also provide [//sourceforge.net/projects/kiwix/files/ pre-compiled binaries for ARM GNU/Linux].
También están disponibles los [//sourceforge.net/projects/kiwix/files/ binarios pre-compilados para ARM GNU/Linux].


For other systems, you will have to [[compilation|download and compile kiwix-serve source code on your own]].
Para otros sistemas, tendrás que [[compilation|descargar y compilar el código fuente de kiwix-serve por ti mismo]].


== Use it ==
== Usarlo ==
Kiwix-serve is directly available in the Kiwix menu "Tools > server", but for people wanting to use it from the command line, here is how it works.
Kiwix-serve esta disponible directamente desde el menú de Kiwix en "Herramientas > servidor", pero para aquellos que desean usarlo desde línea de comandos, así es como funciona.


Prerequisites:
Prerequisitos:
* kiwix-serve binary, available in the Kiwix application directory
*Binario de kiwix-serve, disponible en la carpeta de la aplicación Kiwix.
* A ZIM file or a library file (you can use the library.xml file available in your Kiwix user profile).
*Un archivo ZIM o un archivo de biblioteca (puedes usar el archivo library.xml disponible en tu perfil de usuario Kiwix).


Unix command line (just use kiwix-serve.exe on Microsoft Windows) example to start kiwix-serve with a XML library file:
Unix command line (just use kiwix-serve.exe on Microsoft Windows) example to start kiwix-serve with an XML library file:
<source lang="bash">
<source lang="bash">
kiwix-serve --library ~/.www.kiwix.org/kiwix/efrnsupg.default/library.xml
kiwix-serve --library ~/.www.kiwix.org/kiwix/efrnsupg.default/data/library/library.xml
</source>
</source>


Unix command line example to start kiwix-serve with a ZIM file:
Ejemplo de línea de comando Unix para iniciar kiwix-serve con un archivo ZIM:
<source lang="bash">
<source lang="bash">
kiwix-serve --port=8080 wikipedia.zim
kiwix-serve --port=8080 wikipedia.zim
</source>
</source>


One time kiwix-serve is started, everybody, who has access to this computer per network, will be able to connect to it. You need to retrieve the IP (xxx.xxx.xxx.xxx) of your computer and remember the port (per default 80) you have used and then people will only have to type in their browser address bar:
Una vez que kiwix-serve haya arrancado, cualquiera con acceso a esta computadora por red podrá conectarse. Es necesario obtener la IP (xxx.xxx.xxx.xxx) de tu computadora y recordar el puerto (80 por omisión) que hayas usado, y solo tendrás que escribir esto en la barra del navegador:
<source lang="bash">
<source lang="bash">
http://xxx.xxx.xxx.xxx:80/
http://xxx.xxx.xxx.xxx:80/
</source>
</source>


== Options ==
== Opciones ==
Kiwix-serve provides a few options:
Kiwix-serve provee algunas opciones:
* --port=PORT to specify the port you want to open for listening (per default 80)
* --port=PORT para especificar el puerto en el que va a escuchar (80 por omisión)
* --index=foobar.ix to specify an fulltext index directory
* --index=foobar.idx para especificar el directorio de índice de texto completo
* --daemon to execute the software in background
* --daemon para ejecutar el programa en segundo plano
* --attachToProcess=PID to attach kiwix-serve process to other process
* --attachToProcess=PID para adjuntar el proceso kiwix-serve a otros procesos
* --verbose to get a few logs
* --verbose para obtener algunos registros (logs)


You can also run kiwix-serve without index, but in this case you won't have access to the fulltext search engine.
También puedes ejecutar kiwix-serve sin índice, pero en este caso no tendrás acceso al motor de búsqueda de texto completo.


== See also ==
== Véase también ==
* [http://library.kiwix.org kiwix-serve demonstration instance]
* [[kiwix-index]]
* [[kiwix-index]]
* [[kiwix-manage]]
* [[kiwix-manage]]
* [[kiwix-plug]]
* [[kiwix-plug]]
* [http://kv5r.com/computers/offline-dictionary-server/ How-to setup kiwix.exe as a Windows service]
4,922

edits

Navigation menu