| 1 | | = Instalando o OpenLanhouse = |
| 2 | | |
| 3 | | [[PageOutline(2,,inline)]] |
| 4 | | |
| 5 | | == Compilar pelos sources == |
| 6 | | === Dependencias === |
| 7 | | Core (tanto cliente tanto servidor nescessitam dessas dependências): |
| 8 | | * [http://www.pygtk.org python-gtk2] |
| 9 | | * [http://pypi.python.org/pypi/python-gnutls python-gnutls] |
| 10 | | |
| 11 | | Cliente: |
| 12 | | * [http://ftp.gnome.org/pub/GNOME/sources/gnome-panel libpanelapplet2] |
| 13 | | * [http://dbus.freedesktop.org/releases/dbus-glib dbus-glib] |
| 14 | | * [http://dbus.freedesktop.org/releases/dbus-python dbus-python] |
| 15 | | |
| 16 | | Servidor: |
| 17 | | * [http://www.sqlalchemy.org python-sqlalchemy] |
| 18 | | |
| 19 | | === Compilar === |
| 20 | | Depois de você ter resolvido todas as dependencias, instale o openlh-core: |
| 21 | | {{{ |
| 22 | | wget http://openlanhouse.org/releases/0.2.1/openlh-core-0.2.1.tar.gz |
| 23 | | tar -zxvf openlh-core-0.2.1.tar.gz |
| 24 | | cd openlh-core-0.2.1 |
| 25 | | ./configure --prefix=/usr |
| 26 | | make |
| 27 | | make install (this command be executed by root) |
| 28 | | }}} |
| 29 | | |
| 30 | | Para o Servidor: |
| 31 | | {{{ |
| 32 | | wget http://openlanhouse.org/releases/0.2.1/openlh-server-0.2.1.tar.gz |
| 33 | | tar -zxvf openlh-server-0.2.1.tar.gz |
| 34 | | cd openlh-server-0.2.1 |
| 35 | | ./configure --prefix=/usr |
| 36 | | make |
| 37 | | make install (this command be executed by root) |
| 38 | | }}} |
| 39 | | |
| 40 | | Para o Cliente: |
| 41 | | {{{ |
| 42 | | wget http://openlanhouse.org/releases/0.2.1/openlh-client-0.2.1.tar.gz |
| 43 | | tar -zxvf openlh-client-0.2.1.tar.gz |
| 44 | | cd openlh-client-0.2.1 |
| 45 | | ./configure --prefix=/usr |
| 46 | | make |
| 47 | | make install (this command be executed by root) |
| 48 | | }}} |
| 49 | | |
| 50 | | == Arch Linux == |
| 51 | | Para instalar no Arch Linux é muito simples, instale com um único comando. |
| 52 | | |
| 53 | | Servidor: |
| 54 | | {{{ |
| 55 | | pacman -S openlh-server |
| 56 | | }}} |
| 57 | | |
| 58 | | Cliente: |
| 59 | | {{{ |
| 60 | | pacman -S openlh-client |
| 61 | | }}} |
| 62 | | |
| 63 | | == Debian == |
| 64 | | primeiro de tudo instale o 'openlh-core': |
| 65 | | {{{ |
| 66 | | wget http://openlanhouse.org/releases/0.2.1/debian/openlh-core_0.2.1-1_i386.deb |
| 67 | | dpkg -i openlh-core_0.2.1-1_i386.deb |
| 68 | | apt-get -f install |
| 69 | | }}} |
| 70 | | |
| 71 | | para o servidor: |
| 72 | | {{{ |
| 73 | | wget http://openlanhouse.org/releases/0.2.1/debian/openlh-server_0.2.1-1_i386.deb |
| 74 | | dpkg -i openlh-server_0.2.1-1_i386.deb |
| 75 | | apt-get -f install |
| 76 | | }}} |
| 77 | | para o cliente: |
| 78 | | {{{ |
| 79 | | wget http://openlanhouse.org/releases/0.2.1/debian/openlh-client_0.2.1-1_i386.deb |
| 80 | | dpkg -i openlh-client_0.2.1-1_i386.deb |
| 81 | | apt-get -f install |
| 82 | | }}} |
| 83 | | |