Re: [PLUG] Suggestions for featherweight laptop

2017-09-10 Thread Dave Lien - W7DAL
Tom- Following your idea I bought an HP Stream 14 from WalMart for $229. To be used as a featherweight Mint only machine for coming up to speed in Linux (wy overdue) and learning Python while sitting in an easy chair watching football (with the sound off). So far, so good. :-D. I've had

Re: [PLUG] Troubleshooting ssh [FIXED]

2017-09-10 Thread Rich Shepard
On Sun, 10 Sep 2017, Ken Stephens wrote: > Thanks for sharing your findings. You come up with interesting problems > and solutions in Linux. I learn from them. Ken, I'd much prefer my computers to be stultifyingly boring. > I find that if I don't find a solution after diligent searching,

Re: [PLUG] Troubleshooting ssh [FIXED]

2017-09-10 Thread Ken Stephens
Rich Shepard wrote: > On Tue, 5 Sep 2017, Rich Shepard wrote: > >> I'm out of ideas of what to test so I can fix this issue, and seek advice >> from experienced network admins. > Having tried all suggestions from my thread on LQ I re-read openssh web > pages, particularly the sections on

Re: [PLUG] Troubleshooting ssh [FIXED]

2017-09-10 Thread Rich Shepard
On Tue, 5 Sep 2017, Rich Shepard wrote: > I'm out of ideas of what to test so I can fix this issue, and seek advice > from experienced network admins. Having tried all suggestions from my thread on LQ I re-read openssh web pages, particularly the sections on authorized_keys and known_hosts.

Re: [PLUG] clone old home to new machine home

2017-09-10 Thread Tomas Kuchta
You can verify the meaning of * by: ls -ld * If that displays correct files and directories, cp -pr * ../ will the same files and directories into the destination directory. If you want to be even more sure, use dry rsync run: rsync -an --progress * ./ If you like the print out, just

[PLUG] clone old home to new machine home

2017-09-10 Thread Denis Heidtmann
OK. What I used when I copied my home folders/files to the external drive was cp -pR . /media/household/oldhome. What was copied were all folders and files, recursively. So instead of using the dot to indicate that the source is the current folder (which was /home/household) I had used * I

[PLUG] Please God have someone change the subject. cloning old home tree

2017-09-10 Thread Denis Heidtmann
I am sorry, Michael. Until a couple of days ago I would get messages from PLUG. On Topic and Respectful, or something like that. Now all I am getting is the digest, and I am not accustomed to having to change the subject. Is there a way to get back to the usual behavior? -Denis On Sun, Sep

Re: [PLUG] PLUG Digest, Vol 156, Issue 17 - Please God have someone change the subject. cloning old home tree

2017-09-10 Thread Michael Rasmussen
On 2017-09-09 12:18, David Phillips wrote: > Why not use rsync to dupe the data? > > >> On Sep 9, 2017, at 12:00 PM, plug-requ...@lists.pdxlinux.org wrote: >> >> Send PLUG mailing list submissions to >> plug@lists.pdxlinux.org >> >> To subscribe or unsubscribe via the World Wide Web,

Re: [PLUG] PLUG Digest, Vol 156, Issue 17

2017-09-10 Thread Tomas Kuchta
No it will not. * Is for all files and directories, exclusive of dot files. Dot files might be included in the subdirectories, but that does not matter when you are in home. If you would want to address dot files, you would have to say: .* On Sep 10, 2017 8:19 AM, "Denis Heidtmann"

Re: [PLUG] PLUG Digest, Vol 156, Issue 17

2017-09-10 Thread John Jason Jordan
On Sun, 10 Sep 2017 08:17:56 -0700 Denis Heidtmann dijo: >cp -pr * /home/household/ will bring all the dot folders in >/home/household, numbering about 24 dot folders and 19 dot files. The >exclude option in rsync will do it when I can figure out how to write >the

Re: [PLUG] PLUG Digest, Vol 156, Issue 17

2017-09-10 Thread Denis Heidtmann
cp -pr * /home/household/ will bring all the dot folders in /home/household, numbering about 24 dot folders and 19 dot files. The exclude option in rsync will do it when I can figure out how to write the PATTERN --exclude requires. The shell gets first shot at it. On Sat, Sep 9, 2017 at 10:35