-
Content Count
202 -
Joined
-
Last visited
-
Days Won
1
ICDeadPpl last won the day on August 13 2018
ICDeadPpl had the most liked content!
Community Reputation
25 GoodAbout ICDeadPpl
-
Rank
Member
- Birthday 08/16/1971
Converted
-
Gender
Male
-
Location
Gothenburg, Sweden
Recent Profile Visitors
-
Maybe I misunderstood. So the drivers running in the WIndows VM support passthrough, then?
-
They said it is for Linux hosts running Windows VMs: "With virtualization enabled, GeForce customers on a Linux host PC can now enable GeForce GPU passthrough on a virtual Windows guest OS. There are a few GeForce use cases where this functionality is beneficial such as: GeForce customers wanting to run a Linux host and be able to launch a Windows virtual machine (VM) to play games Game developers wanting to test code in both Windows and Linux on one machine"
-
Does the new 465.89 driver's "GeForce GPU Passthrough for Windows Virtual Machine" functionality make any difference for this plugin? https://nvidia.custhelp.com/app/answers/detail/a_id/5173 https://www.nvidia.com/en-us/geforce/news/outriders-game-ready-driver/
-
ICDeadPpl started following CUSTOMIZED: NZBGet Web UI, [Support] PTRFRLL - Docker images, LSI Controller FW updates IR/IT modes and 5 others
-
[Support] SpaceinvaderOne - Macinabox
ICDeadPpl replied to SpaceInvaderOne's topic in Docker Containers
There's a OSX Serial Generator on Github which has a lot of options, I haven't tried it out yet. -
[Support] Linuxserver.io - Nextcloud
ICDeadPpl replied to linuxserver.io's topic in Docker Containers
You can create a custom script and put it in the docker's '/config/custom-cont-init.d' folder. The script will be executed every time the docker is started/restarted. -
Try MESSAGE=`rsync -av --delete --ignore-errors -e` /usr/local/emhttp/webGui/scripts/notify -i normal -s "Test" -d "Test" -m "$MESSAGE"
-
You could call '/usr/local/emhttp/webGui/scripts/notify' from your script, and have the message include the output of the rsync job. The rsync output could be temporarily stored as a file, piped argument, named pipe or whatever. Run the command '/usr/local/emhttp/webGui/scripts/notify' once without any arguments to see which there are for you to use. You may want to check the notifications in Unradid Web UI "Settings/Notifications settings" so they are set to send email.
-
Put 'bash' in front of the command. Like 'bash /boot/config/plugins/user.scripts/scripts/backup_onedrive/script'
-
LSI Controller FW updates IR/IT modes
ICDeadPpl replied to madburg's topic in Storage Devices and Controllers
I have a IBM ServeRAID M1015 flashed with LSI firmware in IT mode, but it doesn't get detected on my motherboard (MSI Z270 Gaming Pro Carbon) with a Core i7 7700K CPU. I have tried every pcie slot on the motherboard, but with no success. I tried with putting the card in my desktop PC (an AMD Ryzen 5900X system) and it works all right there. Is there anything I can do to get it working on the Intel system, or do I have to buy some other motherboard/CPU combo? 'lspci' gives this output, so the card is not detected at all: -
There's a typo on the "Summary of New Features" page. 'config/modpobe.d' should be 'config/modprobe.d'.
-
[Support] Linuxserver.io - Nextcloud
ICDeadPpl replied to linuxserver.io's topic in Docker Containers
I replaced these lines in the '/mnt/cache/appdata/nextcloud/nginx/site-confs/default' file. (Adjust path to your appdata path, if it's different) location = /.well-known/carddav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/caldav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/webfinger { return 301 $scheme://$host:$server_port/public.php?service=webfinger; } location = /.well-known/host-meta { return 301 $scheme://$host:$server_port/public.php?service=host-meta; } location = /.well-known/host-meta.js -
[Support] Linuxserver.io - Nextcloud
ICDeadPpl replied to linuxserver.io's topic in Docker Containers
Try with opening the Nextcloud console (click on Nextcloud icon on Docker page) and run this command: sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --off -
[Support] Linuxserver.io - Nextcloud
ICDeadPpl replied to linuxserver.io's topic in Docker Containers
Have you tried to add the (sub)domain name to your hosts file? (On Windows 10 it's located at "C:\Windows\System32\drivers\etc\hosts") -
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
ICDeadPpl replied to jonp's topic in Plugin Support
Request: newt It includes 'whiptail', which is great for making interactive scripts with menus, checkboxes, etc. -
[Support] Linuxserver.io - Nextcloud
ICDeadPpl replied to linuxserver.io's topic in Docker Containers
You can make a folder called "custom-cont-init.d" in the /config folder location and put a script in there. It gets executed during start/restart of the container. This applies to Linuxserver containers only, that I know of. Read more here, under "Custom Scripts".