Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Odoo 11/Ubuntu 16.04: How to transfer custom or third-party apps to your apps folder for Dummies or lazy people

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
moduleinstallappscustomodoo11
4 Răspunsuri
29071 Vizualizări
Imagine profil
Patrick Strzempek
Hello,

I try to install a custom module by Ubuntu server 16.04 LTS, but I have no good right !!!

First metho I Try :

$ sudo chmod 755 -R odoo/

$ ls -lh

total 8,0K

drwxr-xr-x 5 odoo odoo 4,0K janv. 5 09:03 odoo

It's don't work !

Other try :

$ sudo chown -R root /odoo

result :

drwxr-xr-x 5 root odoo 4,0K janv. 5 09:03 odoo

Please could you help me to change my right to install custom module ?

thank you
Pat



1
Imagine profil
Abandonează
Ermin Trevisan

Please read the documentation about installing and deploying Odoo (www.odoo.com/documentation) carefully until you have understood it.

Imagine profil
Ermin Trevisan
Cel mai bun răspuns

Prerequisites:

- you are working as the default user (usually this is "ubuntu")

- create a folder "transfer" in your home directory:

ubuntu@ip-192-168-110-106:~$ mkdir transfer

- locate your Odoo-Home directory, if you are using Odoo's package install, then your Odoo-Home is located here: "/usr/lib/python3/dist-packages/odoo". If you use another installation method, which is not recommended if you need to follow this post, then check your installation.

- create a folder for your custom or third-party apps at "Odoo-Home/custom/addons". Make sure you have specified this folder as addon-path in your odoo.conf file. Or use the addons folder of your odoo.conf file, if you have already specified and implemented it.

STEP 1

Use ssh or any similar tool (WinSCP or Filezilla for example) to transfer your module to your transfer folder "/home/ubuntu/transfer". Unzip it before the transfer or afterwards, but then delete the .zip archive file afterwards.

STEP 2

Create a bash-file (or use the following commands manually), such as "install_modules.sh" for example to move the module(s) from "/home/ubuntu/transfer" to "Odoo-Home/custom/addons" (replace Odoo-Home with your proper path) and to ensure proper permissions and access rights.

#!/bin/bash
sudo rsync -a /home/ubuntu/transfer/ /Odoo-Home/custom/addons/
sudo rm -rf /home/ubuntu/transfer/*
sudo chown -R root:odoo /Odoo-Home/custom/addons/
sudo find /Odoo-Home/custom/addons/ -type d -exec chmod 755 {} \;
sudo find /Odoo-Home/custom/addons/ -type f -exec chmod 644 {} \;
Save the file and execute it from your home directory by using the command

ubuntu@ip-192-168-110-106:~$ sh install_modules.sh

Happy installing!

1
Imagine profil
Abandonează
Hugo Isaac Perez

Hi Ermin Trevisan thanks for your answer it was super useful.

I would like to add to your answer the following steps:

Step 3:

Activate developer mode on Settings> General Settings > Activate developer mode

Step 4:

Go to Apps menu and click on Update Apps List.

Those are the only extra steps I had to do to make it work.

Note: Im on Odoo 13

Imagine profil
Nikhil Krishnan
Cel mai bun răspuns
sudo mkdir /../../odoo/<custom_addons> 
sudo chown -R odoo:odoo /../../odoo/<custom_addons>

Hi Patrick Strzempek,

Use these comments, 
to create and give permission, add your custom modules to this folder and try again.

For more reference 
https://www.cybrosys.com/blog/how-to-install-custom-modules-in-odoo 

1
Imagine profil
Abandonează
Imagine profil
Patrick Strzempek
Autor Cel mai bun răspuns

Hi,

Thank's for all of your answers, Your explanations helped me to realize this custom module installation.

to sum up :

The more simply method I use, is to change all right for all folder after /odoo/... :

sudo chown -R odoo:odoo /../../odoo/custom/addons

for :

sudo chown -R <user>:<user> /../../odoo/custom/addons

I load my zip file in my custom folder, unzip file.

do not forget to restore rights such as originally, otherwise Odoo does not work :
sudo chown -R odoo:odoo /../../odoo/custom/addons

Thank's

Patrick



0
Imagine profil
Abandonează
Patrick Strzempek
Autor

Sorry don't use this way... problem to change POS

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Unzip APPS for Odoo11 - server Ubuntu 16.04 LTS
module apps custom odoo11
Imagine profil
Imagine profil
Imagine profil
3
ian. 18
5351
My Custom Module don't show in apps list after install
module install apps custom custommodule
Imagine profil
Imagine profil
Imagine profil
2
apr. 24
6212
Odoo 8 ImportError when installing module
module install custom
Imagine profil
Imagine profil
2
sept. 18
3805
Odoo11 create a custom app, problem in python file Rezolvat
module custom app odoo11
Imagine profil
Imagine profil
Imagine profil
2
mar. 18
9692
install a module on v8
v8 module install apps
Imagine profil
Imagine profil
1
feb. 17
4652
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now