Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Porkie

Members
  • Joined

  • Last visited

Everything posted by Porkie

  1. I had the same issue with the script to but I got it to run by editing it. #!/bin/bash # Check if python3 is installed (can be installed through NerdPack) if [[ "$(python3 -V)" =~ "Python 3" ]]; then # Check if undervolt is already installed [[ ! "$(undervolt --version)" =~ "undervolt" ]]; wget http://slackware.cs.utah.edu/pub/slackware/slackware64-current/slackware64/ap/undervolt-20200612_07d0c70-x86_64-1.txz -P /tmp upgradepkg --install-new /tmp/undervolt-20200612_07d0c70-x86_64-1.txz fi # Undervolt CPU undervolt --gpu -75 --core -100 --cache -100 --uncore -100 --analogio -100 undervolt --read But I run into another issue. Resolving slackware.cs.utah.edu (slackware.cs.utah.edu)... 155.98.64.87 Connecting to slackware.cs.utah.edu (slackware.cs.utah.edu)|155.98.64.87|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 14936 (15K) [text/plain] Saving to: '/tmp/undervolt-20200612_07d0c70-x86_64-1.txz.1' 0K .......... .... 100% 13.2K=1.1s 2020-10-21 17:10:06 (13.2 KB/s) - '/tmp/undervolt-20200612_07d0c70-x86_64-1.txz.1' saved [14936/14936] +============================================================================== | Skipping package undervolt-20200612_07d0c70-x86_64-1 (already installed) +============================================================================== Traceback (most recent call last): File "/usr/bin/undervolt", line 33, in sys.exit(load_entry_point('undervolt==0.3.0', 'console_scripts', 'undervolt')()) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 411, in main set_offset(plane, offset, msr) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 222, in set_offset write_msr(write_value, msr.addr_voltage_offsets) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 81, in write_msr os.write(f, pack('Q', val)) OSError: [Errno 5] Input/output error temperature target: -0 (100C) Traceback (most recent call last): File "/usr/bin/undervolt", line 33, in sys.exit(load_entry_point('undervolt==0.3.0', 'console_scripts', 'undervolt')()) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 455, in main voltage = read_offset(plane, msr) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 208, in read_offset write_msr(value_to_write, msr.addr_voltage_offsets) File "/usr/lib64/python3.8/site-packages/undervolt.py", line 81, in write_msr os.write(f, pack('Q', val)) OSError: [Errno 5] Input/output error Script Finished Oct 21, 2020 17:10.06
  2. Just set it to Y and use a local ip similar to you server and it will work, I tried with just N too and got the same error too.
  3. Can I suggest another upload script, I had lots of issues with big files and running the normal upload script and things getting all screwy in rclone with fuse files and it moving things to bin and re uploading over and over if the file took longer than a hour to upload. Checkers for seeing if the script is running are not working for me with the original upload script. I came across another upload script that seems to work better and also has the benefit of directing where which folders get uploaded to. So you could have 3 or 4 shared drives and as long as you set them up in rclone you can direct certain folders to it. For example a movies shared drive, one for tv, music etc. #!/bin/bash # RClone Config file # Custom script specific to USER # Lockfile LOCKFILE="/var/lock/`basename $0`" # Rclone arguments ARGS=(-P --checkers 3 --log-file /mnt/user/appdata/other/logs/upload_rclone.log -v --tpslimit 3 --transfers 3 --drive-chunk-size 32M --exclude queue/** --exclude nzb/** --exclude intermediate/** --exclude complete/** --exclude downloads/** --exclude *fuse_hidden* --exclude *_HIDDEN --exclude .recycle** --exclude *.backup~* --exclude *.partial~* --exclude *.log~* --delete-empty-src-dirs --bwlimit 8M --tpslimit 3 --min-age 30m --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36") # Create exclusion file #touch /home/user/.config/rclone/upload_excludes ( # Wait for lock for 5 seconds flock -x -w 5 200 || exit 1 # Move older local files to the cloud rclone move /mnt/user/local/google_vfs/movies gdrive_media_vfs:movies "${ARGS[@]}" rclone move /mnt/user/local/google_vfs/tv gdrive_media_vfs:tv "${ARGS[@]}" ) 200> ${LOCKFILE} this script is just a example and should work for standard install from here, but if you wanted to use extra drives like say ebooks, make a shared drive called ebooks configure that in rclone and add the drive to your mount command. Then for rclone move command in the script I posted here you just add. rclone move /mnt/user/local/google_vfs/ebooks gdrive_ebooks:ebooks "${ARGS[@]}" This is just a example but it seems to work much better, also you dont really need so much excludes as the files have already been processed. I added the excludes anyway but im sure they can be removed.
  4. I only came across DietPi a day or so ago which seems a interesting rpi project that is easy to install using Kvm after a few procedures. First go to https://dietpi.com and download their Vmware vdmk image to your Unraid machine. Then we need to convert the image to a qcow2 image using qemu. To convert the image use the following command and adjust paths and file names accordingly. qemu-img convert /mnt/user/isos/DietPi_VMware-x86_64-Stretch.vmdk -O qcow2 dietpi.qcow2 Once the file is converted which should take not to long we need to make a linux vm template using seabios and for the first drive set to manual and point to the qcow2 we just created and set that drive to sata. Set ram and cpus as you require, save and boot. here is a working vm template with instructions from above. Dietpi seems to offer a lot of packages/software from the installer, i was surprised at what was available and also just being able to run a rpi image without any hassle seemed cool.
  5. Thanks for this, I was just getting a server error, removing rutracker fixed it.
  6. Did you add the mac address and ip of the container as a static ip in your router? Im using PFSense and I had to manually add them for them to show up in the dhcp leases. It might not even be that but worth a try.
  7. Yes and look at your web ui link, it will not work with the [port] part, its needs a real link like mine. So just remove the brackets and the word port.
  8. If only we could add a extra tab bar, it would make this plugin much better.
  9. For anyone that wants to get this working with cloudflare enabled. First toggle your the cloud icon for you domains in the DNS section so that they are grey and DNS only is enabled. Then install Letsencrypt and generate your certs. Once that is done go back to cloudflare crypto section and change the SSL cert from flexible to full strict and wait for it to issue, its says it can take up to 24 hours but mine was done in about 20 minutes. After all has been completed and working fine toggle the clouds back to original setting in DNS in the cloudflare panel.
  10. Got to VMmanager and Enable PCIe ACS Override helped me get past this error and boot into openelec
  11. Porkie replied to wgstarks's topic in Lounge
    My singapore F1 banner that I cropped

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.