Is anyone on the list going to Hack A Day Supercon?

2023-10-19 Thread Shawn Badger via PLUG-discuss
I'm just curious if anyone on the list is going to the SuperCon in a couple
weeks
---
PLUG-discuss mailing list: PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss


Arizona BOF at SCaLE 20x?

2023-03-09 Thread Shawn Badger via PLUG-discuss
Dos there going to be a BOF for people from Arizona at SCaLE this year?
---
PLUG-discuss mailing list: PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss


Re: SCaLE rides, etc

2023-03-01 Thread Shawn Badger via PLUG-discuss
My car is fully booked this year again.
Leaving Thursday morning with goal of arriving before traffic gets too
heavy.

On Mon, Feb 27, 2023 at 10:08 PM der.hans via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> moin moin,
>
> SCaLE starts a week from Thursday. We're back in Pasadena this year.
>
> My plans are still getting set, but most likely I'll drive over with a
> full car Friday.
>
> Who else is driving and might have a seat?
>
> Who needs a ride?
>
> Last time they required proof of vacination or a negative covid test to
> get in. Plan accordingly.
>
> We should have live video feeds of most of the presentation rooms, so they
> will be available remotely.
>
> ciao,
>
> der.hans
> --
> #  https://www.SpirealArray.com   https://www.PhxLinux.org
> #  "Dinosaurs return. Want their oil back." -- David Brin
> ---
> PLUG-discuss mailing list: PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list: PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss


Re: sysctl items not persisting after reboot on Ubuntu 20.04

2022-08-19 Thread Shawn Badger via PLUG-discuss
It is called 99-bridge.conf and is applied correctly on the restart of the
procps.


On Fri, Aug 19, 2022 at 10:03 AM Aaron Jones via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> What is the name of the sysctl files? You may want to try renaming them
> something like zzz-mysysctlstuff.conf to make sure they aren’t being over
> written to start? Or are they already named high enough in the order so
> it’s a moot point?
>
> > On Aug 19, 2022, at 9:52 AM, Shawn Badger via PLUG-discuss <
> plug-discuss@lists.phxlinux.org> wrote:
> >
> > 
> > I am running into an odd issue where config files placed in
> /etc/sysctl.d/ are not being read on reboot, but after restarting procps
> they load as expected.
> >
> > root@dd:/home/user# sysctl -a |grep net.bridge
> > net.bridge.bridge-nf-call-arptables = 1
> > net.bridge.bridge-nf-call-ip6tables = 1
> > net.bridge.bridge-nf-call-iptables = 1
> > net.bridge.bridge-nf-filter-pppoe-tagged = 0
> > net.bridge.bridge-nf-filter-vlan-tagged = 0
> > net.bridge.bridge-nf-pass-vlan-input-dev = 0
> > root@dd:/home/user# systemctl restart procps
> > root@dd:/home/user# sysctl -a |grep net.bridge
> > net.bridge.bridge-nf-call-arptables = 0
> > net.bridge.bridge-nf-call-ip6tables = 0
> > net.bridge.bridge-nf-call-iptables = 0
> > net.bridge.bridge-nf-filter-pppoe-tagged = 0
> > net.bridge.bridge-nf-filter-vlan-tagged = 0
> > net.bridge.bridge-nf-pass-vlan-input-dev = 0
> >
> > I have done
> > # systemctl restart procps
> > # sysctl -p
> >
> > a few times and rebooted without success. I have even done systemctl
> daemon-reload in hopes of having systemd reread the files.
> > My Google Fu is failing on finding a solution that works. Does anyone
> have an idea why the restart of procps applies the changes but doesn't
> apply them on startup?
> > Yes, the procps service is enabled and is running before I do the
> restart.
> >
> > Thanks
> >
> > ---
> > PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> > To subscribe, unsubscribe, or to change your mail settings:
> > https://lists.phxlinux.org/mailman/listinfo/plug-discuss
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

sysctl items not persisting after reboot on Ubuntu 20.04

2022-08-19 Thread Shawn Badger via PLUG-discuss
I am running into an odd issue where config files placed in /etc/sysctl.d/
are not being read on reboot, but after restarting procps they load as
expected.

