RetroShare is a Free and Open Source cross-platform, Friend-2-Friend and secure decentralised communication platform.
Go to file
Cyril Soler b055500245 Merge pull request #117 from G10h4ck/master
Remove some garbage from pqissl
2015-10-02 11:03:52 -04:00
build_scripts updated ubuntu changelog 2015-09-21 22:58:58 -04:00
data Move data dir from build_scripts/ to root and adapt RedHat build files 2015-08-25 00:56:50 +02:00
libbitdht/src updated ubuntu changelog 2015-09-21 22:58:58 -04:00
libresapi/src Order in WebUI Lobbies by first: 2015-09-25 17:00:50 +02:00
libretroshare/src pqiconnect remove ni NULL pointer check as it would crash anyway for null pointer dereferencing before checking 2015-09-27 21:51:06 +02:00
openpgpsdk/src CONFIG shouldn't be reset at qmake call, use CONFIG+=… instead 2015-09-01 14:53:17 +02:00
plugins Merge pull request #96 from AsamK/qmake_3 2015-09-07 20:38:47 -04:00
retroshare-gui/src Merge pull request #98 from PhenomRetroShare/AddMinimumFontSizeInChat 2015-10-02 10:53:00 -04:00
retroshare-nogui/src Fixed mac compile. Moved sqlcipher.a to libretroshare.pro 2015-09-06 22:27:22 +02:00
rsctrl/src updated ubuntu changelog 2015-09-21 22:58:58 -04:00
supportlibs/pegmarkdown updated ubuntu changelog 2015-09-21 22:58:58 -04:00
tests updated tests and also fixed a few bugs in using random initialisation routines 2015-01-11 22:19:32 +00:00
.gitignore Remove Thumbs.db files and add to .gitignore 2015-08-27 22:35:28 +02:00
.travis.yml Fix Travis CI compilation by adding libavutil-dev package. 2015-09-04 17:28:45 +02:00
build-all-mingw32make.bat update windows build scripts 2015-08-11 16:44:59 +02:00
README.md Update README.md 2015-09-01 14:53:18 +02:00
retroshare.pri Use PLUGIN_DIR to define plugin directory only once 2015-09-06 22:27:22 +02:00
RetroShare.pro Disable compiling of pegmarkdown by default, only used for wiki 2015-09-05 09:25:08 +02:00
TODO.txt Fixed layout of the ServicePermissionsPage 2015-08-08 22:46:31 +02:00

RetroShare

RetroShare is a decentralized, private and secure commmunication and sharing platform. RetroShare provides filesharing, chat, messages, forums and channels.

Compilation on Linux

  1. Install package dependencies:

    • Debian/Ubuntu
    sudo apt-get install libglib2.0-dev libupnp-dev qt4-dev-tools \
        libqt4-dev libssl-dev libxss-dev libgnome-keyring-dev libbz2-dev \
        libqt4-opengl-dev libqtmultimediakit1 qtmobility-dev \
        libspeex-dev libspeexdsp-dev libxslt1-dev libcurl4-openssl-dev \
        libopencv-dev tcl8.5 libmicrohttpd-dev
    
    • openSUSE
    sudo zypper install gcc-c++ libqt4-devel libgnome-keyring-devel \
        glib2-devel speex-devel libssh-devel protobuf-devel libcurl-devel \
        libxml2-devel libxslt-devel sqlcipher-devel libmicrohttpd-devel \
        opencv-devel speexdsp-devel libupnp-devel
    
    • Arch Linux
    pacman -S base-devel libgnome-keyring libmicrohttpd libupnp libxslt \
        libxss opencv qt4 speex sqlcipher
    
  2. Checkout the source code

    mkdir ~/retroshare
    cd ~/retroshare 
    git clone https://github.com/RetroShare/RetroShare.git trunk
    
  3. Compile

    cd trunk
    qmake CONFIG+=debug
    make
    
  4. Install

    sudo make install
    

    The executables produced will be:

      /usr/bin/RetroShare06
      /usr/bin/RetroShare06-nogui
    

Compile only retroshare-nogui

If you want to run RetroShare on a server and dont need the gui and plugins, you can run the following commands to only compile/install the nogui version:

qmake
make retroshare-nogui
sudo make retroshare-nogui-install_subtargets

For packagers

Packagers can use PREFIX and LIB_DIR to customize the installation paths:

qmake PREFIX=/usr LIB_DIR=/usr/lib64 "CONFIG-=debug" "CONFIG+=release"
make
make INSTALL_ROOT=${PKGDIR} install

If libsqlcipher is not available as a package

You need to place sqlcipher so that the hierarchy is:

  retroshare
      |
      +--- trunk
      |
      +--- lib
            |
            +---- sqlcipher
mkdir lib
cd lib
git clone git://github.com/sqlcipher/sqlcipher.git
cd sqlcipher
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
make
cd ..

Using retroshare-nogui & webUI

The webUI needs to be enabled as a parameter option in retroshare-nogui:

./retroshare-nogui --webinterface 9090 --docroot /usr/share/RetroShare06/webui/

The webUI is only accessible on localhost:9090 (unless you canged that option in the GUI). It is advised to keep it that way so that your RS cannot be controlled using an untrusted connection.

To access your web UI from a distance, just open a SSH tunnel on it:

distant_machine:~/ >  ssh rs_host -L 9090:localhost:9090 -N

"rs_host" is the machine running retroshare-nogui. Then on the distant machine, access your webUI on

  http://localhost:9090

That also works with a retroshare GUI of course.