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

2019-01-04 Thread Bruce Kilpatrick

On 1/4/19 2:08 PM, Paul Heinlein wrote:

On Fri, 4 Jan 2019, Louis Kowolowski wrote:

Been using a Brother MFC-L8850CDW for several years and happy with it. 
Supported with cups. I haven't tried remote scanning. Does duplex 
(printing/scanning) and network stuff (ethernet/wifi/airprint/etc). 
Can scan to a usb stick.


https://www.amazon.com/gp/product/B00K5UZP2S/ref=oh_aui_search_detailpage?ie=UTF8&psc=1 



Simlarly, I'm using a Brother HLL2395DW, which replaced my ancient HP 
LaserJet just last August. It's got scanning and double-sided printing, 
plus wired and wifi interfaces. The consumables are reportedly priced 
reasonably, but I haven't needed any yet.


The caveat is that I use and manage it from MacOS and iOS devices. I 
haven't tried a SANE connection.


https://www.amazon.com/gp/product/B0764NWFP8/ref=oh_aui_detailpage_o01_s00?ie=UTF8&psc=1 




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

I am using an HL-2280DW. Wired to my lan and usable for printing and 
scanning from Ubuntu and Kubuntu machines...setup is a little odd but 
once up it works well

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


Re: [PLUG] Can't kill process

2019-01-04 Thread Dick Steffens

On 1/4/19 3:38 PM, Daniel Johnson wrote:

Could be a weird keyboard mapping rather than the password getting
scrambled. If you have a graphical login check for something like a
localization setting. For example if you see a UK flag instead of a US
flag. Or also Dvorak.

If it's the password the usual trick from alternative boot like a USB stick
is to switch to root "sudo -i" then chroot to the system you need to update
the password on an run passwd. Can also avoid the boot USB by changing the
boot line in grub to replace init with bash, but that is trickier than I
want to explain here.


On 1/4/19 3:57 PM, wes wrote:

One quick way to determine this is to just type stuff into the login box
and see if it looks right. If your password uses any special characters,
try those out at some point to make sure they're working properly, you
don't have a shift key stuck down, etc.


I tried typing my password into the user name line and got the expected 
characters. I copied and pasted it into the password line, but it didn't 
help.


I just tried logging in by ssh and had no trouble.

While there I decided to try changing the owner of the html output of 
lshw I did earlier from root to rsteff. Here's the results:


root@ENU-2:/home/rsteff/Desktop# chown rsteff:rsteff hardware.html
chown: invalid group: 'rsteff:rsteff'
root@ENU-2:/home/rsteff/Desktop# groups
root bin daemon sys adm disk wheel audio
root@ENU-2:/home/rsteff/Desktop#

I'm guessing that not being able to log in from ENU-2's own keyboard is 
not related to bad passwords, since I can log in via ssh.


On ENU-1, my Ubuntu 18 machine, when I run groups, I see that my user, 
dick, has a group:


dick@ENU-1:~$ groups
dick adm cdrom sudo dip plugdev lpadmin sambashare vboxusers
dick@ENU-1:~$

Somehow I don't have one on ENU-2, the Slackware machine, for rsteff. 
I'm sure I could add a group, but I'm wondering if the step that should 
have created one included other things that should have happened during 
the initial install. Will that be something I can track down, or would 
it be easier to run the install over again? I'm assuming I could get the 
package files I've created from /tmp before I start over, and save them 
to a USB stick, which would save me some time. This time I would start 
by totally redoing the partitioning, instead of just using the old boot 
partition.


Again, I'm making guesses here, so feel free to apply a clue stick to 
keep me from doing something wrong.



--
Regards,

Dick Steffens

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


Re: [PLUG] Can't kill process

2019-01-04 Thread wes
On Fri, Jan 4, 2019 at 3:41 PM Daniel Johnson  wrote:

> Could be a weird keyboard mapping rather than the password getting
> scrambled. If you have a graphical login check for something like a
> localization setting. For example if you see a UK flag instead of a US
> flag. Or also Dvorak.
>

One quick way to determine this is to just type stuff into the login box
and see if it looks right. If your password uses any special characters,
try those out at some point to make sure they're working properly, you
don't have a shift key stuck down, etc.

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


Re: [PLUG] Can't kill process

2019-01-04 Thread Daniel Johnson
Could be a weird keyboard mapping rather than the password getting
scrambled. If you have a graphical login check for something like a
localization setting. For example if you see a UK flag instead of a US
flag. Or also Dvorak.

If it's the password the usual trick from alternative boot like a USB stick
is to switch to root "sudo -i" then chroot to the system you need to update
the password on an run passwd. Can also avoid the boot USB by changing the
boot line in grub to replace init with bash, but that is trickier than I
want to explain here.

On Fri, Jan 4, 2019, 3:12 PM Dick Steffens 
> [Snip]
>
> I'm assuming I can boot from the install USB stick, but if that works,
> what do I look for to fix being able to log in?
>
> Also, during my other adventures, I noticed that instead of having my
> user name in the terminal prompt I had a bash, something or other.
> Whereas, as root, I did have root in the prompt. Does that point to
> something?
>
> --
> Regards,
>
> Dick Steffens
>
> ___
> PLUG mailing list
> PLUG@pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Can't kill process

2019-01-04 Thread Dick Steffens

On 1/4/19 3:08 PM, Rich Shepard wrote:

On Fri, 4 Jan 2019, wes wrote:


Many Linux distributions now come with a utility called "killall" which
will kill all processes matching a given name.

Or: reboot.


  No need to reboot. As root run #kill -9 
As the man page reads,

"The command kill sends the specified signal to the specified proces 
ses or

process groups. If no signal is specified, the TERM signal is sent. This
TERM signal will kill processes that do not catch it; for other 
processes it
may be necessary to use the KILL signal (number 9), since this signal 
cannot

be caught."


See my most recent post for more details.

--
Regards,

Dick Steffens


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


Re: [PLUG] Can't kill process

2019-01-04 Thread Dick Steffens

On 1/4/19 3:01 PM, wes wrote:

On Fri, Jan 4, 2019 at 2:29 PM Dick Steffens  wrote:


While working on getting the correct nVidia driver on my Slackware
machine Firefox appeared to hang. It won't respond to attempts to close
it via the gui, so I tried kill. I used ps ax | grep firefox to learn
the process to kill. But when I try to kill it, as root, I get an error
message telling me there is no such process. Sure enough, when I use ps
ax again, firefox has a different process. After trying yet again to
kill the process I learned from the second ps ax, and discovering that
that process doesn't exist, I tried ps ax a couple of times in a row.
Each time I get a different process number.

How do I kill a process like that?



Many Linux distributions now come with a utility called "killall" which
will kill all processes matching a given name.

Or: reboot.


After several minutes I tried closing Firefox using its own close button 
and it worked. However, none of the icons on the XFCE launch (?) bar at 
the bottom of the screen worked. So I went with option two and am 
rebooting. Actually, I powered down and started back up. Now the mouse 
works, but the keyboard does not. Unplugging the keyboard and plugging 
it back in fixed that, but login won't accept my normal user password, 
or my root password.


I'm assuming I can boot from the install USB stick, but if that works, 
what do I look for to fix being able to log in?


Also, during my other adventures, I noticed that instead of having my 
user name in the terminal prompt I had a bash, something or other. 
Whereas, as root, I did have root in the prompt. Does that point to 
something?


--
Regards,

Dick Steffens

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


Re: [PLUG] Can't kill process

2019-01-04 Thread Rich Shepard

On Fri, 4 Jan 2019, wes wrote:


Many Linux distributions now come with a utility called "killall" which
will kill all processes matching a given name.

Or: reboot.


  No need to reboot. As root run #kill -9 
As the man page reads,

"The command kill sends the specified signal to the specified proces ses or
process groups. If no signal is specified, the TERM signal is sent. This
TERM signal will kill processes that do not catch it; for other processes it
may be necessary to use the KILL signal (number 9), since this signal cannot
be caught."

Rich

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


Re: [PLUG] Can't kill process

2019-01-04 Thread wes
On Fri, Jan 4, 2019 at 2:29 PM Dick Steffens  wrote:

> While working on getting the correct nVidia driver on my Slackware
> machine Firefox appeared to hang. It won't respond to attempts to close
> it via the gui, so I tried kill. I used ps ax | grep firefox to learn
> the process to kill. But when I try to kill it, as root, I get an error
> message telling me there is no such process. Sure enough, when I use ps
> ax again, firefox has a different process. After trying yet again to
> kill the process I learned from the second ps ax, and discovering that
> that process doesn't exist, I tried ps ax a couple of times in a row.
> Each time I get a different process number.
>
> How do I kill a process like that?
>
>
Many Linux distributions now come with a utility called "killall" which
will kill all processes matching a given name.

Or: reboot.

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


[PLUG] Can't kill process

2019-01-04 Thread Dick Steffens
While working on getting the correct nVidia driver on my Slackware 
machine Firefox appeared to hang. It won't respond to attempts to close 
it via the gui, so I tried kill. I used ps ax | grep firefox to learn 
the process to kill. But when I try to kill it, as root, I get an error 
message telling me there is no such process. Sure enough, when I use ps 
ax again, firefox has a different process. After trying yet again to 
kill the process I learned from the second ps ax, and discovering that 
that process doesn't exist, I tried ps ax a couple of times in a row. 
Each time I get a different process number.


