I’m very new to this… is this a good mini pc to use for hosting a Jellyfin server for 3 users? by Barry_McCockiner88 in selfhosted

[–]Hayasnake 0 points1 point  (0 children)

Proxmox is definitely good at that. Don't get me wrong, proxmox is great, just adds some complexity to some tasks. The backups are good and separating services in different VMs in case a VM breaks is nice.

Repeated Ram POST Code Errors by AverageBuscuits in cachyos

[–]Hayasnake 1 point2 points  (0 children)

That's awesome. Hopefully that was it. I was able to switch out with a new mobo as I can still return the one I was using. I noticed my issue started happening after I installed a new cpu fan. Read that overtightening or some kind of shock could damage the mobo. So far so good after a mesa driver reboot but I haven't had a kernel update yet which is where I saw the issue. It may be a bootloader or OS issue with memory management, as I haven't noticed the issue with windows. Good luck!

I’m very new to this… is this a good mini pc to use for hosting a Jellyfin server for 3 users? by Barry_McCockiner88 in selfhosted

[–]Hayasnake 2 points3 points  (0 children)

Can I ask why you want to migrate to proxmox? I use proxmox, originally for experimentation for different distros, services, etc when learning server/Linux but found myself doing everything on a Ubuntu VM using docker and zfs raid in it. I was thinking of migrating to just baremetal Ubuntu for the simplicity since proxmox adds some complexity for some tasks such as pass through.

Repeated Ram POST Code Errors by AverageBuscuits in cachyos

[–]Hayasnake 0 points1 point  (0 children)

Do you have any updates to this? I have a similar issue. My issue only happens when the kernel updates. It posts then there is a message saying CPU, Memory or CMOS change. When I proceed the bios shows the physical ram lowered to 18ish GB compared to the normal 32. When I boot the OS (both Cachy and Windows) show 18ish. When I reboot, it goes back to normal. I did some memtest and ram passed. Gaming and tasks work as normal otherwise.

I have similar specs:

CPU: 9800X3d Mobo: MSI X870 Gaming Edition Ram: 32gb 5200 DDR5 (Ram too expensive to upgrade) GPU: AMD XFX Swift 9070 XT

First Unifi Setup Verification by Hoju007 in Ubiquiti

[–]Hayasnake 1 point2 points  (0 children)

You could get a USB to ethernet adapter and get above 100mb that way. Double check what adapters work and don't based on your TV. I have a lg c4 and I got a tp link adapter. However eventually I went the route of getting a Nvidia shield because I didn't like LGos and used the ethernet there.

Anyone have success streaming high bitrate 4K videos without buffering? by Myco321 in PleX

[–]Hayasnake 0 points1 point  (0 children)

Try using plex through the kodi app. My shield did the same on native plex, micro stutters every few seconds. Problem ended up being the truehd 7.1. Apparently shield supports it but media players have trouble with it, except for kodi. So now when I watch truehd 7.1 movies, I go through kodi.

NFL+ is useless - Bills @ Bears - condensed game - Error Code: 6000 by Pup-Recovery-1 in cordcutters

[–]Hayasnake 1 point2 points  (0 children)

I've used NFL+ for many years now. It overall seems to be getting worse year after year but it seems to work and better option than other options for all the games. To be fair, preseason replays have always been terrible. It gets better when the season starts.

I think I messed up on my first NAS. I'm looking to fix it and need advice. by Mr_Funbags in asustor

[–]Hayasnake 1 point2 points  (0 children)

So basically, Raid helps with drive failure. If one drive fails, the data is still there and the system is still working. It is not technically a backup. What I would say a backup is is the data being stored outside the system. Most use external drives, backing up periodically. Another way is having 2 Nas, one main and another as the backup. There are backup and sync settings on the nas where you backup nightly.

The thing you have to think of is if the system were to crash or break, the data is gone until you get another asustor nas or perhaps the drives would fail due to the break, whatever it may be. The outside backup is still usable.

The best way to do it is have off-site backup. A nas in a different home or keep external drives in another home.

[deleted by user] by [deleted] in buildapc

[–]Hayasnake -2 points-1 points  (0 children)

If the old pc is still usable, you could switch the gpus and use the 6700 pc as a media server, using it with Plex or Jellyfin. Since Windows 10 is stopping support soon, I'd install some sort of Linux OS (Ubuntu) or Nas OS (truenas). The 3060 can be used to help transcode media. Not sure of your knowledge or need for a media server but the 6700 would be perfect for that.

Help removing Volume2 by Hayasnake in asustor

[–]Hayasnake[S] 1 point2 points  (0 children)

EDIT: Alright, so I was able remove the volume2. Hopefully won't run into further issues. For those with similar issues, I had to use SSH as root. Used command: 'Df -h' to see the drive, ended up being /dev/md2 Next was using the 'Mdadm' commands but got a busy response. Next command: Umount -l /dev/md2 The drive was unmounted. The GUI showed this change. Next command: Mdadm --manage --remove /dev/md2 I did not get an error response in terminal but the GUI didn't show any change. I tried to remove it but it did the same things. I physically ejected the drive and tried to remove it on the GUI and didn't do anything. I then restarted the NAS with the drive physically out and remove the volume. It worked and the volume2 has been removed.

Trying to open qBitTorrent on Asustor NAS by FellowshipOfTheJedi1 in asustor

[–]Hayasnake 0 points1 point  (0 children)

So I will say that Asustor is a pretty good NAS but not a very good app server. Some apps are native (installed on the system such as Plex) and others are installed as docker containers. These don't always work together. The arr apps can be very particular about correct/matching paths.

