[PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread Richard Owlett
I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) each with multiple partitions. When I plug them in I don't want anything automatically mounted. I want to have them appear in MATE's "Devices" menu for individual selection. How? TIA _

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread John Jason Jordan
On Mon, 7 Jan 2019 09:32:01 -0600 Richard Owlett dijo: >I'm using Debian Stretch with MATE desktop. >I have a collection of USB drives (from 32GB -> 1TB) each with >multiple partitions. > >When I plug them in I don't want anything automatically mounted. >I want to have them appear in MATE's "Dev

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread David
On 1/7/19 7:32 AM, Richard Owlett wrote: I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) each with multiple partitions. When I plug them in I don't  want anything automatically mounted. I want to have them appear in MATE's "Devices" menu for ind

Re: [PLUG] Color Laser/LED Multifunction Printers?

2019-01-07 Thread Roderick Anderson
Louis, Thanks to you, Paul and Bruce. The MFC-L8850CDW is a little pricier than I want to go but I did find MFC-9340CDW. Paul, Your recommendation comes up monochrome so out of the running. :-) Again thanks for the info. Rod -- On 1/4/19 11:03 AM, Louis Kowolowski wrote: Been using a B

Re: [PLUG] Slackware login pain

2019-01-07 Thread Dick Steffens
On 1/5/19 8:30 PM, King Beowulf wrote: <...> (stuff I did yesterday) now comment out the nouveau blacklist in /etc/modprobe.d/BLACKLIST-nouveau.conf: # Do not load the kernel nouveau dri module, since it interferes with both # the nv and binary nvidia drivers. #blacklist nouveau (once you r

[PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Tomas Kuchta
Hi, I am having difficulty to debug why CGI scripts are not executed by Apache2, again. Can someone recommend some iteligent, algorithmical and converging way to debug this? There is nothing visible in the logs with CGIs, no error messages, no config errors, no obvious file ownership, permission

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Russell Senior
I'm a big fan of strace. On Mon, Jan 7, 2019 at 11:14 AM Tomas Kuchta wrote: > Hi, > > I am having difficulty to debug why CGI scripts are not executed by > Apache2, again. > > Can someone recommend some iteligent, algorithmical and converging way to > debug this? > > There is nothing visible in

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread Richard Owlett
On 01/07/2019 11:43 AM, John Jason Jordan wrote: On Mon, 7 Jan 2019 09:32:01 -0600 Richard Owlett dijo: I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) each with multiple partitions. When I plug them in I don't want anything automatically moun

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Bill Barry
On Mon, Jan 7, 2019 at 7:12 PM Tomas Kuchta wrote: > Hi, > > I am having difficulty to debug why CGI scripts are not executed by > Apache2, again. > > Can someone recommend some iteligent, algorithmical and converging way to > debug this? > > There is nothing visible in the logs with CGIs, no err

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread Richard Owlett
On 01/07/2019 11:57 AM, David wrote: On 1/7/19 7:32 AM, Richard Owlett wrote: I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) each with multiple partitions. When I plug them in I don't  want anything automatically mounted. I want to have them a

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Tomas Kuchta
Yes, the file serving part works, and is observable in the logs. There is good visibility on client side with curl or browsers. When Apache executes it, I get the output html/json/ When it doesn't work, I get to download the code. I usually build couple of identical machines and synchronize th

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Paul Heinlein
On Mon, 7 Jan 2019, Tomas Kuchta wrote: Yes, the file serving part works, and is observable in the logs. There is good visibility on client side with curl or browsers. When Apache executes it, I get the output html/json/ When it doesn't work, I get to download the code. I usually build coup

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Louis Kowolowski
On Jan 7, 2019, at 3:30 PM, Paul Heinlein wrote: > > On Mon, 7 Jan 2019, Tomas Kuchta wrote: > >> Yes, the file serving part works, and is observable in the logs. There is >> good visibility on client side with curl or browsers. When Apache executes >> it, I get the output html/json/ When it

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Tomas Kuchta
The problem is 99.9% in the Apache config - the same application runs on one server not the other. No matter which way I synchronize the code, it executes in one place, not the other. The only difference are Apache config files, produced mostly with Jinja templates and search and replace with

