EyeOS: Difference between revisions
(added commands for latest Eyeos Version 2.5) |
(replace /etc/init.d with rc-service) |
||
(9 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{Delete|To my knowledge, eyeOS after version 2.5 is now a proprietary product with no source available. The current URL of the project is (supposedly): http://www.eyeos.com/en{{dead link|DNS SERVFAIL}}}} | |||
eyeOS is an open source web desktop following the cloud computing concept that leverages collaboration and communication among users. It is mainly written in PHP, XML, and JavaScript. It acts as a platform for web applications written using the eyeOS Toolkit. It includes a Desktop environment with 67 applications and system utilities | eyeOS is an open source web desktop following the cloud computing concept that leverages collaboration and communication among users. It is mainly written in PHP, XML, and JavaScript. It acts as a platform for web applications written using the eyeOS Toolkit. It includes a Desktop environment with 67 applications and system utilities | ||
= Set up eyeOS on Alpine Linux = | |||
This document will be a quick c/p guide to setup eyeOS on Alpine linux. What we will setup is the following: | This document will be a quick c/p guide to setup eyeOS on Alpine linux. What we will setup is the following: | ||
Line 10: | Line 10: | ||
* eyeOS | * eyeOS | ||
= Install lighttpd, and PHP = | |||
{{:Setting Up Lighttpd With FastCGI}} | {{:Setting Up Lighttpd With FastCGI}} | ||
= Installing and configuring eyeOS = | |||
Make webapps folder | Make webapps folder | ||
{{Cmd|mkdir /usr/share/webapps/ -p}} | |||
Download previous version: | Download previous version: | ||
{{Cmd|cd /usr/share/webapps/ | |||
wget http://sourceforge.net/projects/eyeos/files/eyeos/1.9.0.1/eyeOS_1.9.0.1.zip/download | wget http://sourceforge.net/projects/eyeos/files/eyeos/1.9.0.1/eyeOS_1.9.0.1.zip/download{{dead link}}}} | ||
Unpack and delete zip file | Unpack and delete zip file | ||
{{Cmd|unzip download | |||
rm download | rm download}} | ||
Also you can download latest version: | Also you can download latest version: | ||
{{Cmd|cd /usr/share/webapps/ | |||
wget http://sourceforge.net/projects/eyeos/files/eyeos2/eyeos-2.5.tar.gz/download | wget http://sourceforge.net/projects/eyeos/files/eyeos2/eyeos-2.5.tar.gz/download{{dead link}}}} | ||
Unpack and delete tar.gz file | Unpack and delete tar.gz file | ||
{{Cmd|cd /usr/share/webapps/ | |||
tar -xvzf download | tar -xvzf download}}<big>'''Project and source files''' https://sourceforge.net/projects/eyeos/{{dead link}}</big> | ||
Change Folder Persmissions | Change Folder Persmissions <small>[Dubious - Someone please check this]</small> | ||
{{Cmd|chmod -R 777 /usr/share/webapps/eyeOS/}} | |||
Make symlinks to eyeOS | Make symlinks to eyeOS | ||
{{Cmd|ln -s /usr/share/webapps/eyeOS/ /var/www/localhost/htdocs/eyeos}} | |||
Unpack main package | Unpack main package | ||
{{Cmd|cd /usr/share/webapps/eyeOS/ | |||
mv /usr/share/webapps/eyeOS/package.eyepackage /usr/share/webapps/eyeOS/package.tar.gz | mv /usr/share/webapps/eyeOS/package.eyepackage /usr/share/webapps/eyeOS/package.tar.gz | ||
tar zxvf /usr/share/webapps/eyeOS/package.tar.gz | tar zxvf /usr/share/webapps/eyeOS/package.tar.gz}} | ||
== Starting == | == Starting == | ||
Starting http service and adding to boot | |||
{{Cmd|rc-service lighttpd start && rc-update add lighttpd default}} | |||
== Config your eyeos == | == Config your eyeos == | ||
Browse to: <nowiki>http://WEBSERVER_IP_ADDRESS/eyeos</nowiki> | |||
Browse to: http://WEBSERVER_IP_ADDRESS/eyeos | |||
Please fill out the following form to install eyeOS: | Please fill out the following form to install eyeOS: | ||
Line 74: | Line 70: | ||
When you finish, press "Install eyeOS!" button, and thats all. :) | When you finish, press "Install eyeOS!" button, and thats all. :) | ||
You have eyeOS cloud computing system working, | You have eyeOS cloud computing system working. To access it, go to <nowiki>http://WEBSERVER_IP_ADDRESS/eyeOS</nowiki> and enjoy! | ||
[[Category:Desktop]] | |||
[[Category:PHP]] |
Latest revision as of 10:07, 17 November 2023
This material is proposed for deletion ... To my knowledge, eyeOS after version 2.5 is now a proprietary product with no source available. The current URL of the project is (supposedly): http://www.eyeos.com/en[Dead Link]
(Discuss) |
eyeOS is an open source web desktop following the cloud computing concept that leverages collaboration and communication among users. It is mainly written in PHP, XML, and JavaScript. It acts as a platform for web applications written using the eyeOS Toolkit. It includes a Desktop environment with 67 applications and system utilities
Set up eyeOS on Alpine Linux
This document will be a quick c/p guide to setup eyeOS on Alpine linux. What we will setup is the following:
- Lighttpd with PHP
- eyeOS
Install lighttpd, and PHP
Basic Installation
For installing the additional packages first activate community packages and update the package index
Install the required packages:
# apk add lighttpd php82 fcgi php82-cgi
Configure Lighttpd
Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:
Contents of /etc/lighttpd/lighttpd.conf
Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.
Contents of /etc/lighttpd/mod_fastcgi.conf
Start lighttpd
service and add it to default runlevel
# rc-service lighttpd start # rc-update add lighttpd default
Installing and configuring eyeOS
Make webapps folder
mkdir /usr/share/webapps/ -p
Download previous version:
cd /usr/share/webapps/ wget http://sourceforge.net/projects/eyeos/files/eyeos/1.9.0.1/eyeOS_1.9.0.1.zip/download[Dead Link]
Unpack and delete zip file
unzip download rm download
Also you can download latest version:
cd /usr/share/webapps/ wget http://sourceforge.net/projects/eyeos/files/eyeos2/eyeos-2.5.tar.gz/download[Dead Link]
Unpack and delete tar.gz file
cd /usr/share/webapps/ tar -xvzf download
Project and source files https://sourceforge.net/projects/eyeos/[Dead Link]
Change Folder Persmissions [Dubious - Someone please check this]
chmod -R 777 /usr/share/webapps/eyeOS/
Make symlinks to eyeOS
ln -s /usr/share/webapps/eyeOS/ /var/www/localhost/htdocs/eyeos
Unpack main package
cd /usr/share/webapps/eyeOS/ mv /usr/share/webapps/eyeOS/package.eyepackage /usr/share/webapps/eyeOS/package.tar.gz tar zxvf /usr/share/webapps/eyeOS/package.tar.gz
Starting
Starting http service and adding to boot
rc-service lighttpd start && rc-update add lighttpd default
Config your eyeos
Browse to: http://WEBSERVER_IP_ADDRESS/eyeos
Please fill out the following form to install eyeOS:
Root Password Retype Password System Name Allow users to create accounts
When you finish, press "Install eyeOS!" button, and thats all. :) You have eyeOS cloud computing system working. To access it, go to http://WEBSERVER_IP_ADDRESS/eyeOS and enjoy!