Jump to content

nicedevil

Member
  • Posts

    5
  • Joined

  • Last visited

Awards

This user doesn't have any awards

nicedevil's Achievements

  1. I think that I will go with that one https://www.asrock.com/MB/Intel/J5005-ITX/index.asp Hardware decoding for HEVC with 10 bit and VP9 and should have enough power for this simple services I would like to have.
  2. budget shouldn't matter, but the server part should as cheap as it could be for serving my stuff I described at the top
  3. should be a lowbudget Serverhardware, isn't mandatory to be the newest parts for it Maybe I should add... no 4k/UHD HEVC Transcoding, just FullHD
  4. Hey guys, I'm planning a new all in one PC-Case for this year. I've got a seperate server/nas with an old AMD CPU and FM2 Socket and 16 GB DDR3 RAM. Because of my planned gaming PC upgrade, I like to change my case to the new Phanteks Evo X or the Corsaidr 1000D. So my new system is limited to ITX for my serverboard. My server is required for cloud services for my family, plex streaming, pihole, teamspeak server, samba fileservices and maybe steamcaching. The last thing isn't running on my actual server... that could be an issue with my running apache2 for my other services, so if I read everything right, steamcache is using nginx. Now I'm planning the new system with vmware hypervisor to get 2 virtual machines, one for "normal stuff" and the 2nd for steamcache. so both systems can have their own webserver. The OS would be debian or ubuntu. I'm still looking for a good combination of serverboard/cpu that doesn't has to be new Here are the requirements: 1x M2 PCI-E 2280 at least 4x SATA 6 GB/s 2x DDR3 slots would be nice, if the board got a black PCB. The CPU should be able to handle HEVC transcoding and ofc up to 2-3 streams at the same time? Is there anything you could recommend? Sry for my bad english ;D
  5. Hey there, first, THANK YOU for this awesome guide I have a little problem now... I run an ubuntu 18.04 server in my home for cloud services for my family, plex aaaaaaaaaaaaaaaand PiHole (maybe a good thing for a new video @Linus) For everybody who don't know what PiHole is: It is DNS Service that could be installed for blocking Ads. So Port 53 is already in use for my Homeserver and after adding the additional IP addresses for the steamcaches, pihole starts listing on port 53 on those addresses as well. Looks like this: docker@NAS:sudo netstat -tulpn | grep 53 tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.2:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.50:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.51:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.52:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.53:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.54:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.55:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp 0 0 10.0.4.56:53 0.0.0.0:* LISTEN 2337/pihole-FTL tcp6 0 0 ::1:53 :::* LISTEN 2337/pihole-FTL tcp6 0 0 fe80::a60:6eff:fe74::53 :::* LISTEN 2337/pihole-FTL udp 0 0 127.0.0.1:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.2:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.50:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.51:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.52:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.53:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.54:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.55:53 0.0.0.0:* 2337/pihole-FTL udp 0 0 10.0.4.56:53 0.0.0.0:* 2337/pihole-FTL Can somebody help me out with this error? Error starting userland proxy: listen udp 10.0.4.50:53: bind: address already in use. Maybe someone got PiHole installed and steamcache as well on the same machine. My Pihole is set as default DNS on my router. So the only DNS Entry for that is 10.0.4.2 Is that even possibile to get it run on one machine? If not, I'm going to buy a rapsberry Pi 3 for my pihole Mhhh now I got an idea: While running this command: sudo docker run \ --restart unless-stopped -d \ --name steamcache-dns \ -p 10.0.4.50:53:53/udp \ -e UPSTREAM_DNS=10.0.4.X \ -e STEAMCACHE_IP=10.0.4.50 \ -e ORIGINCACHE_IP=10.0.4.51 \ -e BLIZZARDCACHE_IP=10.0.4.52 \ -e RIOTCACHE_IP=10.0.4.53 \ -e FRONTIERCACHE_IP=10.0.4.54 \ -e UPLAYCACHE_IP=10.0.4.55 \ -e WINDOWSCACHE_IP=10.0.4.56 \ steamcache/steamcache-dns:latest And thinking about having my PiHole on an other machine (i.e. raspberrypi3) so should it run while adding this ip address in line 4?
×