Re: [PLUG] Slackware login pain

2019-01-07 Thread Ben Koenig
the blacklist file prevents Nouveau from loading, but if you need to double check that it actually worked you use 'lsmod' I pipe the output to grep to shorten the list: $ lsmod |grep nouveau This will output a single line if it finds the nouveau kernel module, or do nothing if nouveau is not load

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Richard England
On 1/7/19 11:12 AM, Tomas Kuchta wrote: Hi, I am having difficulty to debug why CGI scripts are not executed by Apache2, again. Can someone recommend some iteligent, algorithmical and converging way to debug this? There is nothing visible in the logs with CGIs, no error messages, no config e

Re: [PLUG] Slackware login pain

2019-01-07 Thread Dick Steffens
On 1/7/19 2:59 PM, Ben Koenig wrote: the blacklist file prevents Nouveau from loading, but if you need to double check that it actually worked you use 'lsmod' I pipe the output to grep to shorten the list: $ lsmod |grep nouveau root@ENU-2:~# lsmod | grep nouveau root@ENU-2:~# This will outp

Re: [PLUG] Slackware login pain

2019-01-07 Thread Ben Koenig
Wait a second why is nvidia-settings trying to create an xorg.conf file? I thought the program was nvidia-xconfig .. Are you running nvidia-settings from a graphical terminal? With X running? On Mon, Jan 7, 2019 at 3:15 PM Dick Steffens wrote: > On 1/7/19 2:59 PM, Ben Koenig wrote: > > th

Re: [PLUG] Slackware login pain

2019-01-07 Thread Dick Steffens
On 1/7/19 3:37 PM, Ben Koenig wrote: Wait a second why is nvidia-settings trying to create an xorg.conf file? I thought the program was nvidia-xconfig .. Are you running nvidia-settings from a graphical terminal? With X running? Yes. It's available from the Applications > Settings menu as

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread Richard England
On 1/7/19 11:27 AM, Richard Owlett wrote: On 01/07/2019 11:43 AM, John Jason Jordan wrote: On Mon, 7 Jan 2019 09:32:01 -0600 Richard Owlett dijo: I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) each with multiple partitions. When I plug them

Re: [PLUG] Disabling automatic mounting of USB connected mass storage

2019-01-07 Thread Richard Owlett
On 01/07/2019 06:20 PM, Richard England wrote: On 1/7/19 11:27 AM, Richard Owlett wrote: On 01/07/2019 11:43 AM, John Jason Jordan wrote: On Mon, 7 Jan 2019 09:32:01 -0600 Richard Owlett dijo: I'm using Debian Stretch with MATE desktop. I have a collection of USB drives (from 32GB -> 1TB) e

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Bill Barry
On Mon, Jan 7, 2019 at 9:52 PM Tomas Kuchta wrote: > The problem is 99.9% in the Apache config - the same application runs > on one server not the other. No matter which way I synchronize the code, it > executes in one place, not the other. > > > The only difference are Apache config files

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Bill Barry
On Tue, Jan 8, 2019 at 2:02 AM Bill Barry wrote: > > > On Mon, Jan 7, 2019 at 9:52 PM Tomas Kuchta > wrote: > >> The problem is 99.9% in the Apache config - the same application runs >> on one server not the other. No matter which way I synchronize the code, >> it >> executes in one place, n

Re: [PLUG] Can anyone recommend intligent way to debug not executing CGI scripts on Apache2?

2019-01-07 Thread Larry Brigman
I would suspect that there are conditionals in those jinja2 templates that is making things different. On Mon, Jan 7, 2019, 6:28 PM Bill Barry On Tue, Jan 8, 2019 at 2:02 AM Bill Barry wrote: > > > > > > > On Mon, Jan 7, 2019 at 9:52 PM Tomas Kuchta < > tomas.kuchta.li...@gmail.com> > > wrote: