Repooc

Members
  • Posts

    17
  • Joined

  • Last visited

About Repooc

  • Birthday 03/31/1982

Converted

  • Gender
    Male
  • Location
    Virginia Beach

Recent Profile Visitors

965 profile views

Repooc's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Yeah, I guess I should have said, I have figured out how to modify the code for myself but I guess to others it was misleading that it added your to the list if you modified that file.
  2. Just did some testing it seems the only thing the provider file does is just list the providers in the system options not actually change what search providers can or cant be used in the search.js script
  3. { "providers" : [ {"name":"Allmusic","url":"https://www.allmusic.com/search/all/","prefix":"/a"}, {"name":"Discogs","url":"https://www.discogs.com/search/?q=","prefix":"/di"}, {"name":"Duck Duck Go","url":"https://duckduckgo.com/?q=","prefix":"/d"}, {"name":"iMDB","url":"https://www.imdb.com/find?q=","prefix":"/i"}, {"name":"TheMovieDB","url":"https://www.themoviedb.org/search?query=","prefix":"/m"}, {"name":"Reddit","url":"https://www.reddit.com/search?q=","prefix":"/r"}, {"name":"Qwant","url":"https://www.qwant.com/?q=","prefix":"/q"}, {"name":"Repooc Search","url":"https://search.MYDOMAIN.HERE/?q=","prefix":"/z"}, {"name":"Soundcloud","url":"https://soundcloud.com/search?q=","prefix":"/so"}, {"name":"Spotify","url":"https://open.spotify.com/search/results/","prefix":"/s"}, {"name":"TheTVDB","url":"https://www.thetvdb.com/search?q=","prefix":"/tv"}, {"name":"Trakt","url":"https://trakt.tv/search?query=","prefix":"/t"} ] } It does show up in the options list in Search Options but doesnt seem to work is all, like the search.js isnt parsing the providers file or something?
  4. is it me or do custom providers not work? I added my own provider which is a searx installation but the page is acting like the /z i made it isnt even doing anything.
  5. Ok got it going and appreciate the help from both of you. Got it up and running. Will look at possibly putting this behind my reverse proxy if the app suits me.
  6. I was actually not trying to have an attitude as I felt I was receiving an attitude with your previous response actually lol. So I guess I took the comment like you were being condescending and was trying to politely say I don't need that type of reply if that was the case. I will look at the posts here since my reply and see if I can get it up and running and will report back after and let you know I got it going or not. Thanks for responding and trying to assist. I appreciate the info and will report back when I get time to see if I got it up and running tyvm for trying to assist.
  7. Be nice for some setup assistance. I am usually good about getting this stuff going but not sure what I am missing as setup directions seem to be a bit lacking or I'm just overlooking stuff. Yes there is an unraid template but unless you have some insight on what I am missing or updated instructions, this comment isn't very helpful as this isn't a very helpful post unless you are offering help but I didn't get that feeling from your post.
  8. Did you get this docker working at all as I just tried and it doesnt seem to work correctly. I installed a postgres11 container and it doesnt appear that was the issue. Something to do with FIREFLY_PATH that it automatically fills in or something. If anyone has had success installing this app via the template provided in the community app please let me know what I may have misconfigured.
  9. I am having issues getting this to work with the MySQL docker image available in the community applications section... I am not new to unraid but I am by no means a pro. If someone has gotten this app to work with dockers on their unraid setup, a little help would be appreciated... I keep getting connection refused or something can't recall now... I was able to connect to the mysql setup with MySQL Workbench but Clarkson would fail on docker start no matter what I used for credentials. Edit: I have now gotten the 2 to communicate... just can't seem to register the initial account as I am getting a 500 error in the logs. To fix the first issue was to make sure to use the 5.7.26 tag of the mysql docker Edit2: Not sure what the issue was but I nuked everything and started over and got it installed... Thanks anyways as I prob didn't give much time for posts lol
  10. @ich777 Does the factorio docker rebuild when new updates are released or do you have to do it manually as it appears that the server is behind a couple versions. Server is on 0.17.50 and my pc is on .52 No rush as i can force the one on my pc to the older one just curious
  11. Thanks, didn't realize the repo changed
  12. Seems that the Factorio beta is behind a few version and restarting the docker does not update it to the latest...
  13. I had found a post where someone posted a handy bash script to list your nic ports with link status in which i had plugged in to the router/switch and was able to see which was connected. #!/bin/bash for ETH in $(find /sys/devices/ -type d -iname "eth[0-9]"); do port=$(basename $ETH); export $(cat $ETH/device/uevent); link_status=$(cat $ETH/operstate); desc=$(lspci -d $PCI_ID| cut -d ':' -f3) pci_bus=$(echo $PCI_SLOT_NAME|sed -e 's#0000:##') echo -e "Found NIC: $port\n Name: $desc\n PCI id: $PCI_ID\n PCI bus: $pci_bus\n Status: $link_status\n" done Can't recall the original author that posted this but credit goes to them.
  14. Thanks for clarification, much appreciated. Will test it out when plex isn't in use. Edit: Seems to work as intended... woohoo!!
  15. Sounds like this is what I am aiming for... This is the IOMMU group info for my nic, not sure if there is a way to figure out which corresponds to which port... IOMMU group 13: [14e4:1639] 01:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20) [14e4:1639] 01:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20) IOMMU group 14: [14e4:1639] 02:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20) [14e4:1639] 02:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20) Would this be my append line then? append xen-pciback.hide=(02:00.0)(02:00.1) initrd=/bzroot Would this be what I need in my VM xml then??? <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x02' slot='0x00' function='0x0'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x02' slot='0x00' function='0x1'/> </source> </hostdev>