I had a qnap, but it died within a year. I didnt even use it much.
Best posts made by mattbagan
-
RE: Favorite Home NAS
-
RE: "Home" Lab - Is it Cost-Effective to Run at Home?
I was wondering this too. I have 7 servers that are sitting doing nothing because I don't want to pay the bill.
-
RE: Does any one of you has (single-board computer) if so what is the purpose ?
rPi3 running my home automation setup. I've done openVPN server, torrent box, pi hole, nfs/samba file sharing,
-
RE: Raspberry Pi (rPi) tips and Tricks
Prerequisites for client
sudo apt-get install python3 python3-pip sudo pip3 install paho-mqtt
Python script:
#!/usr/bin/python3 #Imports import time import os import paho.mqtt.client as mqtt import paho.mqtt.publish as publish #Variable setups broker = "IP Address MQTT Broker" state_topic = "pi/cputemp" #Topic to publish commands too delay = 1 #Time delay #Fuction to return temp def measure_temp(): temp = os.popen("vcgencmd measure_temp").readline() return (temp.replace("temp=","")) #MQTT connection setup client = mqtt.Client() client.username_pw_set("username", "password") #Login for broker client.connect(broker) client.loop_start() #While loop for posting to MQTT while True: print(measure_temp()) time.sleep(1) cpu_temp = measure_temp() client.publish("pi/cputemp", str(cpu_temp)) time.sleep(delay)
-
RE: NextCloud Automated Installation
@scottalanmiller said in NextCloud Automated Installation:
@mattbagan said in NextCloud Automated Installation:
@scottalanmiller It took me 40 minutes from start to finish. I even added a 200GB lvm2. All done via cockpit. Nice job!
Awesome, thanks for testing it out. That's amazing.
I just did the Vultr based build using it as well, worked perfectly and only took maybe 15 minutes, I'd guess. But Vultr has updates already applied and you don't need to log in or do anything, so it is that much faster.
Now I just need to make the switch from an ubuntu instance to fedora at work and we will be all set.
-
RE: Raspberry Pi Zero W Bought for Testing
Pi 3 running home automation. B+ running motion, temp, and light sensors with a nginx reverse proxy to my dog cams. 3 Zero Ws will be running temp, light and motion sensors in various rooms. Pi 2 hooked up to official display soon to be dashboard and camera.
-
RE: Temporary Remote Warehouse - Need 4G Uplink
I have cradlepoints at all my stores for backup internet and they work great. One of my stores has been having issues with Frontier so they have been running it 24/7. My ERP works just fine over the VPN.
-
RE: Apple ID on Company-Issued iOS Devices?
It took me 6 months to setup DEP and VPP. It was a pain. So many hoops to jump through. With DEP, you do not have to worry about having one master AppleID. Users can use their own. The whole point of DEP is to supervise devices better so you can clear that damn activation lock.
-
RE: New WiFi router recommendation
@ambarishrh I know one person that uses the Amplifi that why I considered it but I am going to switch to an Edgerouter 6P and AP combo.
-
Using SSL Wildcard Cert on Apache
Anyone have a guide on how to setup SSL without using LE? I have a wildcard cert that I would like to use but can't figure it out. I've been cruising the apache website for some information but I cannot figure out what I need.
-
RocketChat LDAP
I setup ldap but synced way to many users. Is there a way to mass delete users with a snap install?
-
RE: Windows 10 Allowing a Regular User to Launch One Application as Admin
What about using the /savecred switch?
runas /savecred /user:USER-NAME "C:\full\path\of\Program.exe" -
RE: Installing osTicket 1.10 on CentOS 7
@scottalanmiller it took a while but I got it installed on F29. I just need to figure out the plugin issue not showing up.
-
RE: Installing osTicket 1.10 on CentOS 7
@black3dynamite Good call. I had to make some adjustments to SELinux.
-
RE: Upgrading to osTicket 1.11.0
@scottalanmiller I really wish I would have known about the GitHub repo for my fresh install. It would have made it so much easier to install.
-
RE: Backup ISP - 4G
@fuznutz04 I have cradlepoints at 13 locations, running on the Verizon network. They work okay for our smaller stores. They have saved me quite a few times with outages.
-
RE: Known issue with Unifi Access points and 4.3.24.11355 FW
I will be giving this a go.