ZaDarkSide / friendup

Friend OS is the Internet Operating System for any device, running on posix compatible hosts. Also known as the Friend Unifying Platform.

Home Page:https://friendos.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Friend Unifying Platform version 1.2-RC2

NB: For extended functionality and related Friend projects such as the Android app refer here.


The Friend OS leverages the computing power of the Internet to offer many of the features and functionalities of Chrome OS, Windows, Linux, Android, macOS or iOS, without the need to choose a specific hardware platform or proprietary software package. If you have a device that is connected to the Internet, you can use the Friend OS.

The FriendOS liberates you from Big Tech: It gives you control to create, collaborate, store and share information, data and content across all your devices in a secure private environment and access it anywhere on any device.

FriendUP Workspace

Across devices

With its responsive desktop environment and client-side, javascript based technologies, FriendUP offers a new reality where you work and play online, independently from your local web enabled hardware. By supporting all screen formats, from mobile phones to laptops and VR, FriendUP is a single target through which you can reach the entire user market. We have used considerable amount of time on making the FriendUP APIs simple and easy to understand. That is also why we are packaging the FriendUP Developers Manual with this release. In its third draft, it will soon cover the entire 1.0.x platform.

Distributed and powerful

FriendUP aims to make the powerful emerging web technologies easy to work with. This is why we reach out to you, to help us enrich this platform with DOS drivers, modules, libraries and apps so that we can cover all of the interesting technologies out there that people use and love. In the Future, FriendUP will be to the cloud users what Linux is for machines.

Getting started

Prior to installation, check that 'bash', or a compatible shell is installed on your machine.

Just clone this repository, run the install.sh script and follow the on screen instructions. This script should run on most modern Linux distributions. Post to the Developer Community if you run into any problems here.

The below script has been tested on Ubuntu 16. You might need to install MySQL or MariaDB first.

git clone https://github.com/FriendSoftwareLabs/friendup
apt install make cmake dialog
cd friendup/
./install.sh

We recommend setting up a dedicated user for your FriendUP installation. You will need the MySQL root password to allow the install script to create the database and user.

Note: the installer will not work if you launch it with anything else than bash. Example:

sh install.sh   << Will *not* work...

Dependencies

The Friend installer relies on the following packages to work, and must be present on the machine before starting an installation :

  • bash
  • sudo
  • gcc

If you encounter an error during the dependencies installation process, please refer to the end of this file for a complete list of the necessary dependencies, and install them manually. Then restart the installer.

Running the serving kernel manually

Friend Core can be installed in any directory you wish, including root directories. The installer creates two global variables, FRIEND_HOME pointing to the cloned friendup directory, and FRIEND_PATH pointing to the directory where Friend Core has been build. After running the installer script, you will need to reboot your machine for these variables to be defined.

When you want to run Friend Core yourself, you enter into its build directory. Like this:

cd myfriend/build/
./FriendCore

If you want to run it without debug output in your console, you can use nohup:

nohup ./FriendCore >> /dev/null &

If you want to kill Friend Core and it's dedicated servers (see later), use the killfriend.sh script located in both the build directory and the friendup directory.

./killfriend.sh

The installation script overwrites the content of the Friend Core configuration file (build/cfg/cfg.ini), and will erase the extra data you have entered manually.

If you just want to recompile Friend Core, enter the following command in a shell:

cd myfriend
make clean setup release install

Default login

Once the installation script is finished and your local FriendCore is up and running use these credentials to log in:

    User: fadmin
Password: securefassword

The first thing you may want to do, is add a new user : run the 'users' application that can be found in the 'System:Software/System' directory.

Friend Network

Friend Network is included in this project, but must be installed separately. It can only be installed on an already installed Friend Core.

To install Friend Network, enter the following command in a shell:

cd myfriend
./installFriendNetwork.sh

In order to function, Friend Network needs a node server running on the machine. Friend Network installer will automatically install the latest version of node, npm and n.

You will also need to provide links to a TURN server, a STUN server and the credentials to enter the TURN server. The installer provides access to a public stun and turn server at:

  turn Server: ice.friendup.cloud
    turn User: TINA
turn Password: TURNER
stun Server: ice.friendup.cloud

