Re: [PLUG] Suppressing shell script output to screen

2017-09-19 Thread Tomas Kuchta
Pipe/redirect it to /dev/null

Hope it helps,
Tomas

On Sep 19, 2017 3:05 PM, "Rich Shepard"  wrote:

>I have written a short bash script to have root run sa-learn on my
> spam-uncaught file once each week. When sa-learn runs it posts a message to
> the console on the number of messages read and the number of messages added
> to the database.
>
>Where does this message appear if the script is run from cron.weekly?
> The
> sa-learn man page does not offer an option for 'quiet' output so I don't
> know if that result message can be suppressed.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Suppressing shell script output to screen [RESOLVED]

2017-09-19 Thread Rich Shepard
On Tue, 19 Sep 2017, bro...@netgate.net wrote:

> Any output from a script run by cron will be emailed to the user running the 
> cron script unless you (as is typical) redirect it using somthing like:
> 25 1 * * *  /bin/elastic-backup >> /dev/null 2>&1

   Thanks, Brooks. I should have realized this.

Much appreciated,

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Suppressing shell script output to screen

2017-09-19 Thread Robert Citek
On Tue, Sep 19, 2017 at 3:17 PM, Robert Citek  wrote:
> Cron will e-mail them to the root account by default.

Correction: to the account running the cron.  Of course, if the user
is root, then output goes to the root account. (thanks, Brooks).

$ man cron | grep -A2 mailed
   cron  then  wakes up every minute, examining all stored
crontabs, checking each command to see if it should be run in the
current minute.  When executing commands, any output is mailed to the
owner
   of the crontab (or to the user named in the MAILTO environment
variable in the crontab, if such exists).  The children copies of cron
running these processes have their name coerced  to  uppercase,
   as will be seen in the syslog and ps output.

Regards,
- Robert
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Suppressing shell script output to screen

2017-09-19 Thread Robert Citek
Cron will e-mail them to the root account by default.  Usually, I
redirect output from cron job entries to a log file so that I can
review/parse them.  For example:

03 * * * * /home/foo/bin/some_script.sh >> /home/foo/log/some_script.log 2>&1

The "2>&1" means redirect file descriptor 2 (STDERR) to file
descriptor 1 (STDOUT).  Since file descriptor 1 is going to
/home/foo/log/some_script.log, so will the error messages.

Good luck and let us know if that works for you.

Regards,
- Robert

On Tue, Sep 19, 2017 at 3:02 PM, Rich Shepard  wrote:
>I have written a short bash script to have root run sa-learn on my
> spam-uncaught file once each week. When sa-learn runs it posts a message to
> the console on the number of messages read and the number of messages added
> to the database.
>
>Where does this message appear if the script is run from cron.weekly? The
> sa-learn man page does not offer an option for 'quiet' output so I don't
> know if that result message can be suppressed.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Suppressing shell script output to screen

2017-09-19 Thread Paul Heinlein

On Tue, 19 Sep 2017, Rich Shepard wrote:

I have written a short bash script to have root run sa-learn on my 
spam-uncaught file once each week. When sa-learn runs it posts a 
message to the console on the number of messages read and the number 
of messages added to the database.


Where does this message appear if the script is run from 
cron.weekly? The sa-learn man page does not offer an option for 
'quiet' output so I don't know if that result message can be 
suppressed.


Typically, cron output ends up in your system log (where, exactly, 
depends on your setup) unless you've asked cron to e-mail you the 
output by setting the MAILTO variable.


If you don't want sa-learn to emit anything, ever, then just tell it 
so:


sa-learn --spam /path/to/folder >/dev/null 2>&1

--
Paul Heinlein
heinl...@madboa.com
45°38' N, 122°6' W___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Suppressing shell script output to screen

2017-09-19 Thread brooks

Any output from a script run by cron will be emailed to the user running 
the cron script unless you (as is typical) redirect it using somthing 
like:

25 1 * * *  /bin/elastic-backup >> /dev/null 2>&1

Or to a log file using something like this:

25 1 * * *  /bin/elastic-backup >> /log/elastic-backup.log 2>&1

On Tue, 19 Sep 2017, Rich Shepard wrote:

