Jump to content

gfjardim

Community Developer
  • Posts

    2,213
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by gfjardim

  1. Sorry for the inconvenience, rick.p, I'm short in time and didn't test all possible scenarios. I'll tweak the code to squeeze a little more speed soon. Enviado de meu SM-N910C usando Tapatalk
  2. Please update to 2016.08.29 and try again.
  3. Let's clear some things: 1) this plugin currently works with two different preclear scripts: the original one from Joe L., which I can't redistribute (see OP for more detailed info) and the one I wrote (previously called "Beta script"), which is included in the plugin by default. If you download the preclear disk script (Joe L. or bjp999) and put it on "/boot/config/plugins/preclear.disk/" you will be able to select between them when starting a preclear; 2) Performance hits: the new preclear script is, by design, faster than the original script wrote by Joe L. All performance hits are result of me decreasing the default read chunk size to 32MB. You can easily increase it by setting a higher number on the "Read Size" select box. I'll improve the code soon.
  4. You should remove Preclear Beta from your system. The new script has been integrated in the normal Preclear Script plugin.
  5. Moved from Settings to Tools > Disk Utilities > Preclear Beta
  6. Thanks a lot for your report. Please update and try again. The running preclear sessions won't stop because of the update.
  7. [glow=red,2,300]UPDATE PRECLEAR BETA:[/glow] 2016.06.22 Add: Notification capability Fix: Move Preclear icon to Tools Fix: Fix unknown terminal "screen" error Fix: Preclear script not reading the end of the disk Update: tmux (2.1), libevent (2.0.22) and ncurses (5.9-4)
  8. Under \\<Server>\flash\preclear_reports\
  9. rsync exit code 23 - Partial transfer due to error I found that I had permissions problems... You could try running the 'new permissions' function in unraid to see if that resolves it for you... Otherwise check the files/folders on source and target, see if anything is owned by root our any other user other than 'nobody'. Sent from my Redmi Note 2 I had this too. Maybe, while calculating, the plugin could verify if all chosen files are owned by the chosen user + 06XX permission or are owned by another user and have 0X66 permission. Another thing missing is the ability to stop the current operation.
  10. Only partition is exported. You can extract the disk device using the following code: DISK=$(echo $DEVICE | grep -Po "/dev/sd[a-z]$")
  11. So update is working, right? Enviado de meu SM-N910C usando Tapatalk
  12. So update is working, right? Enviado de meu SM-N910C usando Tapatalk
  13. So you are not updating this container even though numerous users are presented with a black VNC screen? Did I said that? I just said that I was going to update CrashPlan app as soon as the new version arrives. The black screen issue was a tricky one to replicate, but I think I fixed it. Please update your container and tell me if it helped.
  14. When the update arrives, I'll update the container, ok?
  15. Write speed is obtained from dd output, and Average speed is calculated by dividing the written blocks by the elapsed time. Is common that they coincide until the very end of the disk, where the speed drop is more tangible.
  16. Have the issue as well. I'll try to fix this as soon as I arrive home. Enviado de meu SM-N910C usando Tapatalk
  17. CrashPlan is still in 4.6.0 but keeps trying to update. I've released an update that will disable the autoupdate until a new version is released.
  18. It's not the browser but the update of Crashplan on UnRaid. I have tried three different browsers and two different VNC clients. All black screen. It's the update of the Crashplan application that is causing the problem. Not sure exactly what the issue is as there are few errors in /mnt/user/appdata/CrashPlan/log/upgrade.1435813200460_403.1461089974843.log. I assume that updating the application is still not supported without updating the docker image. Yep, CP started to update itself and that breaks the container. I removed the auto update functionality until I can fix it, so please update.
  19. You only have en_US.utf8 installed right now, so you need download all other locales to be able to change between them.
  20. First, you need to install these packages: http://mirrors.slackware.com/slackware/slackware64-current/slackware64/l/glibc-i18n-2.23-x86_64-1.txz http://mirrors.slackware.com/slackware/slackware64-14.1/slackware64/a/kbd-1.15.3-x86_64-2.txz Then, you should take a look into this: http://docs.slackware.com/slackware:localization
  21. The problem with NTFS was that the command used to create the partition didn't declare the partition type ID, so it wasn't recognized by Windows. When I added that information to command, all filesystems but BTRFS were already supported by Parted 3.1. I suggested Parted 3.2 due to BTRFS compatibility. But since it's broken in the current stable version, we should then change the approach of declaring the FS type. I'll talk to Dan and we will figure it out.
  22. If I'm not gonna use local backups, can I simply delete the Backup share CrashPlan has created in my system? I don't like to have shares I don't use. Yes, you can delete the configuration and the Backup share.
  23. I can only post my config for nginx: server { server_name example.com; listen 443 ssl; ### Set Certificates ### ssl_certificate /etc/nginx/certs/bundle.crt; ssl_certificate_key /etc/nginx/certs/startssl_dec.key; ### Add Diffie–Hellman key exchange ### ssl_dhparam /etc/nginx/certs/dhparam.pem; ### Disable SSL by enforcing TLS ### ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ### Add some ciphers and reject weaker ones ### ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:ECDHE-RSA-AES128-GCM-SHA256:AES256+EECDH:DHE-RSA-AES128-GCM-SHA256:AES256+EDH:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4"; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ### Add HTTP Strict Transport Security ### add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; add_header Front-End-Https on; client_max_body_size 0m; fastcgi_buffers 64 4K; location /owncloud/ { ### Proxy Pass Info ### proxy_pass https://192.168.0.100:8000/; ### Set headers ### proxy_set_header Accept-Encoding ""; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ### Set timeouts ### proxy_read_timeout 600s; proxy_send_timeout 600s; proxy_connect_timeout 600s; } location /couch/ { proxy_pass http://192.168.0.100:5050/couch/; } location /nzbget/ { proxy_pass http://192.168.0.100:6789/; } location /sonarr/ { proxy_pass http://192.168.0.100:8989/sonarr/; } location /crashplan/ { rewrite ^/crashplan/$ /crashplan/vnc.html?autoconnect=true&host=$server_name/crashplan/&port=443 permanent; proxy_pass http://192.168.0.100:4280/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } rewrite ^(/dav/)(.*)$ /oc/remote.php/webdav/$2 permanent; } And my ownCloud config: 'overwritehost' => 'example.com', 'overwriteprotocol' => 'https', 'overwritewebroot' => '/owncloud', 'overwrite.cli.url' => '/owncloud',
  24. You don't. Use port 8001 instead. Please send me a printscreen of your settings. Not possible in the moment.
×
×
  • Create New...