Tolete

Members
  • Posts

    167
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tolete

  1. Working on ditching google photos, and use Immich as my 'front end' main Photos/Video app. I'm running into a few issues in this quest as I suspect many others are due to 'Immich' root design of being a Photo/Video backup solution. -end result/expectations: Using mobile phone (Pixel 8 Pro) > Capture Photo/Video > Immich app, backups Photo/Video > Auto deletes Photo/Video from source after backup is completed. -This is the way - Diagram Using mobile phone (Pixel 8 Pro) > Capture Photo/Video > Nextcloud app, Auto uploads to Nextcloud server > After auto upload is complete, original Photo/Video from phone storage is deleted by Nextcloud > Immich import photo/video location = Nextcloud server photo share. Is anyone else using this solution any suggestions are welcome.
  2. if you follow the guide, it will work. looks like the files did not extract properly for you. I just did it using the firmware file for the 990 and it worked, there is a root directory. so re-try the extract command from the guide.
  3. In the terminal, enter the following command to navigate to the Docker templates directory: cd /boot/config/plugins/dockerMan/templates-user Use the nano text editor to create a new XML file for the Docker container configuration: nano my-Dell-iDRAC-Fan-Controller.xml Now, copy and paste the XML configuration Paste this into the nano editor. To paste in the terminal, you can usually right-click and select "Paste" or use Ctrl + Shift + V. <?xml version="1.0"?> <Container version="2"> <Name>Dell-iDRAC-Fan-Controller</Name> <Repository>tigerblue77/dell_idrac_fan_controller</Repository> <Registry>https://hub.docker.com/r/tigerblue77/dell_idrac_fan_controller/</Registry> <Network>bridge</Network> <MyIP/> <Shell>sh</Shell> <Privileged>false</Privileged> <Support/> <Project/> <Overview>https://github.com/tigerblue77/Dell_iDRAC_fan_controller_Docker&#xD; &#xD; https://hub.docker.com/r/tigerblue77/dell_idrac_fan_controller/&#xD; &#xD; All parameters are optional as they have default values (including default iDRAC username and password).&#xD; &#xD; IDRAC_HOST parameter can be set to "local" or to your distant iDRAC's IP address. Default value is "local".&#xD; IDRAC_USERNAME parameter is only necessary if you're adressing a distant iDRAC. Default value is "root".&#xD; IDRAC_PASSWORD parameter is only necessary if you're adressing a distant iDRAC. Default value is "calvin".&#xD; FAN_SPEED parameter can be set as a decimal (from 0 to 100%) or hexadecimal value (from 0x00 to 0x64) you want to set the fans to. Default value is 5(%).&#xD; CPU_TEMPERATURE_THRESHOLD parameter is the T&#xB0;junction (junction temperature) threshold beyond which the Dell fan profile defined in your BIOS will become active again (to protect the server hardware against overheat). Default value is 50(&#xB0;C).&#xD; CHECK_INTERVAL parameter is the time (in seconds) between each temperature check and potential profile change. Default value is 60(s).&#xD; DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE parameter is a boolean that allows to disable third-party PCIe card Dell default cooling response. Default value is false.&#xD; ipmi tool installation help: https://forums.unraid.net/topic/129200-plug-in-nerdtools/ for installation and check this link for missing ipmi&#xD; ipmi tool can't find /dev/ipmi0?: https://serverfault.com/questions/480371/ipmitool-cant-find-dev-ipmi0-or-dev-ipmidev-0</Overview> <Category>Other:</Category> <WebUI/> <TemplateURL>https://raw.githubusercontent.com/selfhosters/unRAID-CA-templates/master/templates/idrac-fan-controller.xml</TemplateURL> <Icon>https://raw.githubusercontent.com/selfhosters/unRAID-CA-templates/master/templates/img/idrac6.png</Icon> <ExtraParams/> <PostArgs/> <CPUset/> <DateInstalled>1707442417</DateInstalled> <DonateText/> <DonateLink/> <Requires/> <Config Name="IDRAC_HOST" Target="IDRAC_HOST" Default="local" Mode="" Description="IDRAC_HOST parameter can be set to local or to your distant iDRAC's IP address. Default value is local" Type="Variable" Display="always" Required="false" Mask="false">IDRAC IPADDRESS</Config> <Config Name="FAN_SPEED" Target="FAN_SPEED" Default="5" Mode="" Description="FAN_SPEED parameter can be set as a decimal (from 0 to 100%) or hexadecimaladecimal value (from 0x00 to 0x64) you want to set the fans to. Default value is 5(%)." Type="Variable" Display="always" Required="false" Mask="false">30</Config> <Config Name="CPU_TEMPERATURE_THRESHOLD" Target="CPU_TEMPERATURE_THRESHOLD" Default="50" Mode="" Description="CPU_TEMPERATURE_THRESHOLD parameter is the T&#xB0;junction (junction temperature) threshold beyond which the Dell fan profile defined in your BIOS will become active again (to protect the server hardware against overheat). Default value is 50(&#xB0;C)." Type="Variable" Display="always" Required="false" Mask="false">50</Config> <Config Name="CHECK_INTERVAL" Target="CHECK_INTERVAL" Default="60" Mode="" Description="CHECK_INTERVAL parameter is the time (in seconds) between each temperature check and potential profile change. Default value is 60(s).&#13;&#10;" Type="Variable" Display="always" Required="false" Mask="false">60</Config> <Config Name="IDRAC_USERNAME" Target="IDRAC_USERNAME" Default="root" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false">IDRAC USERNAME</Config> <Config Name="IDRAC_PASSWORD" Target="IDRAC_PASSWORD" Default="calvin" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false">IDRAC PASSWORD</Config> <Config Name="DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE" Target="DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE" Default="false" Mode="" Description="parameter is a boolean that allows to disable third-party PCIe card Dell default cooling response. Default value is false." Type="Variable" Display="always" Required="false" Mask="false">false</Config> </Container> Once you've finished pasting the XML configuration into nano, save the changes by pressing Ctrl + O (to write out the changes), then press Enter (to confirm the file name), and finally, Ctrl + X to exit the editor. Go back to the Unraid web interface. Navigate to the Docker tab by selecting "Docker" from the top menu. Scroll down to the bottom of the page, and you'll see an "Add Container" button. Click it. In the "Template" dropdown menu, you should now see your newly created template 'Dell-iDRAC-Fan-Controller'. Select it. Review the settings and make any adjustments if needed. Click on "Apply" to create the Docker container.
  4. the firmware file you downloaded/extracted, does not have a 'root' directory in them. -what drive are you trying to upgrade?
  5. cd /mnt/user/downloads/temp/root/fumagician/ && chmod +x fumagician && ./fumagician "chmod +x fumagician" is changing the permissions of the file named "fumagician" to make it executable. The command "chmod +x" means "change mode to executable." Once the permissions are changed, the "./fumagician" command is run, which executes the "fumagician" program. you lost me 'how to actually ensure the drive boots from the extracted ISO files.' you don't boot the iso into the drive, these steps basically tell the OS, run this app, then the app does the rest.
  6. yes, a reboot will refresh the version on the drives. You can also run the SMART info and you should see the latest firmware.
  7. i just added the template manually. cd /boot/config/plugins/dockerMan/templates-user nano my-cal.com.xml -Paste XML <?xml version="1.0"?> <Container version="2"> <Name>cal.com</Name> <Repository>calcom/cal.com:latest</Repository> <Registry>https://hub.docker.com/r/calcom/cal.com</Registry> <Network>bridge</Network> <MyIP/> <Shell>sh</Shell> <Privileged>false</Privileged> <Support/> <Project/> <Overview>The open source Calendly alternative. You are in charge of your own data, workflow and appearance.&#xD; </Overview> <Category>Productivity: Tools:</Category> <WebUI>http://[IP]:[PORT:3000]</WebUI> <TemplateURL/> <Icon>https://i.imgur.com/mwmNzNQ.png</Icon> <ExtraParams/> <PostArgs/> <CPUset/> <DateInstalled>1681261202</DateInstalled> <DonateText/> <DonateLink/> <Requires/> <Config Name="WebUI" Target="3000" Default="" Mode="tcp" Description="" Type="Port" Display="always" Required="false" Mask="false">3000</Config> <Config Name="Config" Target="/cal" Default="" Mode="rw" Description="" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cal.com/</Config> <Config Name="NEXT_PUBLIC_WEBAPP_URL" Target="NEXT_PUBLIC_WEBAPP_URL" Default="" Mode="" Description="http://serverIP:PORT" Type="Variable" Display="always" Required="true" Mask="false"/> <Config Name="CALCOM_TELEMETRY_DISABLED" Target="CALCOM_TELEMETRY_DISABLED" Default="" Mode="" Description="" Type="Variable" Display="always" Required="true" Mask="false">1</Config> <Config Name="NEXTAUTH_SECRET" Target="NEXTAUTH_SECRET" Default="" Mode="" Description="" Type="Variable" Display="always" Required="true" Mask="false"/> <Config Name="CALENDSO_ENCRYPTION_KEY" Target="CALENDSO_ENCRYPTION_KEY" Default="" Mode="" Description="" Type="Variable" Display="always" Required="true" Mask="false"/> <Config Name="DATABASE_URL" Target="DATABASE_URL" Default="" Mode="" Description="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE_HOST}/${POSTGRES_DB}" Type="Variable" Display="always" Required="true" Mask="false"/> <Config Name="NEXTAUTH_URL" Target="NEXTAUTH_URL" Default="" Mode="" Description="http://serverIP:PORT/api/auth" Type="Variable" Display="always" Required="true" Mask="false"/> <Config Name="EMAIL_FROM" Target="EMAIL_FROM" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false"/> <Config Name="EMAIL_SERVER_HOST" Target="EMAIL_SERVER_HOST" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false"/> <Config Name="EMAIL_SERVER_PORT" Target="EMAIL_SERVER_PORT" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false"/> <Config Name="EMAIL_SERVER_USER" Target="EMAIL_SERVER_USER" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false"/> <Config Name="EMAIL_SERVER_PASSWORD" Target="EMAIL_SERVER_PASSWORD" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="true"/> </Container> Save - Ctrl + O and Ctrl + X -Than, just install from 'templates' -Go to Docker > Add Container > and search for cal.com on the list.
  8. did app get removed? not seen it in the app store
  9. not sure how, but i might have solve my issue of not been able to 'browse' my appdata share from the gui -now when i click on the browse icon next to appdata share i can see the folder is not empty.
  10. that command just list all my shares under user my first screen shot was using the gui to browse to the appdata...which takes me to empty folder. Shares> browse share icon
  11. Sure, here we go diagnostics-20240127-2126.zip
  12. Share > appdata Pool Device > Cache 'mnt/cache' all apps running no issues other than the appdata share is empty. So some how i manage to empty out my appdata share. zfs gods send help
  13. cant get docs to load on NC + OnlyOfficeDocumentServer + Cloudflare trying to edit docs result in docserver.mydomain.com refused to connect /healthcheck = true anyone currently running NC/ODS send help!
  14. fresh install of Collabora-CODE with no aliasgroup ev added.
  15. none other than default -i previously had had/added the 'aliasgroup' ev on there but this is a fresh install of NC and Collabora. All its got is the defaults. -not sure if the 'aliasgroup' ev is required. but currently not running it.
  16. I have left it blank and no matter what i get the same logs wsd-00001-00031 2024-01-07 12:03:47.114051 -0500 [ websrv_poll ] WRN convert-to: Requesting address is denied: MY.EXTERNAL.IP| wsd/COOLWSD.cpp:4108
  17. Yes, I have added 'https://collabora.mydomain.com'. Results are the same Collabora log wsd-00001-00031 2024-01-07 12:03:47.114051 -0500 [ websrv_poll ] WRN convert-to: Requesting address is denied: MY.EXTERNAL.IP| wsd/COOLWSD.cpp:4108
  18. Been fighting with Nextcloud and Collabora for a while, wondering if anyone is got the two working? -Running Nextcloud latest 28.0.1 with NPM -Installed Nextcloud Office 8.3.0 -Collabora-CODE -Collabora-Code logs -Back to NC advance settings to add external ip Collabora-CODE logs As a result NC documents fail to load. If any one got the two running, send help
  19. I have both variable set on the container. OPENPROJECT_HTTPS=true SERVER_PROTOCOL_FORCE_HTTPS=true still no joy, shows the 'HTTPS mode setup mismatch' error after logging in.
  20. trying to resolve the 'HTTPS mode setup mismatch' error adding the environment variable does not does not solve the mismatch. OPENPROJECT_HTTPS=true Anyone get this to work with cloudflare tunnel?
  21. Hello, -All you have to do is to run the following command -MAKE SURE 'sdk sdm sdn' are the 3 16TB drives you are missing. for disk in sdk sdm sdn; do nohup sg_format -v -F /dev/$disk > /tmp/format_$disk.log 2>&1 & done -This command will start the formatting process for each disk listed (sdk sdm sdn) in the background, with the output and any errors being logged to separate files in the /tmp directory for each disk. -Remember, this is a disk formatting operation, so it will ERASE ALL DATA on the specified disks. -BE PATIENT the process for 16TB will take a while 24hr+- -You can check the progress by ruining following command for each drive. tail -f /tmp/format_sdk.log tail -f /tmp/format_sdm.log tail -f /tmp/format_sdn.log -The output should be something like this after the command has been running for some time (not right away) you will start seen the progress in the logs. BE PATIENT let it do is thing, come back and check the logs you will start seen it in the logs. -Cntrl + C to quit and check a different drive. -Once the process is complete drives will appear and be available for the array or under Unassigned devices,
  22. Hello, you can got to Tools > System Devices and note your drive model and mapped location. Then just download the latest firmware. utility will tell you if drive needs upgrade or not.
  23. I have added the variable according to the PHP Configuration to @A75G Template, but the Maximum uploaded file size remains the same. PHP_UPLOAD_MAX_FILESIZE Has anyone been able to change/increase the 'Maximum uploaded file size' on Moodle?
  24. Currently running Snipe-IT on Unraid, and it's been working well. Looking to set up SAML. following the documentation to setup SAML I get a **Success:** Settings updated successfully. But when trying to sign in using SAML, I get an error. **Error** There was a problem while trying to log you in, please try again. Wondering if I'm missing environment variables specific for SAML to work properly. ## System Information **Snipe-IT version:** v6.2.1 build 11625 (gc45ede2d1) **Software License:** [AGPL3](https://www.gnu.org/licenses/agpl-3.0.en.html) **PHP Version:** 8.1.22 **Laravel Version:** 8.83.22 **Timezone:** America/Los_Angeles **Database Driver:** mysql **Mail From Address:** Snipe-IT`<[email protected]>` **Mail Reply-To Address:** Snipe-IT `<[email protected]>` **Table Storage:** cookieStorage