>   I have written a short bash script to have root run sa-learn on my
> spam-uncaught file once each week. When sa-learn runs it posts a message to
> the console on the number of messages read and the number of messages added
> to the database.
>
>   Where does this message appear if the script is run from cron.weekly? The
> sa-learn man page does not offer an option for 'quiet' output so I don't
> know if that result message can be suppressed.
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Suppressing shell script output to screen

2017-09-19 Thread Rich Shepard
   I have written a short bash script to have root run sa-learn on my
spam-uncaught file once each week. When sa-learn runs it posts a message to
the console on the number of messages read and the number of messages added
to the database.

   Where does this message appear if the script is run from cron.weekly? The
sa-learn man page does not offer an option for 'quiet' output so I don't
know if that result message can be suppressed.

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Chuck Hast
They are all useless and in this country they have taken over most of the
network access in this country.

I now live in Oklahoma City, the two options I had were AT and Cox. I
tried AT first as I have been using them as my cell provider for years and
they have done me well, but AT Uverse turned out to be a real turkey.

The DNS was HARDWIRED in the router, i.e. there was no way of changing
it, the reason was that if you used their video or phone services the URL's
for
those services are not public so public DNS will not work. BUT I told them I
am NOT using your services just your network connection, I was told they
were
sorry but that was how all of the routers were set up, needless to say,
next day
that one was gone, I am now using Cox, at least I can use my own DNS
servers,
the router does have an internal DNS, which sooner or later I will replace
with
a RPi and my own DNS. But right now it at least works. I have replaced their
DNS servers with my prefered ones, so I am not having to go through theirs.

I would like to see more options, but they just are not there. Cox gets slow
when it is loaded up in the evenings, guess I will sooner or later break
down
and pay the extra $10 for the static IP and the better speed during high
load.



On Tue, Sep 19, 2017 at 1:41 PM, Tomas Kuchta 
wrote:

> Sadly, it exactly (I mean exactly) documents any of my 10-ish calls with
> the C company over the years.
>
> The only rational way, I can explain it - C is like a cat - trying to be
> cute when you feed it, but you/I/we are its pet not the other way around.
> It will do nothing for you in exchange for the food beside showing up. If
> it does not like your food it will move to a neighbor.
>
> Disclaimer: I have nothing against cats. Humanity obviously need them to
> feel good, and we are not that great pets to them.
>
> T
>
> On Sep 19, 2017 7:33 AM, "Michael Barnes"  wrote:
>
> > This documents about 36 wasted minutes of your life you will never get
> > back. Sorry for your loss.
> >
> >
> > On Mon, Sep 18, 2017 at 10:16 PM, Denis Heidtmann <
> > denis.heidtm...@gmail.com
> > > wrote:
> >
> > > Answered by Comcast chat:
> > >
> > > I asked the question in my opening statement.  Here is the dialog.
> Your
> > > task is to tell me what the answer is.
> > >
> > > Harpreet 11:40 AM Let me check
> > >
> > > Harpreet 11:41 AM Just for the account security, May I have the
> complete
> > > service address along with the zip code ?
> > > ...
> > >
> > > Harpreet 11:42 AM Perfect.Thank you for that information.
> > >
> > > Harpreet 11:43 AM Denis, are you getting any error while you are using
> > your
> > > internet?
> > >
> > > Denis 11:44 AM Not at present.
> > >
> > > Harpreet 11:45 AM Okay no worries, '
> > >
> > > Harpreet 11:45 AM for your satisfaction
> > >
> > > Harpreet 11:45 AM I can do some troubleshooting for you internet
> > >
> > > Harpreet 11:46 AM I would need to send a refresh signal to reactivate
> > your
> > > modem to resynchronize your modem to our system. Please allow me a
> minute
> > > or 2 to complete the process.
> > >
> > > Denis 11:47 AM Please do not do that.
> > >
> > > Harpreet 11:47 AM Sure
> > >
> > > Denis 11:47 AM Trouble shooting is not required.
> > >
> > > Denis 11:47 AM Can you answer my question?
> > >
> > > Denis 11:48 AM What does resynchronize mean?
> > >
> > > Harpreet 11:49 AM Denis, sure
> > >
> > > Harpreet 11:49 AM Let me flush your DNS
> > >
> > > Harpreet 11:49 AM let me check
> > >
> > > Harpreet 11:49 AM Please stay connected while I am still working on it
> > >
> > > Denis 11:50 AM So one answer to my question is Yes, the Arris TG1268T
> > does
> > > have a DNS cache?
> > >
> > > Harpreet 11:50 AM yes
> > >
> > > Denis 11:51 AM Good to know. Now, for future reference, is flushing the
> > > cache something I can do, or must I contact Comcast to do that?
> > >
> > > Harpreet 11:52 AM Denis, you can do it your self
> > >
> > > Denis 11:52 AM Wonderful!
> > >
> > > Harpreet 11:52 AM You're welcome.
> > >
> > > Denis 11:54 AM How can I do it? Is there a choice in the browser window
> > in
> > > the modem?
> > >
> > > Harpreet 11:54 AM I will share the steps with you
> > >
> > > Denis 11:55 AM Thank you.
> > >
> > > Harpreet 11:55 AM Please follow the link I will provide you to flush
> the
> > > DNS
> > >
> > > Harpreet 11:55 AM You're welcome.
> > >
> > > 11:57 AM http://www.wikihow.com/Flush-DNS
> > >
> > > Harpreet 11:57 AM Please follow the link
> > >
> > > Denis 11:59 AM I do not think it has instructions for Linux.
> > >
> > > Harpreet 11:59 AM no worries
> > >
> > > 11:59 AM Let me check for the Linux
> > >
> > > Harpreet 12:00 PM
> > > https://www.cyberciti.biz/faq/rhel-debian-ubuntu-flush-
> clear-dns-cache/
> > >
> > > Harpreet 12:00 PM Please follow the link
> > >
> > > Denis 12:03 PM OK. This appears to have instructions for flushing the
> > cache
> > > in my computer, not in the modem. Is this correct? If so, we 

Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Tomas Kuchta
Sadly, it exactly (I mean exactly) documents any of my 10-ish calls with
the C company over the years.