root@dd:/home/user# sysctl -a |grep net.bridge
net.bridge.bridge-nf-call-arptables = 1
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-filter-pppoe-tagged = 0
net.bridge.bridge-nf-filter-vlan-tagged = 0
net.bridge.bridge-nf-pass-vlan-input-dev = 0
root@dd:/home/user# systemctl restart procps
root@dd:/home/user# sysctl -a |grep net.bridge
net.bridge.bridge-nf-call-arptables = 0
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-filter-pppoe-tagged = 0
net.bridge.bridge-nf-filter-vlan-tagged = 0
net.bridge.bridge-nf-pass-vlan-input-dev = 0

I have done
# systemctl restart procps
# sysctl -p

a few times and rebooted without success. I have even done systemctl
daemon-reload in hopes of having systemd reread the files.
My Google Fu is failing on finding a solution that works. Does anyone have
an idea why the restart of procps applies the changes but doesn't apply
them on startup?
Yes, the procps service is enabled and is running before I do the restart.

Thanks
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: SCALE parking

2022-07-29 Thread Shawn Badger via PLUG-discuss
I just saw that in the other side of the hotel there is Airport Spectrum
parking for $20 a day

On Fri, Jul 29, 2022, 07:04 Shawn Badger  wrote:

> Fyi, if you are going to SCALE the hotel parking is $44 a day, but if you
> park next door at the "theParkingSpot" it is only $32 a day.
>
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

SCALE parking

2022-07-29 Thread Shawn Badger via PLUG-discuss
Fyi, if you are going to SCALE the hotel parking is $44 a day, but if you
park next door at the "theParkingSpot" it is only $32 a day.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: Items for sale

2022-01-02 Thread Shawn Badger via PLUG-discuss
Depending on where you are in town I may be able to get it closer to where
you are if that helps.
I will be in the 19thave and Thomas area on Thursday afternoon.
Let me know

On Sun, Jan 2, 2022 at 12:58 AM Eric Oyen via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> I am interested in the machine (listing 2). I would have to talk to the
> room mate and see what I can get in the way of a ride. It certainly would
> be nice to move a lot of my external storage over to a server box.
>
> -Eric
> From the Central Offices of the Technomage Guild, Technology Acquisitions
> group
>
>
> On Jan 1, 2022, at 6:22 PM, Shawn Badger via PLUG-discuss <
> plug-discuss@lists.phxlinux.org> wrote:
>
> I just posted a couple items on CL that I think some people in PLUG may be
> interested in. Send me a message and make sure you indicate your from PLUG
> and I will give them to you for 1/2 price.
>
>
> https://phoenix.craigslist.org/evl/sop/d/chandler-heights-navepoint-9u-wall/7427515746.html
>
>
> https://phoenix.craigslist.org/evl/sop/d/chandler-heights-dell-precison-690/7427514475.html
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: Items for sale

2022-01-02 Thread Shawn Badger via PLUG-discuss
It was one of those 3rd party shippers and  they of course told me it was
that way when they picked it up. It wasn't a UPS or FedEx kind of shipper.

On Sat, Jan 1, 2022 at 10:00 PM Jim via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> That rack took a helluva beating  Who was the shipping company that did
> it?  Anyone who is planning on shipping something fragile might want to
> know.
> On 1/1/22 6:22 PM, Shawn Badger via PLUG-discuss wrote:
>
> I just posted a couple items on CL that I think some people in PLUG may be
> interested in. Send me a message and make sure you indicate your from PLUG
> and I will give them to you for 1/2 price.
>
>
> https://phoenix.craigslist.org/evl/sop/d/chandler-heights-navepoint-9u-wall/7427515746.html
>
>
> https://phoenix.craigslist.org/evl/sop/d/chandler-heights-dell-precison-690/7427514475.html
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail 
> settings:https://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Items for sale

2022-01-01 Thread Shawn Badger via PLUG-discuss
I just posted a couple items on CL that I think some people in PLUG may be
interested in. Send me a message and make sure you indicate your from PLUG
and I will give them to you for 1/2 price.

https://phoenix.craigslist.org/evl/sop/d/chandler-heights-navepoint-9u-wall/7427515746.html

https://phoenix.craigslist.org/evl/sop/d/chandler-heights-dell-precison-690/7427514475.html
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: System Monitoring