How do I kill a process like that?

--
Regards,

Dick Steffens

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


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

2019-01-04 Thread Paul Heinlein

On Fri, 4 Jan 2019, Louis Kowolowski wrote:


Been using a Brother MFC-L8850CDW for several years and happy with it. 
Supported with cups. I haven't tried remote scanning. Does duplex 
(printing/scanning) and network stuff (ethernet/wifi/airprint/etc). Can scan to 
a usb stick.

https://www.amazon.com/gp/product/B00K5UZP2S/ref=oh_aui_search_detailpage?ie=UTF8&psc=1


Simlarly, I'm using a Brother HLL2395DW, which replaced my ancient HP 
LaserJet just last August. It's got scanning and double-sided 
printing, plus wired and wifi interfaces. The consumables are 
reportedly priced reasonably, but I haven't needed any yet.


The caveat is that I use and manage it from MacOS and iOS devices. I 
haven't tried a SANE connection.


https://www.amazon.com/gp/product/B0764NWFP8/ref=oh_aui_detailpage_o01_s00?ie=UTF8&psc=1

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


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

2019-01-04 Thread Louis Kowolowski
Been using a Brother MFC-L8850CDW for several years and happy with it. 
Supported with cups. I haven't tried remote scanning. Does duplex 
(printing/scanning) and network stuff (ethernet/wifi/airprint/etc). Can scan to 
a usb stick.

https://www.amazon.com/gp/product/B00K5UZP2S/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

> On Jan 4, 2019, at 12:11 PM, Roderick Anderson  wrote:
> 
> I seem to remember at least two threads last year about printers.
> 
> Didn't follow them then but now I am in the market. :-/
> 
> All the 'Best of/for' articles aren't helping.
> 
> Anyone know of a chart listing features for a lot of the printers?
> 
> Heck I'd take recommendations.
> 
> LED or laser (not inkjet), color, multifunction ie. scanning (SANE).
> Nice would be duplex print and duplex scan would be icing.
> 
> 
> TIA,
> Rod
> -- 
> ___
> PLUG mailing list
> PLUG@pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug

--
Louis Kowolowskilou...@cryptomonkeys.org 

Cryptomonkeys:   http://www.cryptomonkeys.com/ 


Making life more interesting for people since 1977

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


[PLUG] Color Laser/LED Multifunction Printers?

2019-01-04 Thread Roderick Anderson

I seem to remember at least two threads last year about printers.

Didn't follow them then but now I am in the market. :-/

All the 'Best of/for' articles aren't helping.

Anyone know of a chart listing features for a lot of the printers?

Heck I'd take recommendations.

LED or laser (not inkjet), color, multifunction ie. scanning (SANE).
Nice would be duplex print and duplex scan would be icing.


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


Re: [PLUG] Copying all partitions of a drive to single partition/directory?

2019-01-04 Thread Tyrell Jentink
The standard tool for taking a disk image is 'dd.' Man page:
http://man7.org/linux/man-pages/man1/dd.1.html

Theoretically, you can simply image the entire drive, partitions and all
intact exactly as they are presently, although I've never done it that
way... I have always imaged partitions directly... But I don't see why
either method would be "wrong," as long as you know how to mount the output
;)

As for compressing it...
https://serverfault.com/questions/52260/compressing-dd-backup-on-the-fly
suggests you can simply pipe the output of 'dd' directly into gzip... But
one of the comments says not to use it for the purposes the original poster
suggested it for, so maybe read their warnings before following their
advice.

On Fri, Jan 4, 2019, 06:08 Richard Owlett  I wish to do fresh Debian installs to three machines {including
> repartitioning drives of each machine}. Each drive is nominally 250GB. I
> have purchased a USB connected 1TB drive to be the target.
>
> I like the ease of use of Clonezilla-live. But it intrinsically wipes
> the target drive completely. Compressing the output would be nice.
>
> TIA
>
> ___
> PLUG mailing list
> PLUG@pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Copying all partitions of a drive to single partition/directory?

2019-01-04 Thread Richard Owlett
I wish to do fresh Debian installs to three machines {including 
repartitioning drives of each machine}. Each drive is nominally 250GB. I 
have purchased a USB connected 1TB drive to be the target.


I like the ease of use of Clonezilla-live. But it intrinsically wipes 
the target drive completely. Compressing the output would be nice.


TIA

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