The only rational way, I can explain it - C is like a cat - trying to be
cute when you feed it, but you/I/we are its pet not the other way around.
It will do nothing for you in exchange for the food beside showing up. If
it does not like your food it will move to a neighbor.

Disclaimer: I have nothing against cats. Humanity obviously need them to
feel good, and we are not that great pets to them.

T

On Sep 19, 2017 7:33 AM, "Michael Barnes"  wrote:

> This documents about 36 wasted minutes of your life you will never get
> back. Sorry for your loss.
>
>
> On Mon, Sep 18, 2017 at 10:16 PM, Denis Heidtmann <
> denis.heidtm...@gmail.com
> > wrote:
>
> > Answered by Comcast chat:
> >
> > I asked the question in my opening statement.  Here is the dialog.  Your
> > task is to tell me what the answer is.
> >
> > Harpreet 11:40 AM Let me check
> >
> > Harpreet 11:41 AM Just for the account security, May I have the complete
> > service address along with the zip code ?
> > ...
> >
> > Harpreet 11:42 AM Perfect.Thank you for that information.
> >
> > Harpreet 11:43 AM Denis, are you getting any error while you are using
> your
> > internet?
> >
> > Denis 11:44 AM Not at present.
> >
> > Harpreet 11:45 AM Okay no worries, '
> >
> > Harpreet 11:45 AM for your satisfaction
> >
> > Harpreet 11:45 AM I can do some troubleshooting for you internet
> >
> > Harpreet 11:46 AM I would need to send a refresh signal to reactivate
> your
> > modem to resynchronize your modem to our system. Please allow me a minute
> > or 2 to complete the process.
> >
> > Denis 11:47 AM Please do not do that.
> >
> > Harpreet 11:47 AM Sure
> >
> > Denis 11:47 AM Trouble shooting is not required.
> >
> > Denis 11:47 AM Can you answer my question?
> >
> > Denis 11:48 AM What does resynchronize mean?
> >
> > Harpreet 11:49 AM Denis, sure
> >
> > Harpreet 11:49 AM Let me flush your DNS
> >
> > Harpreet 11:49 AM let me check
> >
> > Harpreet 11:49 AM Please stay connected while I am still working on it
> >
> > Denis 11:50 AM So one answer to my question is Yes, the Arris TG1268T
> does
> > have a DNS cache?
> >
> > Harpreet 11:50 AM yes
> >
> > Denis 11:51 AM Good to know. Now, for future reference, is flushing the
> > cache something I can do, or must I contact Comcast to do that?
> >
> > Harpreet 11:52 AM Denis, you can do it your self
> >
> > Denis 11:52 AM Wonderful!
> >
> > Harpreet 11:52 AM You're welcome.
> >
> > Denis 11:54 AM How can I do it? Is there a choice in the browser window
> in
> > the modem?
> >
> > Harpreet 11:54 AM I will share the steps with you
> >
> > Denis 11:55 AM Thank you.
> >
> > Harpreet 11:55 AM Please follow the link I will provide you to flush the
> > DNS
> >
> > Harpreet 11:55 AM You're welcome.
> >
> > 11:57 AM http://www.wikihow.com/Flush-DNS
> >
> > Harpreet 11:57 AM Please follow the link
> >
> > Denis 11:59 AM I do not think it has instructions for Linux.
> >
> > Harpreet 11:59 AM no worries
> >
> > 11:59 AM Let me check for the Linux
> >
> > Harpreet 12:00 PM
> > https://www.cyberciti.biz/faq/rhel-debian-ubuntu-flush-clear-dns-cache/
> >
> > Harpreet 12:00 PM Please follow the link
> >
> > Denis 12:03 PM OK. This appears to have instructions for flushing the
> cache
> > in my computer, not in the modem. Is this correct? If so, we get back to
> > the question of is there a DNS cache in the modem?
> >
> > Harpreet 12:06 PM Denis, if you want to flush your Modem's DNS I would
> > request you please directly connect your device to the modem equipment
> > using an Ethernet Cord
> >
> > Harpreet 12:07 PM Just for the confirmation, there is not DNS in the
> modem
> >
> > Harpreet 12:07 PM this is a part of system
> >
> > Harpreet 12:08 PM it is Domain Name Server
> >
> > Denis 12:10 PM OK. I know what DNS stands for. Local systems often
> maintain
> > a local cache of recently used sites. My original question was does my
> > modem have such a cache. Now is seems your answer is No, it does not. Do
> I
> > understand you correctly?
> >
> > Harpreet 12:11 PM yes, you are
> >
> > Harpreet 12:14 PM Denis, I just wanted to clear you with the full of
> > details about the DNS
> >
> > Harpreet 12:14 PM that is why it took time
> >
> > Denis 12:15 PM Thank you for the education.
> >
> > Harpreet 12:15 PM You are most welcome
> >
> > Harpreet 12:16 PM I hope we have resolved all of your concern to your
> > satisfaction today?
> >
> > Denis 12:16 PM I hope so.
> >
> > user Denis_ has left room
> > ___
> > PLUG mailing list
> > PLUG@lists.pdxlinux.org
> > http://lists.pdxlinux.org/mailman/listinfo/plug
> >
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org