Friend Network server will be automatically launched when you run Friend Core after a successful installation.

In order to kill Friend Core and all the associated servers, we suggest you use the 'killfriend.sh' script.

Friend Chat

You can also install Friend Chat, our integrated text and video communication tool.

FriendChat can only be installed on an already installed Friend Core.

To install FriendChat, enter the following command in a shell:

cd myfriend
./installFriendChat.sh

The installer will check for node.js, npm and n and install them if necessary.

Friend Chat needs Friend Core to run with TLS protection : if you have not defined TLS keys during the installation of Friend Core, the Friend Chat installer will give you the opportunity to create them. Once this is done, Friend Core will run in TLS mode, and you will have to connect to your Friend machine with 'https' instead of 'http'.

As for Friend Network, you will need to provide links to a TURN server, a STUN server and the credentials to enter the TURN server.

Friend Chat needs two servers to function, the 'Presence' server, and the 'Friend Chat' server. Both servers will automatically be launched by Friend Core.

In order to kill Friend Core and all the associated servers, we suggest you use the 'killfriend.sh' script.

Please note that the 'Presence' server, necessary for IRC connections, does not work with user 'fadmin'": you have to create a real user and define both its name and user name and use its session for it to connect.

Ports

  • 6502 -> used by main Friend Workspace. Needs to be forwarded by the router to permit remote access.
  • 6500 ->
  • 3306 -> used by MSQL database
  • 3478 -> (UDP, TCP) Stun servers
  • 5349 -> (TLS) Stun servers

Documentation

You can find the developer documentation in the docs folder. An administration guide will be added soon.

Licensing

FriendUP is a large system consisting of several layers. It has a kernel core that is managing the Friend resources. This one is licensed under the MIT license. Then it has modules, DOS drivers and runtime linked libraries. These are licensed under the LGPLv3 license. Finally, we have the GUI for Friend - the Friend Workspace. This is licensed under the AGPLv3 license.

Contributor agreement

New developers joining the project needs to sign our contributor agreement before they are allowed to commit changes to the project. The contributor agreement can be found here:

The contributor agreement is our vehicle for ensuring that this project can enjoy commercial support and gain essential project management, as well as an open book development cycle on Github.

Developer Community / Chat rooms

We invite everybody to join our Discord developer community at https://discord.gg/GREj9Gv.

Demo server

For those that just want to test our Workspace, you can try our demo after registering at https://go.friendup.cloud/

Tested - a lot

We extensively test our platform and use https://www.browserstack.com/ for cross browser testing.

List of dependencies

This is the list of dependencies Friend Core needs to function.

  • bash
  • libssh2-1-dev
  • libssh-dev
  • libssl-dev
  • libaio-dev
  • mysql-server
  • php5-cli
  • php5-gd
  • php5-imap
  • php5-mysql
  • php5-curl
  • libmysqlclient-dev
  • build-essential
  • libmatheval-dev
  • libmagic-dev
  • libgd-dev
  • libwebsockets-dev
  • rsync
  • valgrind-dbg
  • libxml2-dev
  • php5-readline
  • cmake
  • ssh
  • make

About

Friend OS is the Internet Operating System for any device, running on posix compatible hosts. Also known as the Friend Unifying Platform.

https://friendos.com/

License:Other


Languages

Language:C 55.1%Language:JavaScript 23.6%Language:Perl 11.6%Language:PHP 2.6%Language:HTML 1.8%Language:CSS 1.0%Language:C++ 1.0%Language:CMake 0.7%Language:Roff 0.6%Language:Shell 0.5%Language:Makefile 0.5%Language:Objective-C 0.4%Language:Assembly 0.4%Language:M4 0.2%Language:Java 0.0%Language:Clean 0.0%Language:Python 0.0%Language:TSQL 0.0%Language:Emacs Lisp 0.0%Language:eC 0.0%Language:NSIS 0.0%Language:DIGITAL Command Language 0.0%Language:Dockerfile 0.0%Language:Brainfuck 0.0%Language:Module Management System 0.0%Language:Batchfile 0.0%Language:Lua 0.0%Language:Awk 0.0%Language:PLpgSQL 0.0%Language:sed 0.0%