ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. JaredBusch
    3. Topics
    • Profile
    • Following 0
    • Followers 44
    • Topics 969
    • Posts 29,707
    • Groups 1

    Topics

    • JaredBuschJ

      Need a desktop USB mic recommendation

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion microphone desktop users
      19
      3 Votes
      19 Posts
      2k Views
      RojoLocoR

      Blue mics are the way to go. Snowball, Yeti, whichever one you can afford, but go w/ Blue. They used to be all hand made in Latvia by artisans who used to work for Neumann (noi-man, say it right). The USB ones are Chinese made, but the designs are the tits. I have a snowball and 2x Yetis, all awesome.

      FFS, no Samson, no Plantronics, no Logitech if you are actually seeking a real microphone. If budget rules, then I no longer give a f@ck what you use, and you obviously hate good sound (snowball mic is like $50).

      edit: skip the Blue "ice" snowball... get the real one, $69.99 https://www.amazon.com/Blue-Snowball-Microphone-Textured-White/dp/B000EOPQ7E/ref=sr_1_3?ie=UTF8&qid=1488490633&sr=8-3&keywords=blue+snowball+mic

    • JaredBuschJ

      CentOS 7 networking issues

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion centos centos 7 networking
      16
      0 Votes
      16 Posts
      4k Views
      stacksofplatesS

      @stacksofplates said in CentOS 7 networking issues:

      NetworkManager still creates the ifcfg files under network-scripts. So those configs will still be there, but should have NM_CONTROLLED=yes

      Also, for some reason CentOS ships with both network and NetworkManager on at the same time. So that's most likely why you saw the DHCP for NetworkManager and the static file that you created. I always disable and mask network to keep people from turning it back on when they aren't paying attention.

      So it looks like they took out the NM_CONTROLLED section. I must have been thinking of RHEL 6. But NM still creates the ifcfg files in the same directory.

    • JaredBuschJ

      Unable to create a parking lot in FreePBX 13

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion freepbx freepbx 13 freepbx setup parking lot call parking
      3
      1 Votes
      3 Posts
      1k Views
      JaredBuschJ

      @fuznutz04 said in Unable to create a parking lot in FreePBX 13:

      Did you try disabling or uninstalling the call park module and then reinstalling the module?

      Do that let me get something to save in the GUI, but parking still did not work.

      Turns out the asterisk module was not even loaded.

    • JaredBuschJ

      Google accounts being signed out

      Watching Ignoring Scheduled Pinned Locked Moved News google security problems
      19
      2 Votes
      19 Posts
      3k Views
      Deleted74295D

      4 different Google accounts have asked me to sign in again on my android device over the past week-end. Still get occasional blips.

    • JaredBuschJ

      The SHA1 hash function is now completely unsafe

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sha1 cryptography encryption security
      7
      5 Votes
      7 Posts
      2k Views
      Reid CooperR

      @Breffni-Potter said in The SHA1 hash function is now completely unsafe:

      If you burn 110K in cash.
      And have a team of cyber security experts.

      Today, yes. But in six months it'll be a script and $30K in compute power. In two years it'll be $500 of AWS time.

    • JaredBuschJ

      Excessive explorer process

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion wtf windows explorer
      10
      0 Votes
      10 Posts
      3k Views
      ObsolesceO

      Nvm, answered my own question here.

    • JaredBuschJ

      Concern Around Hackers Using DHCP Pool

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      56
      3 Votes
      56 Posts
      3k Views
      DashrenderD

      @scottalanmiller said in Concern Around Hackers Using DHCP Pool:

      @Dashrender said in Concern Around Hackers Using DHCP Pool:

      In the case of the college, their dedicated IOT network was using DNS from their corporate network.

      Then it wasn't dedicated 😉

      No, clearly it wasn't dedicated.

    • JaredBuschJ

      Ubiquiti working on single pane management for EdgeMax devices

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion ubiquiti ubnt edgemax unms management wisp
      29
      7 Votes
      29 Posts
      6k Views
      Reid CooperR

      Seems pretty clear that UBNT has gone public with this at this point.

    • JaredBuschJ

      Using the TFTP server built into OSX

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion tftp macos osx how to guide
      1
      3 Votes
      1 Posts
      1k Views
      No one has replied
    • JaredBuschJ

      How do I setup TLS on a Postfix relay

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion postfix tls encryption email
      6
      2 Votes
      6 Posts
      2k Views
      NashBrydgesN

      @JaredBusch Awesome. Tks Jared. Tested and works beautifully!

    • JaredBuschJ

      NodeBB continuing to improve things nicely

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      1
      2 Votes
      1 Posts
      189 Views
      No one has replied
    • JaredBuschJ

      Installing Wordpress on CentOS 7 Minimal

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion wordpress centos 7 real instructions how to guide
      58
      3 Votes
      58 Posts
      10k Views
      JaredBuschJ

      @tim_g said in Installing Wordpress on CentOS 7 Minimal:

      @jaredbusch said in Installing Wordpress on CentOS 7 Minimal:

      setenforce permissive;

      Setup SELinux permissions

      semanage fcontext -a -t httpd_sys_content_t '/opt/yourdomain(/.*)?' restorecon -R /opt/yourdomain semanage fcontext -a -t httpd_sys_rw_content_t '/opt/yourdomain/wp-content(/.*)?' restorecon -R /opt/yourdomain/wp-content

      I run my servers with SELinux running in Enforcing mode, not permissive.

      So if it's in enforcing, WordPress will not run correctly. Example, you can't update, and the Add Plugins page gives a connection error (it's because httpd can't write correctly due to selinux enforcing).

      Instead of running SELinux in permissive system-wide, you can keep it in Enforcing mode, and issue the following command:

      semanage permissive -a httpd_t

      The reason I use that one instead of by directory, is because I don't know how to do that... well I do, but I didn't have time yet to see what all directories need to be written to for updating and plugins pages and such to work correctly. I'll add that here some other time when I get a chance to look in to it more.

      I only said that for install message you remove it back to enforcing

    • JaredBuschJ

      Nextcloud convert or migrate from ownCloud

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion owncloud nextcloud migration converting
      3
      4 Votes
      3 Posts
      2k Views
      IRJI

      You can use the upgrade tool which is even easier if you are on a current version of owncloud. Even though the article doesn't say anything about updating from owncloud, the first article I posted does say you can use this method on current owncloud servers. You just switch the update channel and search for updates.

      https://nextcloud.com/blog/get-up-to-date-with-the-new-nextcloud-updater/

    • JaredBuschJ

      Ubuntu install been around a while

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion ubuntu ubuntu 15.10 ubuntu 16.04 ubuntu 16.10
      2
      3 Votes
      2 Posts
      1k Views
      PenguinWranglerP

      I have a script I run that will remove them. Then I do the upgrade and add them back in via a script. I run a Ubuntu Server for the exact same reason you do. For a Unifi Controller

    • JaredBuschJ

      ScreenConnect 6.1 added annoying pop up

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion screenconnect popup
      8
      0 Votes
      8 Posts
      1k Views
      F

      I just started getting this the other day after updating to 6.1/updating the access app on my machine. Very annoying. Who on earth thought this was something that was needed?

    • JaredBuschJ

      Issues migrating Elastix 2.4 to FreepBX 13

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion elastix elastix 2.4 converting freepbx freepbx 13 sangoma
      6
      2 Votes
      6 Posts
      3k Views
      JaredBuschJ

      Now log into your new FreePBX system and it will show the Apply Config warning.

      Do so.

      0_1486444059378_upload-fea00064-3888-40ea-af94-ee5a8ca2979c

      At this point you can go through the new system one piece at a time and make sure you are good.
      Change a couple extensions to point to your new PBX and make sure they register and can call each other.
      Once you are sure that the basics are working, disable the trunks on the old system, enable on the new system, and verify outside connectivity works.
      Finally, you can change the rest of the extensions.

    • JaredBuschJ

      ScreenConnect on CentOS is sluggish

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion screenconnect centos 7
      36
      2 Votes
      36 Posts
      6k Views
      JaredBuschJ

      Little follow up to this as SC on CentOS was discussed in abother thread.. DB size is still small.

      [root@bnasc ~]# ls -l /opt/screenconnect/App_Data/Session.db -rw-r--r--. 1 root root 46764032 Jan 26 12:30 /opt/screenconnect/App_Data/Session.db
    • JaredBuschJ

      Ubiquiti now available retail

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion microcenter ubiquiti
      35
      4 Votes
      35 Posts
      3k Views
      scottalanmillerS

      @Kelly said in Ubiquiti now available retail:

      Just so we're clear on terms, firewall vs UTM, the difference you all are noting is access rules vs packet inspection?

      All firewalls do access rules and FAIAP packet inspection. Anything less and it is just a router.

    • JaredBuschJ

      Hyper-V Server 2016 not marked unlimited evaluation

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion hyper-v microsoft hyper-v server 2016 evaluation
      18
      0 Votes
      18 Posts
      3k Views
      scottalanmillerS

      The thing that points to there not being anything to worry about, while lacking the "unlimited" is a bit odd, is that those with limits say that there are limits. It doesn't say unlimited, but it does give a limit, either.

    • JaredBuschJ

      Anyone have the Yealink W5xP line

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion yealink voip
      13
      2 Votes
      13 Posts
      2k Views
      JaredBuschJ

      equivalent GUI settings.
      0_1486133068408_upload-3e7834fd-c9c3-4a6d-a929-b3db2cc95e78

    • 1 / 1