GNS3 save configs and Wireshark

Followed video in previous post. But after restart you have to reconfigure everything. So googled how to save the configs. For the router you… R1#copy running-config startup-configDestination filename [startup-config]?Warning: Attempting to overwrite an NVRAM configuration previously writtenby a different version of the system image.Overwrite the previous NVRAM configuration?[confirm]yBuilding configuration…[OK] For the PCs you… save startup.vpc …

Cups

Saw a log entry from 2004 (old memories) that said… Invoke Cups GUI with browser…http://localhost:631 I did and…it still does! Because of the price of ink the only thing I use my printer for these days is to scan.

Python PIL stopped working

Tried to run an old working program that displayed images. But got errors saying the img.show() type was none or nonetype. But obviously it wasn’t because the prints below worked. So googled and found the simplest 3 line example (I added the 2 prints)… from PIL import Imageim = Image.open(“/home/bill/Pictures/Computers/H11.png”)print(“Type is”,type(im))print(im.format, im.size, im.mode)im.show() So for …