2021-12-16 Thread Shawn Badger via PLUG-discuss
Sorry for the late reply, I run Zabbix https://www.zabbix.com/ to monitor
all the stuff at my home as well as my day job. It is 100% open source and
easy to setup and run. Out of the box it will monitor everything you are
looking for.



On Mon, Nov 1, 2021 at 11:20 AM AZ Pete via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> Thanks to everyone that replied.
> Haven't decided which way to go yet, but thanks for all the good info!
> Just to clarify a bit, I'm not putting the Pis under any kind of heavy
> load. They will be running in environmentally "unfriendly" areas (garage,
> patio, etc), so I want to ensure that they are not overheating, especially
> in summer (I already have them in custom cooled cases).
>
> thanks!
> Peter
>
>
> On 10/30/2021 6:18 PM, Matt Graham via PLUG-discuss wrote:
>
> On 2021-10-29 17:57, AZ Pete via PLUG-discuss wrote:
>
> 3 Raspberry Pis, 1 Ubuntu, 1 Linux Mint, and am looking for a way that I
> can monitor them remotely.
>
>
> You probably don't need to do this unless they're under much heavier load
> than is usual for home machines.
>
> a unified dashboard that would list for each server:
> CPU utilization history, Drive space consumed, Temperature monitoring
> (CPU, chip set, & hard drive temps), Fan speed monitoring, Some kind
> of alerting mechanism when a given threshold is passed
>
>
> I've looked into Webmin, Glances, Nagios, Collectd & Cockpit. Mostly
> these seemed to be geared more toward remote admin. But the monitoring
> that was available didn't seem to include the temperature info or the
> idea of one unified dashboard.
>
>
> When I was doing this (a long time ago), it was not possible without 2
> separate programs.  We used Ganglia to keep records of CPU load, disk
> space, free RAM, number of database connections (if the machine was a MySQL
> server), and other stats.  Ganglia's default configuration had a web page
> that showed various statistics for all the machines that are set up and
> running the client Ganglia service.
>
> Ganglia does not notify people about things though.  To send mail to
> people or put a notice on a web page that said, "WARNING: machine foo-1234
> has more than 200 active database connections", we used Nagios. The Nagios
> server can monitor any parameter that is measurable from the Nagios
> clients, because Nagios monitors are (were?) Perl scripts that run on the
> clients.  Perl can easily parse the output from `sensors` or `df` or `free`
> and return "OK", "Warning", or "Error" as you wish.
>
> There used to be a rather useful firefox extension called nagios-checker
> that would poll a Nagios web page and display useful information in
> firefox's status bar.  However, they have improved firefox so much that the
> extension no longer works.
>
> If installing and configuring this stuff sounds like too much work for a
> tiny number of machines that are probably not under very heavy load, you're
> right.  It might be a useful learning experience, but its *practical* value
> is probably not very high.
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: How to make a pdf read only?

2021-08-10 Thread Shawn Badger via PLUG-discuss
One option would be to turn it into an image which is then put into the
pdf. Not impossible to change just more work to change.

On Fri, Aug 6, 2021 at 11:48 PM Steve Litt via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> joe--- via PLUG-discuss said on Fri, 06 Aug 2021 16:48:59 -0700
>
> >How to make a pdf read only?
> >
> >I'm sure I've done this in the past,
> >but can't remember how. Searched the
> >net but found no solution.
> >
> >Do not want to convert to an image
> >but just want a read-only pdf.
>
> I think it's impossible to make a truly read-only pdf. Somebody could
> always open it in Vim and tamper with it, or use one of the several PDF
> modification tools to convert it to a form that can be written to. Or
> import it into Inkscape, modify it as an image, and convert back to PDF.
>
> If you mean make it so it's not modifyable in Acrobat, there's probably
> a way to do that.
>
> SteveT
>
> Steve Litt
> Spring 2021 featured book: Troubleshooting Techniques of the Successful
> Technologist http://www.troubleshooters.com/techniques
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Teen cyber security camp

2020-08-04 Thread Shawn Badger via PLUG-discuss
Do you have a teenager that is interested in computer security? If so SANS
is hosting a free 2 day online camp. I ran across this and I know there are
people in this group that would be interested.

https://www.sans.org/cyber-camp
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss