Google Search How to install OpenERP 8.0 Alpha on a fresh Debian / Ubuntu server.
I do not have sufficient kerma to post URL to page where details instructions are give to install OpenERP V8.
Alternately if you failed to find right tutorial blog post for V8 Installation, try following:
hxxps://coderwall.com/p/auon0q
Just change hxxps to https and then try to open URL
For those who are having difficulties with bzr thing to get latest updates automatically from repositories. do as follows:
First create addons folders as per your requirement by throwing following commands:
For Receiving Addons (Official Addons, Extra Official Addons and Community Addons):
bzr checkout lp:~openerp/openobject-addons/trunk --lightweight addons
bzr checkout lp:~openerp-commiter/openobject-addons/trunk-extra-addons --lightweight addons-extra
bzr checkout lp:~openerp-community/openobject-addons/trunk-addons-community --lightweight addons-community
For Updating Addons (all): Go to each addons directory
cd addons
bzr update
You can create symlink to one central addons directory (in my case it's path: /srv/openerp/openobject-server/openerp/addons/
)
Let's imagine you have did successful bzr checkout command as above, now want to make all addons available inside your ERP -> Settings -> Addons, either you copy specific addons to central addons directory.
OR
You can create symlink from all addons directories to our central addons directory.
ln -s /srv/openerp/addons/* /srv/openerp/openobject-server/openerp/addons/
ln -s /srv/openerp/addons-community/* /srv/openerp/openobject-server/openerp/addons/
ln -s /srv/openerp/addons-extra/* /srv/openerp/openobject-server/openerp/addons/
You can also automate update and symlink command by creating alias in your ./bashrc file or you can write small shell script to make it less annoying.
Remember to Restart Webserver(s) and Update Addons List inside your ERP everytime you do updates to make sure it works fine.