Sunri5e

Members
  • Posts

    9
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sunri5e's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hey guys, I recently switched my i5-6600K with an i7-7700 and switched from Win 8.1 to Win 10 during this upgrade (fresh install). For the installation progress I had to only assign one cpu core to prevent the stuck on windows logo. After the installation and updating progress I enabled my additional cores ht-cores in pairs. I use cores 0-2 and 4-6 for this vm via isolcpu and unraid is left with cores 3,7. My pairs: cpu 0 / 4 cpu 1 / 5 cpu 2 / 6 cpu 3 / 7 If I now reboot windows (or in more than 75% even after a cold boot) I am stuck at the windows logo without the spinning dots (just like the installation problem). I already disabled windows 10 fast boot with no success. If I am stuck only one assigned cpu core is at 100% workload. If I assign only one core of an cpu-/ht-core-pair (e.g. cores 0-2) the problem seems to be fixed but I really like to use hyper-threading inside my vm. It got also stuck during an update reboot. Only assign one cpu even seems to be helping here. Does anyone of you also have this problem with an i7-7700 in combination with windows 10? Maybe this is a kernel issue which will be fixed with kernel >= 4.10 (kaby lake - kernel 4.10) tower-diagnostics-20170414-2052.zip
  2. You could use a cronjob which checks for the libvirtd process.
  3. Does 6.2 fix the dpc high latency/sound stuttering in VMs if the VM use a cpu core which also unraid uses? Isolcpus fix it for me but i only have an i5 (6600K) without hyperthreading (4 cores) and the game far cry: primal needs 4 cores to even start. Sry for my english. I am not a native speaker...
  4. It is possible but not persistent after a reboot like here mentioned
  5. Currently you have raid1 as only raid-profile option for the cache disks. It would be nice, if you can choose between all possible btrfs raid-profiles. Examples: 2 x 250GB SSDs: raid1-profile: full Capacity: 250GB, but safety. raid0-profile: full Capacity: 500GB, no safety. OR 1 x 250GB SSD 1 x 500GB SSD raid1-profile: full Capacity: 250GB, but safety and 250GB wasted. raid0-profile: full Capacity: 250GB, no safety and 250GB wasted. single-profile: full Capacity: 750GB, no safety. I have a 250GB and a 500GB SSD, if I want to use the full capacity i have to use the single profile for the data blocks, rather than raid0 but this is not possible, currently.
  6. (I'm not responsible for any damage) I made a manual anacron setup via go script: #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & # copy anacron binary and set permissions cp /boot/config/anacron/anacron /usr/sbin/ chmod 755 /usr/sbin/anacron # start anacron if all is ready if [ -x /usr/sbin/anacron -a -f /boot/config/anacron/anacrontab ]; then /usr/sbin/anacron -s -t /boot/config/anacron/anacrontab -S /boot/config/anacron/spool/ fi # /etc/anacrontab: configuration file for anacron SHELL=/bin/sh PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # the maximal random delay added to the base delay of the jobs RANDOM_DELAY=45 # the jobs will be started during the following hours only START_HOURS_RANGE=3-22 #period in days delay in minutes job-identifier command 1 5 cron.daily nice run-parts /boot/config/anacron/cron.daily 7 25 cron.weekly nice run-parts /boot/config/anacron/cron.weekly @monthly 45 cron.monthly nice run-parts /boot/config/anacron/cron.monthly All you need is an anacron binary in /usr/sbin/ and to create all needed directories/your anacron scripts.
  7. I only use unRAID as hypervisor for my gaming machine and dont have it 24/7 running. Currently you are using crontab to run scheduled tasks but if my system is not running at this time, the cronjob is not executed. It would be nice if you could implement anacron as second choice. #/bin/bash # Concatenate the current set of plugin-specific cron files # into single system crontab. ENTRIES=$(cat /boot/config/plugins/*/*.cron 2>/dev/null) if (($? != 0)); then crontab -c /etc/cron.d -d else echo "$ENTRIES" | crontab -c /etc/cron.d - fi