Thanks for visiting The Cell Phone Junkie! I will be taking the time each week to discuss my favorite topic, cell phones. Any feedback is appreciated and welcome. You can email me at: questions (AT) thecellphonejunkie (DOT) com or call: 206-203-3734 Thanks and welcome!
…
continue reading
HPR Volunteer and Hacker Public Radio에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 HPR Volunteer and Hacker Public Radio 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.
Player FM -팟 캐스트 앱
Player FM 앱으로 오프라인으로 전환하세요!
Player FM 앱으로 오프라인으로 전환하세요!
HPR4449: How to install Odoo 18 on a virtual machine
Manage episode 501449578 series 108988
HPR Volunteer and Hacker Public Radio에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 HPR Volunteer and Hacker Public Radio 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.
Create a vm with Debian 12 and at least 4 Gb of RAM and say 20-30 Gb disc space. installation ============ sudo apt install -y gpg postgresql wget -q -O - https://nightly.odoo.com/odoo.key | sudo gpg --dearmor -o /usr/share/keyrings/odoo-archive-keyring.gpg echo 'deb [signed-by=/usr/share/keyrings/odoo-archive-keyring.gpg] https://nightly.odoo.com/18.0/nightly/deb/ ./' | sudo tee /etc/apt/sources.list.d/odoo.list Odoo CE latest nightly build https://nightly.odoo.com/18.0/nightly/deb/odoo_18.0.latest_all.deb sudo apt-get update && sudo apt-get install -y odoo Install wkhtmltopdf wget -O wkhtmltox_0.12.6.1-3.bookworm_amd64.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb dpkg -i wkhtmltox_0.12.6.1-3.bookworm_amd64.deb apt install -f -y apt install -y python3-xlwt python3-num2words python3-phonenumbers systemctl status odoo First use ========= http://:8069/ Will relocate to /web/database/selector Master Password to protect this form Database Name. Email: your email Password: your desired password Phone Number: optional Language: your desired language Country: select your country Demo Data: select to get demo data. Click "Create database" Wait. Login. You see /odoo/apps. Upper left square-icon shows 'Apps' and 'Settings'. Let's install a simple app: contacts Search in the search bar for "contacts" and when displayed, click the 'Activate' button of the "contacts" app. When done, the same menu now contains: Discuss, To-do, contacts, Project, Email Marketing, Surveys, Employees and the earlier mentioned Apps and Settings. Go back to 'Apps' and Activate the "Sales" app. This will also install the "Invoicing" app. Time to start playing around. Some tech stuff, interesting locations =============== /etc/odoo/odoo.conf Here you can add additional addons later: /var/lib/odoo/.local/share/Odoo/addons/18.0/ Here are all files uploaded to Odoo: find /var/lib/odoo/.local/share/Odoo/filestore/ This is where user sessions are administrated: find /var/lib/odoo/.local/share/Odoo/sessions/ And these are the main locations where the Odoo program can be found. ls -al /usr/lib/python3/dist-packages/odoo/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ | wc
…
continue reading
4474 에피소드
Manage episode 501449578 series 108988
HPR Volunteer and Hacker Public Radio에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 HPR Volunteer and Hacker Public Radio 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.
Create a vm with Debian 12 and at least 4 Gb of RAM and say 20-30 Gb disc space. installation ============ sudo apt install -y gpg postgresql wget -q -O - https://nightly.odoo.com/odoo.key | sudo gpg --dearmor -o /usr/share/keyrings/odoo-archive-keyring.gpg echo 'deb [signed-by=/usr/share/keyrings/odoo-archive-keyring.gpg] https://nightly.odoo.com/18.0/nightly/deb/ ./' | sudo tee /etc/apt/sources.list.d/odoo.list Odoo CE latest nightly build https://nightly.odoo.com/18.0/nightly/deb/odoo_18.0.latest_all.deb sudo apt-get update && sudo apt-get install -y odoo Install wkhtmltopdf wget -O wkhtmltox_0.12.6.1-3.bookworm_amd64.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb dpkg -i wkhtmltox_0.12.6.1-3.bookworm_amd64.deb apt install -f -y apt install -y python3-xlwt python3-num2words python3-phonenumbers systemctl status odoo First use ========= http://:8069/ Will relocate to /web/database/selector Master Password to protect this form Database Name. Email: your email Password: your desired password Phone Number: optional Language: your desired language Country: select your country Demo Data: select to get demo data. Click "Create database" Wait. Login. You see /odoo/apps. Upper left square-icon shows 'Apps' and 'Settings'. Let's install a simple app: contacts Search in the search bar for "contacts" and when displayed, click the 'Activate' button of the "contacts" app. When done, the same menu now contains: Discuss, To-do, contacts, Project, Email Marketing, Surveys, Employees and the earlier mentioned Apps and Settings. Go back to 'Apps' and Activate the "Sales" app. This will also install the "Invoicing" app. Time to start playing around. Some tech stuff, interesting locations =============== /etc/odoo/odoo.conf Here you can add additional addons later: /var/lib/odoo/.local/share/Odoo/addons/18.0/ Here are all files uploaded to Odoo: find /var/lib/odoo/.local/share/Odoo/filestore/ This is where user sessions are administrated: find /var/lib/odoo/.local/share/Odoo/sessions/ And these are the main locations where the Odoo program can be found. ls -al /usr/lib/python3/dist-packages/odoo/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ | wc
…
continue reading
4474 에피소드
همه قسمت ها
×플레이어 FM에 오신것을 환영합니다!
플레이어 FM은 웹에서 고품질 팟캐스트를 검색하여 지금 바로 즐길 수 있도록 합니다. 최고의 팟캐스트 앱이며 Android, iPhone 및 웹에서도 작동합니다. 장치 간 구독 동기화를 위해 가입하세요.