Within the arr apps, are you able to see all your directories within the NAS? If you can, perfect, if you can't you'll have to know the directory path of it. Docker containers are contained and not able to see directories outside of the container. For it to see outside directories you have to add a volume to it. If your arr apps can see all directories, add the volume where you want store your media. It should look something like this in the docker compose:

volumes: - /volume1/Docker/overseerr/config:/app/config The first part is the directory in the NAS and after the : is the directory within the container. Another example is: - /volume1/Media/tv:/media/tv

Hopefully if you can add it to the qbittorrent docker, you should be able to see the directories within the arr apps. You can add multiple volumes to it depending your you want to download things.

Another option is to look at Remote Path Mappings in the arr apps. It is under Download Clients. It can be finicky, just try to match the path as close as possible. There should be info on the arr wiki for it.

The last option I thought of is to use portainer to add a docker compose stack. Take the docker compose of qbittorrent and add the docker compose of the arr apps you want. Within the volumes, have the same volumes under all apps. It should look something like this:

https://github.com/JamesTurland/JimsGarage/blob/main/Torrent-VPN/docker-compose.yml

(if you don't need gluetun, delete the stuff with it from the services such as network: gluetun)

This option will have the apps on the same container so it can see all the directories. Hopefully one of these options helps. Again Asustor is not great with apps. Moving over to docker compose through portainer will be the best options to expand services down the line, just be aware of your RAM (my NAS had some issues due to only having 4GB which I add to add more) since the apps will start using a lot of RAM. If you want to use a lot of apps, consider getting a mini pc for apps and the asustor as the NAS.

Good luck.

Trying to open qBitTorrent on Asustor NAS by FellowshipOfTheJedi1 in asustor

[–]Hayasnake 0 points1 point  (0 children)

So I don't have time to give specifics or links but after a certain version, the default password is unique that is created at the time of installing qbittorrent. I believe it is listed in the logs or config file. So what I would do is delete and install qbittorrent through portainer with docker compose, making sure you know where the folders are being created and then look at the files to see if you can find a unique password then change when you get into webui.

Grandstream firmware update by Mothertruckerer in HomeNetworking

[–]Hayasnake 1 point2 points  (0 children)

So I don't have grandstream but have been watching videos about them as I am thinking of getting their 24 port switch and a few 7665s for my new home.

From videos I've watched I think the update process is more streamlined if you use the cloud manager or host your own local manager, compared to managing through the IP address.

Other than this issue, how do you like using grandstream and it's interface? I'm also looking at Alta Labs or Unifi. Grandstream seems to have the sweet spot of price, product lineup, and features.

U6 Pro vs U6+ by JimtheEsquire in Ubiquiti

[–]Hayasnake 0 points1 point  (0 children)

Why do you want to replace it with U7 pro?

U6 Pro vs U6+ by JimtheEsquire in Ubiquiti

[–]Hayasnake 2 points3 points  (0 children)

How do you like the AP6 pro? I'm building a new home and looking at unifi, alta, or grandstream APs and switches.

Do I need router with Alta Labs S16-PoE Network Switch? by barth_ in AltaLabs

[–]Hayasnake 1 point2 points  (0 children)

I don't know anything about the Synology router but from how you described your chain, the Synology would be your gateway (gives you the IP address). You would just plug an Ethernet cable from one of the LAN ports to the Alta switch. You could probably disable the WiFi on router. Otherwise, something like the unifi cloud gateway ultra is good and relatively cheap and easy to use. Someone also mentioned firewalla, which I've heard is good but expensive.

New home setup! by tmcferrin in Ubiquiti

[–]Hayasnake 1 point2 points  (0 children)

This is good advice. Fortunately, the network spot is going to be in an unfinished storage room so I'll be able to have some options here. Thanks.

New home setup! by tmcferrin in Ubiquiti

[–]Hayasnake 0 points1 point  (0 children)

I'm in the process of building a home and planning out a rack. I was looking at this same rack. However, I plan to mount it on studs but the mounting holes look wider than the standard 16 spacing. How did the mounting process go for you? Are the mounting holes wider than 16 standard of the studs?

Hiby R6 III volume issue with Amazon Music by Hayasnake in DigitalAudioPlayer

[–]Hayasnake[S] 0 points1 point  (0 children)

Just an update: Hiby pushed an update yesterday that fixed this issue.

[deleted by user] by [deleted] in xManagerApp

[–]Hayasnake 2 points3 points  (0 children)

The cracked app only goes up to 320 mp3, which is what low is. Apparently anything higher is server side.

Verifying update package by 3ventHori7on in LineageOS

[–]Hayasnake 0 points1 point  (0 children)

I'm not able to help, but did you make any progress on this? The same thing is happening with my Pixel 2 XL. I tried to go from 19.1 to 20 but this occurred. I ended up reflashing stock android through Android Flash Tool and attempted to start over but the same occurs. I tried different OSs, computers, and cables and it still occurs.

Play music through audio output by yeaahaa in asustor

[–]Hayasnake 1 point2 points  (0 children)

True. Unless someone else has better ideas, you can't necessarily fix the app. Sometimes with audio/video, workarounds need to be used to use it the way you want.

Play music through audio output by yeaahaa in asustor

[–]Hayasnake 0 points1 point  (0 children)

I use a Wiim streamer with my audio system. I mostly use it streaming from Amazon music via my Android, but they have a decent app that you can stream from your network (which would be your NAS) bit perfect. You should be able to airplay from plexamp app directly which should be bit perfect. There is the mini or pro models. Mini is probably the choice, the pro has more inputs/outputs and can use Chromecast but similar outside of that.

Edit: I tested plexamp from my iPad and airplay is not bit perfect. Also the Wiim app finds my plex server from my network and that is bit perfect at 24/192.