Re: [PLUG] Xlib and displaying same image twice.

2017-09-19 Thread Tomas Kuchta
You could put the image where you want on a black/transparent background
the size of your screen.

Tomas

On Sep 19, 2017 8:17 AM, "Michael Robinson" 
wrote:

> I have a simple Xlib program that displays a PNG file without a border
> or title bar on the X display.  I need to display the image dead center
> on the screen and about 50-100 pixels to the right.  How do I display
> the image twice and how do I control the location of the two images?
> This is a Raspbian Stretch default install I'm running, not Lite.
> What window manager am I using?  Is there a way to do a black
> background and no window manager at all?  When the Pi is hooked
> to a projector, the projector should not be displaying a background
> picture or anything else on the standard desktop.  The C program
> should have the mouse and keyboard locked out.  How do I return control
> to X if the program crashes so I don't have to power down the Pi and
> power it back up without a proper reboot?  I need to do a release on
> exit or something similar.  I'm working on a demo program before I
> tackle the larger program which I can't discuss in detail.  Gotta
> learn how to draw in X.
>
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread fredjame
Denis Heidtmann wrote:
> The thing is he said Yes to start, then he offered to clear the cache, then
> he said no.  I do not know what the correct answer is.

 What the chat rep offered to do was "reset" the user's "modem" ... saying NO 
to that was a good idea because, "resetting the modem" breaks the connection 
and would effectively end the "chat" and any other Internet connection 
currently active on the user's computer and/or other devices, eh?  Or did I 
miss something?
Regards
Fred James

 >
> On Tue, Sep 19, 2017 at 9:13 AM, Mike C.  wrote:
>
>> On 9/19/17 8:15 AM, plug-requ...@lists.pdxlinux.org wrote:
>>> Denis 12:10 PM OK. I know what DNS stands for. Local systems often
>> maintain
>>> a local cache of recently used sites. My original question was does my
>>> modem have such a cache. Now is seems your answer is No, it does not. Do
>> I
>>> understand you correctly?
>>>
>>> Harpreet 12:11 PM yes, you are
>> Although that was painful to read. It didn't take me 36 mins. Good
>> grief... =(
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Dick Steffens
On 09/19/2017 09:40 AM, Denis Heidtmann wrote:
> The thing is he said Yes to start, then he offered to clear the cache, then
> he said no.  I do not know what the correct answer is.

On one occasion I was able to get the rep to bump me up a level to 
someone who knew the subject, rather than one who was following a 
script. I don't recall right now what the magic phrase was that got me 
there, but I ended up with someone in the US instead of India.

-- 
Regards,

Dick Steffens

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Mike C.
On 9/19/17 8:15 AM, plug-requ...@lists.pdxlinux.org wrote:
> My original question was does my
> modem have such a cache. Now is seems your answer is No, it does not. Do I
> understand you correctly?
>
> Harpreet 12:11 PM yes, you are
Because I obsess about stuff like facts and truth.

First, did you talk to an "XFINITY Domain Name System expert." at
https://dns.xfinity.com/ ?!?!?! (All sarcasm & snarkiness fully intended)

Second, it appears both Comcast & Google do DNNSEC validation.

Third, this seems to be a pretty good too that I found on that xfinity
dns web page.

"DNSViz is a tool for visualizing the status of a DNS zone. It was
designed as a resource for understanding and troubleshooting deployment
of the DNS Security Extensions (DNSSEC). It provides a visual analysis
of the DNSSEC authentication chain for a domain name and its resolution
path in the DNS namespace, and it lists configuration errors detected by
the tool."

http://dnsviz.net/

It's non-SSL, so if you're having problems with browsing to SSL based
web sites again, try to go here and plug in the domain you're having
problems with.

You may not understand the DNSKEY errors, as neither do I, but if you
see things in highlighted in red, and red triangles w. exclamation
points, e.g. http://dnsviz.net/d/quacktopia.com/WVmoCg/dnssec/ , you
have a useful data point that a particular domain zone file has an error
and/or be compromised.




___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Denis Heidtmann
The thing is he said Yes to start, then he offered to clear the cache, then
he said no.  I do not know what the correct answer is.

On Tue, Sep 19, 2017 at 9:13 AM, Mike C.  wrote:

> On 9/19/17 8:15 AM, plug-requ...@lists.pdxlinux.org wrote:
> > Denis 12:10 PM OK. I know what DNS stands for. Local systems often
> maintain
> > a local cache of recently used sites. My original question was does my
> > modem have such a cache. Now is seems your answer is No, it does not. Do
> I
> > understand you correctly?
> >
> > Harpreet 12:11 PM yes, you are
> Although that was painful to read. It didn't take me 36 mins. Good
> grief... =(
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Mike C.
On 9/19/17 8:15 AM, plug-requ...@lists.pdxlinux.org wrote:
> Denis 12:10 PM OK. I know what DNS stands for. Local systems often maintain
> a local cache of recently used sites. My original question was does my
> modem have such a cache. Now is seems your answer is No, it does not. Do I
> understand you correctly?
>
> Harpreet 12:11 PM yes, you are
Although that was painful to read. It didn't take me 36 mins. Good
grief... =(
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Xlib and displaying same image twice.

2017-09-19 Thread Michael Robinson
I have a simple Xlib program that displays a PNG file without a border
or title bar on the X display.  I need to display the image dead center
on the screen and about 50-100 pixels to the right.  How do I display
the image twice and how do I control the location of the two images?
This is a Raspbian Stretch default install I'm running, not Lite.  
What window manager am I using?  Is there a way to do a black 
background and no window manager at all?  When the Pi is hooked 
to a projector, the projector should not be displaying a background
picture or anything else on the standard desktop.  The C program 
should have the mouse and keyboard locked out.  How do I return control
to X if the program crashes so I don't have to power down the Pi and
power it back up without a proper reboot?  I need to do a release on
exit or something similar.  I'm working on a demo program before I
tackle the larger program which I can't discuss in detail.  Gotta
learn how to draw in X.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Is there a DNS cache in the Comcast modem?

2017-09-19 Thread Michael Barnes
This documents about 36 wasted minutes of your life you will never get
back. Sorry for your loss.


On Mon, Sep 18, 2017 at 10:16 PM, Denis Heidtmann  wrote:

> Answered by Comcast chat:
>
> I asked the question in my opening statement.  Here is the dialog.  Your
> task is to tell me what the answer is.
>
> Harpreet 11:40 AM Let me check
>
> Harpreet 11:41 AM Just for the account security, May I have the complete
> service address along with the zip code ?
> ...
>
> Harpreet 11:42 AM Perfect.Thank you for that information.
>
> Harpreet 11:43 AM Denis, are you getting any error while you are using your
> internet?
>
> Denis 11:44 AM Not at present.
>
> Harpreet 11:45 AM Okay no worries, '
>
> Harpreet 11:45 AM for your satisfaction
>
> Harpreet 11:45 AM I can do some troubleshooting for you internet
>
> Harpreet 11:46 AM I would need to send a refresh signal to reactivate your
> modem to resynchronize your modem to our system. Please allow me a minute
> or 2 to complete the process.
>
> Denis 11:47 AM Please do not do that.
>
> Harpreet 11:47 AM Sure
>
> Denis 11:47 AM Trouble shooting is not required.
>
> Denis 11:47 AM Can you answer my question?
>
> Denis 11:48 AM What does resynchronize mean?
>
> Harpreet 11:49 AM Denis, sure
>
> Harpreet 11:49 AM Let me flush your DNS
>
> Harpreet 11:49 AM let me check
>
> Harpreet 11:49 AM Please stay connected while I am still working on it
>
> Denis 11:50 AM So one answer to my question is Yes, the Arris TG1268T does
> have a DNS cache?
>
> Harpreet 11:50 AM yes
>
> Denis 11:51 AM Good to know. Now, for future reference, is flushing the
> cache something I can do, or must I contact Comcast to do that?
>
> Harpreet 11:52 AM Denis, you can do it your self
>
> Denis 11:52 AM Wonderful!
>
> Harpreet 11:52 AM You're welcome.
>
> Denis 11:54 AM How can I do it? Is there a choice in the browser window in
> the modem?
>
> Harpreet 11:54 AM I will share the steps with you
>
> Denis 11:55 AM Thank you.
>
> Harpreet 11:55 AM Please follow the link I will provide you to flush the
> DNS
>
> Harpreet 11:55 AM You're welcome.
>
> 11:57 AM http://www.wikihow.com/Flush-DNS
>
> Harpreet 11:57 AM Please follow the link
>
> Denis 11:59 AM I do not think it has instructions for Linux.
>
> Harpreet 11:59 AM no worries
>
> 11:59 AM Let me check for the Linux
>
> Harpreet 12:00 PM
> https://www.cyberciti.biz/faq/rhel-debian-ubuntu-flush-clear-dns-cache/
>
> Harpreet 12:00 PM Please follow the link
>
> Denis 12:03 PM OK. This appears to have instructions for flushing the cache
> in my computer, not in the modem. Is this correct? If so, we get back to
> the question of is there a DNS cache in the modem?
>
> Harpreet 12:06 PM Denis, if you want to flush your Modem's DNS I would
> request you please directly connect your device to the modem equipment
> using an Ethernet Cord
>
> Harpreet 12:07 PM Just for the confirmation, there is not DNS in the modem
>
> Harpreet 12:07 PM this is a part of system
>
> Harpreet 12:08 PM it is Domain Name Server
>
> Denis 12:10 PM OK. I know what DNS stands for. Local systems often maintain
> a local cache of recently used sites. My original question was does my
> modem have such a cache. Now is seems your answer is No, it does not. Do I
> understand you correctly?
>
> Harpreet 12:11 PM yes, you are
>
> Harpreet 12:14 PM Denis, I just wanted to clear you with the full of
> details about the DNS
>
> Harpreet 12:14 PM that is why it took time
>
> Denis 12:15 PM Thank you for the education.
>
> Harpreet 12:15 PM You are most welcome
>
> Harpreet 12:16 PM I hope we have resolved all of your concern to your
> satisfaction today?
>
> Denis 12:16 PM I hope so.
>
> user Denis_ has left room
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug