Jump to content

Abhi

Members
  • Posts

    29
  • Joined

  • Last visited

Posts posted by Abhi

  1. WebUI starts, but its just a blank page. Get this error below which was also mentioned in another thread

     

        |     await wrap(partial(self.listen_for_disconnect, receive))
        |   File "/usr/local/lib/python3.11/site-packages/starlette/responses.py", line 273, in wrap
        |     await func()
        |   File "/usr/local/lib/python3.11/site-packages/starlette/responses.py", line 250, in listen_for_disconnect
        |     message = await receive()
        |               ^^^^^^^^^^^^^^^
        |   File "/usr/local/lib/python3.11/asyncio/queues.py", line 158, in get
        |     await getter
        | asyncio.exceptions.CancelledError: Cancelled by cancel scope 14b770d2a7d0
        | 
        | During handling of the above exception, another exception occurred:
        | 
        | Exception Group Traceback (most recent call last):
        |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 109, in __call__
        |     await response(scope, receive, send)
        |   File "/usr/local/lib/python3.11/site-packages/starlette/responses.py", line 270, in __call__
        |     async with anyio.create_task_group() as task_group:
        |   File "/usr/local/lib/python3.11/site-packages/anyio/_backends/_asyncio.py", line 678, in __aexit__
        |     raise BaseExceptionGroup(
        | ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
        +-+---------------- 1 ----------------
          | Traceback (most recent call last):
          |   File "/usr/local/lib/python3.11/site-packages/starlette/responses.py", line 273, in wrap
          |     await func()
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 134, in stream_response
          |     return await super().stream_response(send)
          |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/starlette/responses.py", line 262, in stream_response
          |     async for chunk in self.body_iterator:
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 98, in body_stream
          |     raise app_exc
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 70, in coro
          |     await self.app(scope, receive_or_disconnect, send_no_error)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 79, in __call__
          |     raise exc
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 68, in __call__
          |     await self.app(scope, receive, sender)
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 21, in __call__
          |     raise e
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
          |     await self.app(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 718, in __call__
          |     await route.handle(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 443, in handle
          |     await self.app(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/applications.py", line 276, in __call__
          |     await super().__call__(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/applications.py", line 122, in __call__
          |     await self.middleware_stack(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 184, in __call__
          |     raise exc
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 162, in __call__
          |     await self.app(scope, receive, _send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 79, in __call__
          |     raise exc
          |   File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 68, in __call__
          |     await self.app(scope, receive, sender)
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 21, in __call__
          |     raise e
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
          |     await self.app(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 718, in __call__
          |     await route.handle(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 276, in handle
          |     await self.app(scope, receive, send)
          |   File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 66, in app
          |     response = await func(request)
          |                ^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 237, in app
          |     raw_response = await run_endpoint_function(
          |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 163, in run_endpoint_function
          |     return await dependant.call(**values)
          |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/serge/routers/chat.py", line 76, in get_all_chats
          |     [await get_specific_chat(id.decode()) for id in ids],
          |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/serge/routers/chat.py", line 76, in <listcomp>
          |     [await get_specific_chat(id.decode()) for id in ids],
          |      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "/usr/local/lib/python3.11/site-packages/serge/routers/chat.py", line 106, in get_specific_chat
          |     chat = Chat.parse_raw(chat_raw)
          |            ^^^^^^^^^^^^^^^^^^^^^^^^
          |   File "pydantic/main.py", line 549, in pydantic.main.BaseModel.parse_raw
          |   File "pydantic/main.py", line 526, in pydantic.main.BaseModel.parse_obj
          |   File "pydantic/main.py", line 341, in pydantic.main.BaseModel.__init__
          | pydantic.error_wrappers.ValidationError: 1 validation error for Chat
          | params -> n_gpu_layers
          |   field required (type=value_error.missing)
          +------------------------------------

     

  2. On 2/21/2023 at 6:41 PM, Zvaniel4o said:

    I finally found a way to boot isos for UEFI boot. I modified boot.cfg from NETBOOT.XYZ:

     

    item option_iso ${space} Option Iso
    
    :option_iso
    set url http://192.168.1.202:80/Option Iso
    sanboot ${url}/Some_iso.iso


    Make sure not to use spaces in your image file. Also this method helps for booting Windows isos, but still cannot locate drivers. I think I saw the workaround somewhere in this thread.

    For someone who often needs to install windows OS for deployment to PC's would this be a good way to go about that?

     

    My understanding is that I can take the base windows install ISO, and using pxe boot, I can have it installed onto PC's using netboot?

  3. 1 hour ago, ich777 said:

    I think the reason why it's not working is because the main download location that I used for downloading the zip file is down.

    On my server it is just working fine when I use the locally cached build, even for a new container: iw4x.log

     

    Where do you get the game files from and the necessary iw4x files?

    Maybe this is a version incompatibility error from the files.

     

    If I find no new download location then I will deprecate the container...

    I was able to fix it. It was an issue on my end I did wrong. Sorry!

     

    But to answer your question for the server files, I believe this is what you're looking for

    https://github.com/XLabsProject/iw4x-rawfiles/releases/latest/download/release.zip

    • Like 1
  4. Trying to run the iw4x container but it gives a error when I start it. This is the logs. I believe it has something to do with X server and $DISPLAY 

     

    0070:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded.
    0070:err:winediag:nodrv_CreateWindow Make sure that your X server is running and that $DISPLAY is set correctly.
    0070:err:systray:initialize_systray Could not create tray window
    00f0:fixme:kernelbase:AppPolicyGetThreadInitializationType FFFFFFFA, 0A6EFEF8
    00f4:fixme:kernelbase:AppPolicyGetThreadInitializationType FFFFFFFA, 0A80FEF8
    0024:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
    0024:fixme:system:NtUserSystemParametersInfo Unimplemented action: 59 (SPI_SETSTICKYKEYS)
    0024:fixme:system:NtUserSystemParametersInfo Unimplemented action: 53 (SPI_SETTOGGLEKEYS)
    0024:fixme:system:NtUserSystemParametersInfo Unimplemented action: 51 (SPI_SETFILTERKEYS)
    00fc:err:winediag:nodrv_CreateWindow Application tried to create a window, but no driver could be loaded.
    00fc:err:winediag:nodrv_CreateWindow Make sure that your X server is running and that $DISPLAY is set correctly.
    00fc:fixme:dwmapi:DwmSetWindowAttribute (00090032, 14, 0B88779C, 4) stub
    ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
    ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
    ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:5233:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2660:(snd_pcm_open_noupdate) Unknown PCM default
    ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
    ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
    ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
    ALSA lib conf.c:4745:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    ALSA lib conf.c:5233:(snd_config_expand) Evaluate error: No such file or directory
    ALSA lib pcm.c:2660:(snd_pcm_open_noupdate) Unknown PCM default
      inflating: main/iw_dlc8_00.iwd     
      inflating: zone/dlc/mp_abandon.ff  
      inflating: zone/dlc/mp_abandon_load.ff  
      inflating: zone/dlc/mp_bloc.ff     
      inflating: zone/dlc/mp_bloc_load.ff  
     extracting: zone/dlc/mp_bloc_sh.ff  
     extracting: zone/dlc/mp_bloc_sh_load.ff  
     extracting: zone/dlc/mp_bog_sh.ff   
     extracting: zone/dlc/mp_bog_sh_load.ff  
      inflating: zone/dlc/mp_cargoship.ff  
      inflating: zone/dlc/mp_cargoship_load.ff  
     extracting: zone/dlc/mp_cargoship_sh.ff  
     extracting: zone/dlc/mp_cargoship_sh_load.ff  
      inflating: zone/dlc/mp_compact.ff  
      inflating: zone/dlc/mp_compact_load.ff  
      inflating: zone/dlc/mp_complex.ff  
      inflating: zone/dlc/mp_complex_load.ff  
      inflating: zone/dlc/mp_crash.ff    
      inflating: zone/dlc/mp_crash_load.ff  
     extracting: zone/dlc/mp_crash_tropical.ff  
     extracting: zone/dlc/mp_crash_tropical_load.ff  
      inflating: zone/dlc/mp_cross_fire.ff  
      inflating: zone/dlc/mp_cross_fire_load.ff  
     extracting: zone/dlc/mp_estate_tropical.ff  
     extracting: zone/dlc/mp_estate_tropical_load.ff  
     extracting: zone/dlc/mp_fav_tropical.ff  
     extracting: zone/dlc/mp_fav_tropical_load.ff  
     extracting: zone/dlc/mp_firingrange.ff  
     extracting: zone/dlc/mp_firingrange_load.ff  
      inflating: zone/dlc/mp_fuel2.ff    
      inflating: zone/dlc/mp_fuel2_load.ff  
      inflating: zone/dlc/mp_killhouse.ff  
      inflating: zone/dlc/mp_killhouse_load.ff  
      inflating: zone/dlc/mp_nuked.ff    
      inflating: zone/dlc/mp_nuked_load.ff  
      inflating: zone/dlc/mp_overgrown.ff  
      inflating: zone/dlc/mp_overgrown_load.ff  
     extracting: zone/dlc/mp_rust_long.ff  
     extracting: zone/dlc/mp_rust_long_load.ff  
     extracting: zone/dlc/mp_shipment_long.ff  
     extracting: zone/dlc/mp_shipment_long_load.ff  
      inflating: zone/dlc/mp_storm.ff    
      inflating: zone/dlc/mp_storm_load.ff  
     extracting: zone/dlc/mp_storm_spring.ff  
     extracting: zone/dlc/mp_storm_spring_load.ff  
      inflating: zone/dlc/mp_strike.ff   
      inflating: zone/dlc/mp_strike_load.ff  
      inflating: zone/dlc/mp_trailerpark.ff  
      inflating: zone/dlc/mp_trailerpark_load.ff  
      inflating: zone/dlc/mp_vacant.ff   
      inflating: zone/dlc/mp_vacant_load.ff  
    ---Checking if gamefiles are in place---
    ---Gamefiles found!---
    ---Checking if WINE workdirectory is present---
    ---WINE workdirectory found---
    ---Checking if WINE is properly installed---
    ---WINE properly set up---
    ---Prepare Server---
    ---Checking for 'server.cfg'---
    ---'server.cfg' found!---
    ---Checking for 'playlists.info'---
    ---'playlists.info' found!---

     

  5. This are the commands I use to have ventura and to get iMessage working. I left SERIAL, BOARD_SERIAL, UUID, and MAC_ADDRESS empty as thats specific to each user. Check this out to get those generated

     

    I didn't use the vnc version mentioned in an earlier post here. Idk what difference it makes, but everything works fine for me. VNC included. 

    mkdir /var/tmp/docker-osx
    cd /var/tmp/docker-osx
    
    wget https://raw.githubusercontent.com/sickcodes/Docker-OSX/master/Dockerfile
    
    docker build -t docker-osx --build-arg VERSION=13.0 --build-arg SIZE=200G .

    Then run this after the docker build

    docker run -i \
    	--device /dev/kvm \
        --device /dev/snd \
    	--name='Docker-OSX' \
    	-d --privileged \
    	-p 50922:10022 \
    	-p 8888:5999 \
    	-v /tmp/.X11-unix:/tmp/.X11-unix \
    	-e "DISPLAY=${DISPLAY:-:0.0}" \
    	-e RAM=6 \
    	-e NETWORKING=vmxnet3 \
        -e EXTRA="-display none -vnc 0.0.0.0:99,password=on" \
    	-e MASTER_PLIST_URL=https://raw.githubusercontent.com/sickcodes/osx-serial-generator/master/config-custom.plist \
        -e GENERATE_SPECIFIC=true \
        -e DEVICE_MODEL="iMac20,2" \
        -e SERIAL="" \
        -e BOARD_SERIAL="" \
        -e UUID="" \
        -e MAC_ADDRESS="" \
    	sickcodes/docker-osx:ventura

     

    I was wondering if anyone can get ^ this translated into a dockerMan xml to be used on community apps?

    • Like 2
  6. Can't figure out how to get an Intel GPU to passthrough when I have a RTX 2070 GPU in the system also. Everytime I start the VM with "Intel UHD Graphics 630" selected for the Graphics card, my VM never starts or rather I don't know that it does. I have TeamViewer installed which would let me know so I can remote in, but it never lets me.

     

    Was anyone able to get Intel UHD graphics passed through? More specifically a Intel i5-10400? Or maybe if anyone can help me figure out how to do it with some steps?

  7. On 1/15/2023 at 4:17 PM, matt4542 said:

    Thanks for this, Juan. You set me on the right path. I also saw your comment on the Github issues page for the vnc-version only working with Catalina.

     

    I dug around a bit and have a working docker run command that seems to be working. I'm currently installing Ventura using VNC without having to manually build the image. This looks to have done it for me.

     

    docker run -i \
        --device /dev/kvm \
        --device /dev/snd \	
        -p 50922:10022 \
        -p 8888:5999 \
        -v /tmp/.X11-unix:/tmp/.X11-unix \
        -e "DISPLAY=${DISPLAY:-:0.0}" \
        -e EXTRA="-display none -vnc 0.0.0.0:99,password=on" \
        -d --privileged \
        sickcodes/docker-osx:ventura

     

     

     

    Can you expand on this command? When I run it in terminal I get this

    eII7JTz.png

  8. 11 hours ago, itimpi said:

    I suspect you want the shares containing the files to be set with Use Cache=Only/Prefer.    In such a case mover will not try to move the files to the array.   This does, however, mean that you later want files moved to a share which IS set to have files either only on the array or has Use Cache=Yes set.

    I take it this means I need to have a separate downloads folder? My structure follows the trash guides setup with the data folder set as Cache yes

     

    data

         - media

              - movies

              - tv

              - torrents

              - usenet

     

    Within Sabnzbd I have my downloads path set as such that way I can utilize the Minimum Free Space for Completed/Temporary Download Folder

     

    chrome_6uH0erM0Yq.png

  9. 1 hour ago, ich777 said:

    Try to add this to the Startup Parameters::

    +set party_enable "0"

     

    ...but I'm not to sure about that since I'm not that familiar with the game, you can try different config files too.

    See also here: Click

    Was able to figure it out.

     

    Needs to be +party_enable 0

     

    but I cant get it to show in the master list 🤔 for some reason it only shows as a local server

  10. Anyone else having issues lately where any movie you watch it keeps skipping forward a few seconds randomly?

     

    EDIT: Fixed by following these steps

     

    Visit https://app.plex.tv/ 151

    Click on the Settings icon in the Plex Web header

    Click Show Advance within the Settings view

    Click on Debug within the Settings view left-side bar

    Within the settings view you’ll see a Use alternate streaming protocol for video playback checkbox

    Check that checkbox, save settings

  11. Hello!

     

    Recently, i've been having this weird issue where my CPU temperatures keep getting reported as very high (80c).

     

    When I am in the ASUS BIOS, it reports it as normal (30c), its just when I boot into the Unraid dashboard that it becomes an issue.

     

    I've reseated the CPU fan multiple times, but it keeps coming up with the same issue. 

     

    I attached the diagnostics report. Any help would be wonderful. Thank you!

    tower-diagnostics-20210510-0830.zip

  12. On 11/25/2020 at 5:48 AM, rojarrolla said:

    Hi, the idea was good, thanks for your input. However, when I configure nextcloud I get a message telling me that there is an internal server error:
    "the server can not complete your request."

    Then asks me to contact my "server administrator" ( me ).

    Is the same if I restart both nextcloud and postgre11 dockers.

    Thx!

     

    did you ever fix this issue? Im having it currently

     

    EDIT: Nvm fixed it. If anyone sees this in the future. Make sure you clear out every folder in your Nextcloud share you probably already made

    • Like 1
  13. 24 minutes ago, saarg said:

    There are no options in this plugin.

    You are probably talking about an application, but since you don't mention which, it's hard to help.

    Sorry. Yes, I meant in Plex itself. I've done whats mentioned in OP, but for some reason the actual option to enable HW decoding/encoding is not showing in Plex transcoder settings

  14. 7 minutes ago, johnnie.black said:

    Both disks are showing UNC @ LBA errors, also IDNF @ LBA, first one is usually a disk problem but together with the other might point to a different problem, like bad power, but still should run an extended SMART test on both.

    Ill run an extended smart test on them..

     

    Do you think the SATA cables could be going bad? Going off of what I said earlier ab out how the HDD's are fine in an external enclosure

×
×
  • Create New...