--- Log opened Mon Apr 27 00:00:58 2020 05:15 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has joined #se2600 05:15 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has quit [Changing host] 05:15 -!- K`Tetch_ [~no@unaffiliated/ktetch] has joined #se2600 05:16 -!- K`Tetch [~no@unaffiliated/ktetch] has quit [Ping timeout: 240 seconds] 06:25 -!- rpifan [~rpifan@p200300D2671677942F7DE3D2A8073497.dip0.t-ipconnect.de] has joined #se2600 06:35 -!- K`Tetch [~no@unaffiliated/ktetch] has joined #se2600 06:38 -!- K`Tetch_ [~no@unaffiliated/ktetch] has quit [Ping timeout: 260 seconds] 08:06 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has joined #se2600 08:06 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has quit [Changing host] 08:06 -!- K`Tetch_ [~no@unaffiliated/ktetch] has joined #se2600 08:08 -!- K`Tetch [~no@unaffiliated/ktetch] has quit [Ping timeout: 244 seconds] 08:32 -!- dc0de1 [~jim@198.46.153.211] has joined #se2600 08:32 -!- mode/#se2600 [+o dc0de1] by ChanServ 08:34 -!- dc0de [~jim@198.46.153.211] has quit [Ping timeout: 240 seconds] 08:45 -!- dc0de [~jim@198.46.153.211] has joined #se2600 08:45 -!- mode/#se2600 [+o dc0de] by ChanServ 08:49 -!- dc0de1 [~jim@198.46.153.211] has quit [Ping timeout: 265 seconds] 09:03 <@dc0de> Wow, what a difference 802.11ac makes 09:10 <@opticron> which ubiquiti AP did you get? 09:17 <@Dolemite> mr0ning, be0tches and h0ez! 09:30 <@dc0de> Mornin Dolemite 09:31 <@dc0de> opticron: Unifi 802.11 UAP-AC-PRO-US 09:34 <@opticron> I went with the UAP-AC-HD a year or more back and couldn't be happier 09:34 <@opticron> caught it on sale for $250 09:35 <@Corydon76> opticron: That model seems a bit overpowered, unless you're deploying it in an area with hundreds of connected devices. 09:36 <@opticron> I went for overkill due to the sale price and not wanting to buy another AP for 5+ years 09:37 <@Corydon76> I don't see any advantage of that one over the Pro for a home situation. 09:38 <@Mirage> I thought about that one but wound up going with the same dc0de got..which was good because I wound up having to buy a second one thanks to all the signal drop of 5G through my walls. 09:40 <@opticron> Corydon76, 1) higher speed radios and 2) I thought it had better range, but I'm not sure on that now 09:41 <@Corydon76> The throughput is rated better, but I think that's largely an effect of it being able to handle more simultaneous devices, not that any connected device is faster. 09:42 <@opticron> I was also looking to future-proof, so I was looking for a wave2 AP. I'd probably go with nanohd if I were to buy one now 09:43 <@Corydon76> I don't know about future proofing, either. It might be field upgradable to 802.11ax, but now with the FCC having released 6GHz bands for unlicensed use, I doubt that the radios will perform well in that band. 09:48 <@opticron> ehh, I'll start thinking about 11ax when I have 2+ devices that actually support it. Currently that number is 0 10:14 -!- K`Tetch [~no@unaffiliated/ktetch] has joined #se2600 10:18 -!- K`Tetch_ [~no@unaffiliated/ktetch] has quit [Ping timeout: 260 seconds] 10:46 -!- rpifan_ [~rpifan@p200300D26716773927709A8635479A28.dip0.t-ipconnect.de] has joined #se2600 10:48 -!- rpifan [~rpifan@p200300D2671677942F7DE3D2A8073497.dip0.t-ipconnect.de] has quit [Ping timeout: 244 seconds] 11:26 -!- Netsplit *.net <-> *.split quits: robogoat_, @dc0de, @oddball 11:27 -!- robogoat [~robogoat@209.195.0.146] has joined #se2600 11:28 -!- rpifan_ is now known as rpifan 11:31 -!- Netsplit over, joins: @dc0de 11:32 -!- Netsplit over, joins: @oddball 11:42 -!- Netsplit *.net <-> *.split quits: @ChanServ 11:45 -!- Netsplit over, joins: @ChanServ 12:26 -!- Netsplit *.net <-> *.split quits: @oddball, @dc0de 12:29 -!- Netsplit over, joins: @oddball 12:29 -!- Netsplit over, joins: @dc0de 12:39 -!- Netsplit *.net <-> *.split quits: @ChanServ 12:42 -!- Netsplit over, joins: @ChanServ 12:48 <@dc0de> How do I install an rpm that is local on my system? yum install ? 12:53 <@e--> yes 12:54 <@e--> that is the way 12:54 <@Dagmar> ...or just rpm --install filename, IIRC 12:54 * e-- flies off into the sky 12:55 <@e--> if you use rpm yum will get upset 12:55 <@Dagmar> Guest20: That's nothing to do with Linux 13:01 <@Evilpig> dc0de: yes just use yum install 13:01 <@Evilpig> like e-- said, yum gets pissy when you use rpm directly 13:01 <@Dagmar> it can get as upset as it likes 13:02 <@Evilpig> I had ot build a function into our ansible install to check for rpm shenanigans caused by cfengine 13:02 <@Dagmar> It ain't the admin 13:02 <@Evilpig> - name: Check rpmdb 13:02 <@Evilpig> shell: yum -h 13:02 <@Evilpig> failed_when: ("rpmdb open failed" in rpmdb.stdout) or 13:02 <@Evilpig> (rpmdb.rc > 0) 13:03 <@Evilpig> - name: Clean out old rpmdb 13:03 <@Evilpig> shell: rm -f /var/lib/rpm/__db* 13:03 <@Evilpig> - name: Rebuild rpmdb 13:03 <@Evilpig> shell: rpm --rebuilddb 13:03 <@Evilpig> even though yum uses the rpm command, it gets pissy 13:09 <@Dagmar> There isn't one 13:09 <@Dagmar> @#$@#$ 13:10 <@Evilpig> hahah 13:56 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has joined #se2600 13:56 -!- K`Tetch_ [~no@047-039-211-239.res.spectrum.com] has quit [Changing host] 13:56 -!- K`Tetch_ [~no@unaffiliated/ktetch] has joined #se2600 14:00 -!- K`Tetch [~no@unaffiliated/ktetch] has quit [Ping timeout: 256 seconds] 14:00 < jb7od> northrup: Is this injection site supposed to sting like this? It's been two days.. 14:43 <@aestetix> jb7od: you might not have put in enough lysol 14:51 -!- rpifan [~rpifan@p200300D26716773927709A8635479A28.dip0.t-ipconnect.de] has quit [Read error: Connection reset by peer] 14:51 -!- rpifan_ [~rpifan@p4FCA224C.dip0.t-ipconnect.de] has joined #se2600 15:16 -!- rpifan_ is now known as rpifan 15:25 < jb7od> aestetix: figures- got the recipe from the same guy who made the Bill Gates antivaxxer meme. 15:37 * Mirage smacks Evilpig 15:37 <@Mirage> dc0de: yum localinstall 15:39 <@Evilpig> Mirage: it will take install just fine. I do it all the time when I do plex updates 15:39 <@Evilpig> * localinstall rpmfile1 [rpmfile2] [...] 15:39 <@Evilpig> (maintained for legacy reasons only - use install) 15:40 * Evilpig does a victory lap around Mirage 15:42 <@Mirage> What release is that on? 15:42 <@Evilpig> 7 15:43 <@Evilpig> let me check a 6 15:43 <@Evilpig> same on 6 15:45 <@Mirage> hrm..never got that notification on mine which is CentOS 7and you get that message when you use 'localinstall'...or is that somewhere else. I just executed localinstall and got no notification 15:46 <@Evilpig> I just hit the man page 15:46 <@Evilpig> I hadn't used localinstall and wanted to see the difference 15:47 <@Mirage> well, used to on 4/5/6 you _had_ to use localinstall for a local file.. dunno when that was changed/updated. 15:49 <@Evilpig> my guess would be it changed in 6 then, cause my plex server used to be 6 and I used install routinely on it 15:51 <@Evilpig> learn something new everyday.... 15:51 <@Mirage> you still running plex on your nas or on a real box? 15:51 <@Evilpig> never been on my nas. always been a real box 15:52 <@Evilpig> with the number of folks on it, it needed the horsepower 15:52 <@Evilpig> Mon Apr 27 15:52:43 2020 15:52 <@Evilpig> +-----------------------------------------------------------------------------+ 15:52 <@Evilpig> | NVIDIA-SMI 440.64.00 Driver Version: 440.64.00 CUDA Version: 10.2 | 15:52 <@Evilpig> |-------------------------------+----------------------+----------------------+ 15:52 <@Evilpig> | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | 15:52 <@Evilpig> | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | 15:52 <@Evilpig> |===============================+======================+======================| 15:52 <@Evilpig> | 0 Quadro P2000 Off | 00000000:01:00.0 Off | N/A | 15:52 <@Evilpig> | 54% 50C P0 18W / 75W | 231MiB / 5058MiB | 0% Default | 15:52 <@Evilpig> +-------------------------------+----------------------+----------------------+ 15:52 <@Evilpig> 15:52 <@Evilpig> +-----------------------------------------------------------------------------+ 15:52 <@Evilpig> | Processes: GPU Memory | 15:52 <@Evilpig> | GPU PID Type Process name Usage | 15:52 <@Evilpig> |=============================================================================| 15:52 <@Evilpig> | 0 31836 C /usr/lib/plexmediaserver/Plex Transcoder 221MiB | 15:52 <@Evilpig> +-----------------------------------------------------------------------------+ 15:53 <@Mirage> https://pastebin.com/0aGZ01qb 15:53 < PigBot> [Bash] PMS_Updater.sh **fixed** - Pastebin.com (at pastebin.com) http://tinyurl.com/y979kt3g 15:53 <@Evilpig> my only complaint with that thing is the cuda stuff is super finicky 15:54 <@Mirage> Yes, the cuda stuff can most certainly be a pain. I haven't really had nearly the issues on CentOS 7 vs 6, though. 15:54 <@Mirage> repaste.. https://pastebin.com/0aGZ01qb 15:54 < PigBot> [Bash] PMS_Updater.sh **fixed** - Pastebin.com (at pastebin.com) http://tinyurl.com/y979kt3g 15:54 <@Evilpig> it's been much better with 7 for sure 15:54 <@Evilpig> worst i've had is after kernel updates i've had to remove all teh cuda stuff and reinstall so it corrects itself for the current kernel. 15:55 <@Mirage> You might like that. Someone posted a script ages ago for automating the plex updating, but it was mostly broken. I fixed it and have been using it for quite some time w/o issue. 15:55 <@Evilpig> I'm leary of running the auto updates for plex. since i have it set for the plexpass stuff the betas occasionly do awful things 15:55 <@Mirage> I don't get betas 15:55 <@Evilpig> I will depending on what i'm seeing 15:56 <@Evilpig> I get the beta app on the tv and sometimes I need to update the server ot match 15:57 <@Mirage> one thing i've never done that i probably should do is dump all the updates in a folder and make it a custom local repo to install/update from so that I can use rollback 15:58 <@Evilpig> I was just looking at that. I have all the past versions just sitting in /root 15:59 <@Evilpig> from plexmediaserver-1.14.1.5488-cc260c476.x86_64.rpm -> plexmediaserver-1.19.1.2621-b249be3b0.x86_64.rpm 16:00 <@Evilpig> do you have it pulling in your plex credentials from a file someplace or just have them on the command line in cron but edited from this paste? 16:11 < jb7od> (when an outburst of Fujitsu SnanSnaps go on blinking-blue-light staus strikes...) 16:38 <@Mirage> Evilpig: hrm.. i use "-c ", but just going to the URL it's not showing the same latest version as what the normal download page shows. Granted it was apparently updated today, so it might just not be updated in that json URL yet? 16:56 <@Mirage> Evilpig: They apparently changed it to use the plex token instead of username/pass. Not too hard to find. 16:57 <@Mirage> Updating the script and testing it now. 17:39 <@Mirage> Evilpig: this is working properly for plexpass. https://pastebin.com/jDz5SWLB 17:39 < PigBot> [Bash] PMS_Updater.sh : X-Plex-Token - Pastebin.com (at pastebin.com) 17:39 <@Mirage> Link w/ instructions on finding your token are in the help text 18:05 -!- rpifan [~rpifan@p4FCA224C.dip0.t-ipconnect.de] has quit [Ping timeout: 260 seconds] 18:13 -!- rpifan [~rpifan@p200300D26700BD4341CF3D8DD0C577F7.dip0.t-ipconnect.de] has joined #se2600 20:26 -!- rpifan [~rpifan@p200300D26700BD4341CF3D8DD0C577F7.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 20:27 -!- rpifan [~rpifan@p200300D26700BD4341CF3D8DD0C577F7.dip0.t-ipconnect.de] has joined #se2600 20:48 <@Synx_hm> how is everybody? 22:46 -!- rpifan [~rpifan@p200300D26700BD4341CF3D8DD0C577F7.dip0.t-ipconnect.de] has quit [Quit: Leaving] --- Log closed Tue Apr 28 00:00:59 2020