Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

244 total results found

Pi-hole

Move / Transfer file from host do docker container

Docker

Using terminal From container to host: sudo docker cp container-id:/path/filename.txt ~/Desktop/filename.txt From host to container: sudo docker cp ~/Desktop/filename.txt container-id:/path/filename.txt    

BitLocker

Troubleshooting Odoo | Docker permissions:

Odoo (Open ERP) Pages

Docker permissions: FYI: On first setup, main/root directory is set to "root" Inside your root directory, Your main website directory well be set to root. Change it. Go into the docker container and get the user ID number. In my case it was 102. Exit the c...

Install Odoo "Community" on local machine

Odoo (Open ERP) Pages

 Odoo ‘deb’ package uses PostgreSQL. Install that first sudo apt install postgresql -y Repository: 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 File Locations

Odoo (Open ERP) Pages

/etc/odoo /var/lib/odoo/.local/share/Odoo

Samba Share Setup

Samba

Make sure you have a directory set up that you are going to be sharing. If it is going to be a new one, create that directory where you need it, on the local machine that the data will live.  /home/the/share/file/location or something like that. If it already...

Samba Users

Samba

Since Samba doesn't use the system account password, we need to set up a Samba password for our user account sudo smbpasswd -a username Note: The user name must belong to a system account or else it won't work. The password is the part that will change to i...

Troubleshooting Samba / Cifs share Permissions

Samba

Cifs share doesn't preserve permission configuration in smb.conf (755 instead of 777) There are two options that can help 'save the day': dir_mode and file_mode. (placeholders in green italics) Setting both these to 0777 gives full permissions that the ho...

Odoo addons

Odoo (Open ERP) Pages

To add modules: first create a location of where the modules will be stored. Odoo does not make one by default. You will need to create your own path. /home/some/location/you/want/extra-addons Edit the files:  /etc/odoo/odoo.conf Add path in that file: An...

Odoo | Nginx config file

Odoo (Open ERP) Pages

This is my current version: server { server_name mywebsite.com; location / { proxy_pass http://127.0.0.1:8069; proxy_connect_timeout 3600; proxy_read_timeout 3600; ...

Odoo Website | how to remove header menu item

Odoo Back end

Go to your website section and then configuration Website> Configuration> Menus There you should have the option to choose the website you want to see the menus of.  The first option for the website should be the one you want. click on that one.  In ther...

Change internal IP to DNS | Odoo backend

Odoo Back end

Possible error messages: "device_id and device_name are required for private IP: http://192.168.0.0:8069/google_gmail/confirm" "How to change ip to domain name(http://144.144.144.144:8069/?db=A1010101=>A1010101?" Or something like that... This means Odoo i...

Migrate Nextcloud To Another Server

Nextcloud

Restoring from backup. Use this same method for migrating.  1) You use Rsync to move the backed up files to the new server. It will keep the tags and other permission that the backup was oriniglally stored with. If you don't care about that, just copy it. (rs...

Create a dump file

MySQL/MariaDB

If this is running on your local machine, do this. You will need to be inside the container or, in a directory/location that is local to the mysql/mariadb database. mysqldump --single-transaction --default-character-set=utf8mb4 -h [server] -u [username] -p[pa...

Reset Bruteforce security | multiple invalid login attempts

Nextcloud

Error Message: We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds To fix it You need to reset the bruteforce thingy. If you are in a docker container, you can use this code from outside th...

Speed up Nextcloud

Nextcloud

Not uploadingNot uploading more than a few MB at a timeNot uploading more than a few files at a timeNot downloadingDownloading/Uploading slowly Mess with these files: Your php is probably messing with most of that. Find out where you php is located and also ...

Maintenance Mode for Nextcloud

Nextcloud

Find where your Nextcloud config file is and edit it. Mine is stored here/data/config/config.php In the last block of commands, add this somewhere in there. 'maintenance' => true, Save and quit. You should now be in Maintenance mode.  You don't always have...