Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread deloptes
rhkra...@gmail.com wrote:

> Background: I'm trying to do taxes for a few of my friends using H
> Block's free online software (they qualify, as all their income is due to
> wages).  The online software has the ability to automatically read (i.e.,
> OCR) W2s from a picture.

Oooh - online - so you scan your data and send it online and it is free.
You surely read the agreement that you signed.
There is nothing for free. I would never send my accounting data anywhere.

Be careful



Re: now gmail rant

2020-03-06 Thread Keith Bainbridge

On 7/3/20 12:30 am, Greg Wooledge wrote:

On Fri, Mar 06, 2020 at 10:36:48AM +, Liam O'Toole wrote:

Mutt displays the date and time of your email as "Fri, 6 Mar 2020
14:24:47 +1100", and that is reflected in the attribution string above.
So the information is conveyed in some email header or other.


Specifically, the one named "Date:".

Of course, humans aren't always adept and translating local times
between different time zones in their heads while reading through
a bunch of email.  Someone who just glances at "14:24:47" and overlooks
the "+1100" part might think "Oh, it was sent at two-thirty in the
afternoon..." and not realize that two-thirty in the sender's time
zone is substantially different from two-thirty in the reader's time
zone.



Warning, levity ahead.

I know it's not easy, but it shouldn't be so easy for to spark me for 
not answering in the middle of the night.  (Flame is too strong,really) 
   I've been defending our situation for decades.  The best recently 
was when somebody asked if we all got up to watch the moon landing - BUT 
it was the middle of the afternoon, wasn't it. I know I was at work - 
our Manager brought his TV into the office for us to sneak in 
occasionally. My better half was a teacher then - the kids watched most 
of as their study for that day.



PLEASE, I just like having a bit of fun sometimes.   At 72, I reckon 
I've earnt that much?


--
Keith Bainbridge

keith.bainbridge.3...@gmail.com
+61 (0)447 667 468



Re: normalize audio in mp4s

2020-03-06 Thread David Wright
On Fri 06 Mar 2020 at 20:33:48 (+0100), Emanuel Berg wrote:
> how can I normalize the audio in mp4 video files? both WRT not
> having to lower the volume when there's a firefight and raise it
> when they start talking again, _and_ WRT playing several files, e.g.
> music videos, and having them have basically the same volume?
> 
> if need be, I can set volume modifications to each file, manually if
> I knew how to do it. this wouldn't work for firefight/talk
> movies tho.

I use the compand and gain effects in sox, but my target is different
from yours: movies would involve splitting and recombining the audio
and video streams.

My process converts anything that ffmpeg will play into WAV files
(CD format), which sox then concatenates and compands into another
WAV file, which lame then encodes to an MP3.

My target is to convert (possibly segue'd) classical music tracks
(potentially huge dynamic range) into something that can be listened
to on an MP3 player in noisy places like, say, the street.

The critical lines (embedded in a load of shell) are
  ffmpeg -hide_banner -y -i "$1" -ar 44100 -ac 2 "$Unique0/$Filenumber.wav"
where the $Filenumbers are 1+ sequence numbers so they collate,
  sox "$Unique0"/1*.wav -t wav -r 44100 -b 16 -c 2 "$Unique0/0.wav" compand 
0.3,1 6:-70,-60,-20 -15 -90 0.2 gain -n -0.01;
where the companding parameters are reasonably aggressive and the
normalisation is "turned up to ten", and
  lame -b "${Fixedbitrate:-128}" "$Unique0/0.wav" "$Unique0/0.mp3"
is for fairly unendowed MP3 players.

($Unique0 is just a nonce working directory.)

> or can it be done automatically, on the fly?

On the fly would mean delaying the video to match the audio, which is
necessarily delayed (by sox needing look-ahead in the audio stream).
I've thought about it over the years, but never tried it, mainly
because in the situation where it would have been most useful
(ie driving, particularly commuting alone), I didn't have any way
of intercepting the audio between tuner and amplifier. (Nowadays,
I rely on the thumb control on the steering wheel.) That's for the
radio, and occasional CD. Otherwise, the tracks on my USB stick would
usually have been companded as above.

I would be interested if someone worked out how to do splitting, sox,
and recombining reliably enough to preserve the synchronisation.
(Automatic, but not on the fly.)

Cheers,
David.



Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
David Christensen wrote:

> It is going to be difficult or impossible to get good results
> across many different mp4 files by feeding them all through
> a command-line tool with the same set of options. It might be
> possible to script a solution that uses command-line tools to
> analyze each file and tune the options, but I dunno...

Yes, I get it. I actually thought the opposite to begin with, i.e.
the more file the better since then the computer would be able to
compute some grand framework and pruning everything that ended up
outside of it...

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal



Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
> I tried this but it sounds so bad I even had to put a warning in
> a comment

I used it the wrong way, one is supposed to experiment with dB/LUFS
values for a single problematic file, meanwhile I just injected all
my mp3s :$

> # first do:
> # $ pip install ffmpeg-normalize
> #
> # but... don't use, at least not with music, sounds terrible :(
> get-mp3-normalized () {
> local -a files
> files=($@)
>
> local dB=-10 # db/LUFS
>
> for f in $files; do
> ffmpeg-normalize -f -c:a libmp3lame -t $dB -ext mp3 $f
> done
> } # [1]
>
> [1] https://dataswamp.org/~incal/conf/.zsh/audio-convert

Do it today... in a different way!

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal



Re: normalize audio in mp4s

2020-03-06 Thread Jonas Smedegaard
Quoting David Christensen (2020-03-07 03:41:22)
> On 2020-03-06 18:05, Emanuel Berg wrote:
> 
> 
> 
> > Well, it sounds advanced... Yes, its a stereo alright, that much
> > I know.
> > 
> > I tried this but it sounds so bad I even had to put a warning in
> > a comment:
> > 
> > # first do:
> > # $ pip install ffmpeg-normalize
> > #
> > # but... don't use, at least not with music, sounds terrible :(
> > get-mp3-normalized () {
> >  local -a files
> >  files=($@)
> > 
> >  local dB=-10 # db/LUFS
> > 
> >  for f in $files; do
> >  ffmpeg-normalize -f -c:a libmp3lame -t $dB -ext mp3 $f
> >  done
> > } # [1]
> > 
> > 
> > [1] https://dataswamp.org/~incal/conf/.zsh/audio-convert
> 
> It is going to be difficult or impossible to get good results across 
> many different mp4 files by feeding them all through a command-line tool 
> with the same set of options.  It might be possible to script a solution 
> that uses command-line tools to analyze each file and tune the options, 
> but I dunno...
> 
> 
> The most direct path to good results would be to use an interactive 
> audio editor.  Then it's up to your skills as an audio engineer.  As, 
> Audacity only does audio files, the workflow would be to use a video 
> tool to extract the audio tracks, rework the audio with Audacity, and 
> then use a video tool to replace the old audio with the new audio.
> 
> 
> Be sure you backup your original files before you start messing with them.

If you want something you can throw into a script, I recommend to look 
at melt and use its "loudness" filter.

You will want to run it in two-pass mode, so that it knows ahead the 
dynamics of each "tune" (or movie).

It can be tricky to capture the output from first pass and feed it into 
second pass (because the main use for the MLT framework is not the 
command-line tool melt but instead XML-based linkage to GUI tools).

Maybe this script is useful for inspiration: 
http://source.jones.dk/bin.git/tree/localvideowebencode


 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private

signature.asc
Description: signature


Re: normalize audio in mp4s

2020-03-06 Thread David Christensen

On 2020-03-06 18:05, Emanuel Berg wrote:




Well, it sounds advanced... Yes, its a stereo alright, that much
I know.

I tried this but it sounds so bad I even had to put a warning in
a comment:

# first do:
# $ pip install ffmpeg-normalize
#
# but... don't use, at least not with music, sounds terrible :(
get-mp3-normalized () {
 local -a files
 files=($@)

 local dB=-10 # db/LUFS

 for f in $files; do
 ffmpeg-normalize -f -c:a libmp3lame -t $dB -ext mp3 $f
 done
} # [1]


[1] https://dataswamp.org/~incal/conf/.zsh/audio-convert


It is going to be difficult or impossible to get good results across 
many different mp4 files by feeding them all through a command-line tool 
with the same set of options.  It might be possible to script a solution 
that uses command-line tools to analyze each file and tune the options, 
but I dunno...



The most direct path to good results would be to use an interactive 
audio editor.  Then it's up to your skills as an audio engineer.  As, 
Audacity only does audio files, the workflow would be to use a video 
tool to extract the audio tracks, rework the audio with Audacity, and 
then use a video tool to replace the old audio with the new audio.



Be sure you backup your original files before you start messing with them.


David



Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
David Christensen wrote:

> You want audio compression.
>
> Some media editors, such as Audacity, have compression (and many
> other features).
>
> Some media players, such as VLC, have real-time audio compression
> during playback.
>
> I use Xfce. I do not see a compressor in its PulseAudio
> Plugin/ mixer.
>
> There have been various audio API's/ subsystems in Linux over the
> years. JACK was designed for profession audio on Linux, and is
> very flexible. If you can get your audio streams into JACK, it
> should be possible to patch in a software compressor:
>
> https://en.wikipedia.org/wiki/JACK_Audio_Connection_Kit
>
> Alternatively, hardware. If you are running old-school stereo
> speakers, you could buy an electronic compressor. There are many
> choices. Rolls makes good purpose-built stuff at reasonable
> prices:
>
> https://rolls.com/product/SL33

Thank you, you seem very knowledgeable in this area...

Well, it sounds advanced... Yes, its a stereo alright, that much
I know.

I tried this but it sounds so bad I even had to put a warning in
a comment:

# first do:
# $ pip install ffmpeg-normalize
#
# but... don't use, at least not with music, sounds terrible :(
get-mp3-normalized () {
local -a files
files=($@)

local dB=-10 # db/LUFS

for f in $files; do
ffmpeg-normalize -f -c:a libmp3lame -t $dB -ext mp3 $f
done
} # [1]


[1] https://dataswamp.org/~incal/conf/.zsh/audio-convert

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal



Re: normalize audio in mp4s

2020-03-06 Thread David Christensen

On 2020-03-06 11:33, Emanuel Berg wrote:

how can I normalize the audio in mp4 video files? both WRT not
having to lower the volume when there's a firefight and raise it
when they start talking again, _and_ WRT playing several files, e.g.
music videos, and having them have basically the same volume?

if need be, I can set volume modifications to each file, manually if
I knew how to do it. this wouldn't work for firefight/talk
movies tho.

or can it be done automatically, on the fly?

I use mpv.


You want audio compression.


Some media editors, such as Audacity, have compression (and many other 
features).



Some media players, such as VLC, have real-time audio compression during 
playback.



I use Xfce.   I do not see a compressor in its PulseAudio Plugin/ mixer.


There have been various audio API's/ subsystems in Linux over the years. 
 JACK was designed for profession audio on Linux, and is very flexible. 
 If you can get your audio streams into JACK, it should be possible to 
patch in a software compressor:


https://en.wikipedia.org/wiki/JACK_Audio_Connection_Kit


Alternatively, hardware.  If you are running old-school stereo speakers, 
you could buy an electronic compressor.  There are many choices.  Rolls 
makes good purpose-built stuff at reasonable prices:


https://rolls.com/product/SL33


David



Re: Problema con el sonido en Debian 10

2020-03-06 Thread riveravaldez
On 3/6/20, David Gerardo Romero Soto  wrote:
> Hola. Instalé Debian en mi laptop y todo funciona bien excepto que cuando
> conecto mis headfones al laptop no se escucha ningún sonido en ellos. He
> probado varios pero poe ninguno se oye algo.

¿Has probado lanzar alsamixer en una terminal (simplemente ejecuta
'alsamixer', sin las comillas) y ver qué placas de audio tienes y los
niveles de volumen (y muteo, si es el caso) de cada salida?

Saludos



Re: Mirror for PPC64 port

2020-03-06 Thread Dan Ritter
Echedey Lopez Romero wrote: 
> Good night from Spain,
> Could anyone point me to get an usable mirror for the PPC64 (Big
> Endian) port?
> 
> The mirror list was updated in 2019 the last time and the only mirrors
> referencing the PowerPC architecture ports were 3 for the 32 bits
> version.

PPC64 big-endian is no longer being supported. I *think* the
most recent support was two major versions ago:

https://cdimage.debian.org/mirror/cdimage/archive/8.11.0/

PPC64 little-endian is up to date.

There's a PPC specific mailing list:
https://lists.debian.org/debian-powerpc/

-dsr-



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread rhkramer
On Friday, March 06, 2020 02:55:56 PM Brian wrote:
> On Fri, Mar 06, 2020 at 08:46:07PM +0100, to...@tuxteam.de wrote:
> > On Fri, Mar 06, 2020 at 07:35:32PM +, Brad Rogers wrote:
> > > You might have been searching for the wrong thing;
> > > 
> > > libsane-genesys* is provided by package libsane, which is available in
> > > everything from jessie to sid.
> > 
> > Yes, it's a lib:
> >   tomas@trotzki:~$ apt-file search genesys
> >   libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1
> >   libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27
> >   [...]
> 
> Indeed it is. It is a backend to SANE. The Project says that support
> for the CanoScan 700F is "Good". The OP seems to have a good chance of
> getting it scanning.
> 
> Meanwhile, he has probably devoted some time to reading the wiki.

Well, I am digging into the documentation, I might get to the wiki, or I might 
keep pursuing Windows ...

The list of SANE: Supported Devices 
at:
http://www.sane-project.org/sane-mfgs.html#Z-CANON

Says there is good support for the CanoScan 700F but does not list support at 
all for the CanoScan LiDE 700F (but does have separate listing for several 
other models differentiated by LiDE, e.g. CanoScan 600 vs. CanoScan LiDE 600 
(I'm guessing about 10 different models like this).

I vaguely remember / suspect this is what I ran into last time I tried this.  
I will do a little more reading, I don't know what the LiDE indicates...







Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread deloptes
Mikhail Morfikov wrote:

>> Just check the configuration in /etc/initramfs-tools/
> No, there's nothing useful for me there, so it has to be in
> some other place, hmm...


try with the stock kernel 
modprobe -v iwlwifi

or whatever the module name is and update initrd.
Check the results
lsinitramfs  /boot/initrd.img-






Mirror for PPC64 port

2020-03-06 Thread Echedey Lopez Romero
Good night from Spain,
Could anyone point me to get an usable mirror for the PPC64 (Big
Endian) port?

The mirror list was updated in 2019 the last time and the only mirrors
referencing the PowerPC architecture ports were 3 for the 32 bits
version.

-- 
Regards,
Echedey, Lopez Romero



Mirror for PPC64 port

2020-03-06 Thread Echedey Lopez Romero
Good night from Spain,
Could anyone point me to get an usable mirror for the PPC64 (Big
Endian) port?

The mirror list was updated in 2019 the last time and the only mirrors
referencing the PowerPC architecture ports were 3 for the 32 bits
version.
-- 
Regards,
Echedey, Lopez Romero



Problema con el sonido en Debian 10

2020-03-06 Thread David Gerardo Romero Soto
Hola. Instalé Debian en mi laptop y todo funciona bien excepto que cuando
conecto mis headfones al laptop no se escucha ningún sonido en ellos. He
probado varios pero poe ninguno se oye algo.


possible BUG: gnome freeze for a wile every some minutes

2020-03-06 Thread Eri
Hi,
I'm having a problem after an update some weeks ago, every few minutes the
pc is freezing for a while and after it recover, it seem to be the same as
writte on this:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861294
I'm getting also the same errors:
[50928.830285] GpuWatchdog[27129]: segfault at 0 ip 55622c3b4fa2 sp
7f337299d4c0 error 6 in chrome[55622846e000+7287000]
[50928.830296] Code: 83 c3 e8 75 e9 41 8b 85 00 01 00 00 85 c0 0f 84 99 00
00 00 48 8d 3d f3 60 4b fb be 01 00 00 00 ba 03 00 00 00 e8 be 17 a6 fe
 04 25 00 00 00 00 37 13 00 00 c6 05 fc 76 b9 03 01 80 7d 8f 00

I'm using
Linux moleub 5.4.0-4-amd64 #1 SMP Debian 5.4.19-1 (2020-02-13) x86_64
GNU/Linux
on
Debian GNU/Linux bullseye/sid \n \l
I would like to report a possible bug but I don't know on which package and
how to do, as this freezing happens also if chrome is not running.
Thanks
Enrico Maria


Re: Cannot open Trash in spacefm?

2020-03-06 Thread Ben Caradoc-Davies

On 07/03/2020 07:40, kaye n wrote:

*What happens if, as a test, you select Thunar as your preferred file
manager, and then double-click on the Trash icon?*
It opens!


This confirms that the problem is in spacefm, not Thunar or Xfce. I was 
able to reproduce the behaviour you report on a buster live image after 
installing spacefm. I am not familiar with spacefm, but seems that it 
does not support Trash, trash:/// urls, or any other part of the 
Freedesktop.org Trash specification. There are some community plugins 
for Trash support, but I think you also need handler support to get 
trash:/// urls to work.


I have updated the title to draw attention from anyone who might be able 
to help with spacefm.


Kind regards,

--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread Brian
On Fri, Mar 06, 2020 at 08:46:07PM +0100, to...@tuxteam.de wrote:
> On Fri, Mar 06, 2020 at 07:35:32PM +, Brad Rogers wrote:
> > On Fri, 6 Mar 2020 14:17:52 -0500
> > rhkra...@gmail.com wrote:
> > 
> > Hello rhkra...@gmail.com,
> > 
> > >I don't see sane-genesys (or genesys) in Wheezy, Jessie, or Buster.  I
> > 
> > You might have been searching for the wrong thing;
> > 
> > libsane-genesys* is provided by package libsane, which is available in
> > everything from jessie to sid.
> 
> Yes, it's a lib:
> 
>   tomas@trotzki:~$ apt-file search genesys
>   libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1
>   libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27
>   [...]

Indeed it is. It is a backend to SANE. The Project says that support
for the CanoScan 700F is "Good". The OP seems to have a good chance of
getting it scanning.

Meanwhile, he has probably devoted some time to reading the wiki.

-- 
Brian.



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread tomas
On Fri, Mar 06, 2020 at 07:46:05PM +, Brian wrote:
> On Fri, Mar 06, 2020 at 07:02:27PM +0100, to...@tuxteam.de wrote:

[...]

> > Simple-scan is also based on libsane (as Xsane is). It also depends
> > on all those "desktop goodies" [...]

> Like you, my preference is xsane as a fromtend to SANE. However, I do
> not think it is the lack of shinyness that puts users off using it.
> Not completely, anyway. What is perceived as the plethora of options
> and things to click on is a factor, particulary when it comes to new
> or casual users.

I forgot to put a smiley in there :-)

I can imagine that simple-scan caters more to the expectation of
a modern GUI user, and thus may be the better choice, Especially
if said user has already bought into the "desktop" paradigm.

I tried for a while and... it's not for me.

> And don't forget - Ubuntu and Mint (both widely used) ship simple-scan.
> That is what their users are familiar with. It doesn't do a bad job.

Definitely.

Cheers
-- t


signature.asc
Description: Digital signature


normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
how can I normalize the audio in mp4 video files? both WRT not
having to lower the volume when there's a firefight and raise it
when they start talking again, _and_ WRT playing several files, e.g.
music videos, and having them have basically the same volume?

if need be, I can set volume modifications to each file, manually if
I knew how to do it. this wouldn't work for firefight/talk
movies tho.

or can it be done automatically, on the fly?

I use mpv.

TIA

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread tomas
On Fri, Mar 06, 2020 at 07:35:32PM +, Brad Rogers wrote:
> On Fri, 6 Mar 2020 14:17:52 -0500
> rhkra...@gmail.com wrote:
> 
> Hello rhkra...@gmail.com,
> 
> >I don't see sane-genesys (or genesys) in Wheezy, Jessie, or Buster.  I
> 
> You might have been searching for the wrong thing;
> 
> libsane-genesys* is provided by package libsane, which is available in
> everything from jessie to sid.

Yes, it's a lib:

  tomas@trotzki:~$ apt-file search genesys
  libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1
  libsane: /usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27
  [...]

This is on buster.

Cheers
-- t


signature.asc
Description: Digital signature


Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread Brian
On Fri, Mar 06, 2020 at 07:02:27PM +0100, to...@tuxteam.de wrote:
> On Fri, Mar 06, 2020 at 12:51:04PM -0500, rhkra...@gmail.com wrote:
> 
> > I'll look into simple-scan.
> 
> Simple-scan is also based on libsane (as Xsane is). It also depends
> on all those "desktop goodies" as dbus-session, xdg-utils, gsettings
> and friends, which you might like -- or not. So it may be called
> "simple" but Xsane is definitely simpler -- although most definitely
> not as shiny.

Like you, my preference is xsane as a fromtend to SANE. However, I do
not think it is the lack of shinyness that puts users off using it.
Not completely, anyway. What is perceived as the plethora of options
and things to click on is a factor, particulary when it comes to new
or casual users.

And don't forget - Ubuntu and Mint (both widely used) ship simple-scan.
That is what their users are familiar with. It doesn't do a bad job.

-- 
Brian.`



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread Brad Rogers
On Fri, 6 Mar 2020 14:17:52 -0500
rhkra...@gmail.com wrote:

Hello rhkra...@gmail.com,

>I don't see sane-genesys (or genesys) in Wheezy, Jessie, or Buster.  I

You might have been searching for the wrong thing;

libsane-genesys* is provided by package libsane, which is available in
everything from jessie to sid.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"
I guess I shouldn't have strangled her to death
Ugly - The Stranglers


pgp53STdddOKH.pgp
Description: OpenPGP digital signature


Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread rhkramer
On Friday, March 06, 2020 01:02:27 PM to...@tuxteam.de wrote:
> According to this [1] man page, the sane-genesys backend supports your
> model. No first-hand experience, though...
> 
> > I'll look into simple-scan.
> 
> Simple-scan is also based on libsane (as Xsane is). It also depends
> on all those "desktop goodies" as dbus-session, xdg-utils, gsettings
> and friends, which you might like -- or not. So it may be called
> "simple" but Xsane is definitely simpler -- although most definitely
> not as shiny.
> 
> Cheers
> [1] http://sane-project.org/man/sane-genesys.5.html

Thanks for the reply!

I don't see sane-genesys (or genesys) in Wheezy, Jessie, or Buster.  I suppose 
I'd have to compile build it myself (or try installing testing or similar) -- 
not sure I'm ready for either.

I think I'll boot the Buster system back into Windows (Vista) and see if I can 
get it to work there -- I do apparently have to find and download the Windows 
driver.

Going to take a break for a while -- probably go out and do my run.



Re: Cannot open Trash?

2020-03-06 Thread kaye n
*What happens if, as a test, you select Thunar as your preferred file
manager, and then double-click on the Trash icon?*

It opens!



*I have not tried spacefm. What happens if you try to open Trash directly
with spacefm? spacefm trash:///*

In terminal? This:







*kaye@laptop:~$  spacefm trash:home/kaye/.gtkrc-2.0:3: Unable to locate
image file in pixmap_path: "foo.bar"/home/kaye/.gtkrc-2.0:4: Unable to
locate image file in pixmap_path: "foo.bar"/home/kaye/.gtkrc-2.0:5: Unable
to locate image file in pixmap_path: "foo.bar"/home/kaye/.gtkrc-2.0:6:
Unable to locate image file in pixmap_path:
"foo.bar"/home/kaye/.gtkrc-2.0:7: Unable to locate image file in
pixmap_path: "foo.bar"(spacefm:2060): SpaceFM-WARNING **: 02:32:48.644: No
root settings found in /etc/spacefm/  Setting a root editor in Preferences
should remove this warning on startup.   Otherwise commands run as root may
present a security risk.*

What next? Thank you!!!


Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread ghe
Ok, I noticed that simple-scan uses sane / xsane, so I didn't have high
hopes (as h-node found nothing compatible), but I installed it anyway on
my Buster system -- no luck: ~"No scanner found".

You might have some luck on the web.

My scanner came with Windows and Mac software, but there aere howTos
telling how to get it going on Linux.

Simple Scan is working perfectly for me now.

-- 
Glenn English



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread rhkramer
On Friday, March 06, 2020 12:51:04 PM rhkra...@gmail.com wrote:
> Yes, you're right (of course).  It must have been SANE that I tried all
> those years ago.  Someone else suggested SANE + XSANE and suggested a page
> where I could check for a driver (h-node) (or compatibility):
> 
> https://h-node.org/scanners/catalogue/en/1/1/Canon-
> Inc./undef/undef/undef/compatibility/undef
> 
> I checked / searched there -- no listing for the CanoScan LIDE 700F or
> anything close to it (I tried a variety of search terms).  (A few
> CanoScans, but nothing that looked close to the LIDE 700F (based on model
> numbers).)
> 
> I'll look into simple-scan.

Ok, I noticed that simple-scan uses sane / xsane, so I didn't have high hopes 
(as h-node found nothing compatible), but I installed it anyway on my Buster 
system -- no luck: ~"No scanner found".

The system with Buster also has Windows 8 (or Vista? -- I forget which) on it, 
I'll boot into that and see if it works there.



Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread Mikhail Morfikov
On 06/03/2020 18:42, deloptes wrote:
> Just check the configuration in /etc/initramfs-tools/
No, there's nothing useful for me there, so it has to be in 
some other place, hmm...




signature.asc
Description: OpenPGP digital signature


Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread tomas
On Fri, Mar 06, 2020 at 12:51:04PM -0500, rhkra...@gmail.com wrote:
> On Friday, March 06, 2020 12:29:56 PM Brian wrote:
> > On Fri, Mar 06, 2020 at 12:17:23PM -0500, rhkra...@gmail.com wrote:
> > > Is there a simple program to use a scanner (CanoScan LIDE 700F) on any of
> > > Wheezy, Jessie, or Buster?  It needs to have the ability to crop an
> > > image.
> > 
> > xsane or simple-scan.
> > 
> > > I dread the idea of trying to set it up in CUPS, in fact, iirc, last time
> > > I tried it in CUPS (which was quite a while ago (5 years? longer?)), I
> > > could not find a driver (either there was no driver, or maybe there was
> > > a "maybe" driver (a driver that might work for several different
> > > scanners, but did not work for me -- that was probably under Wheezy)). 
> > > (If CUPS is the only possibility, I probably won't even try, partly
> > > because I'm in something of a hurry.)
> > 
> > CUPS hasn't anything to do with scanning.
> 
> Thanks for the reply!
> 
> Yes, you're right (of course).  It must have been SANE that I tried all those 
> years ago.  Someone else suggested SANE + XSANE and suggested a page where I 
> could check for a driver (h-node) (or compatibility):
> 
> https://h-node.org/scanners/catalogue/en/1/1/Canon-
> Inc./undef/undef/undef/compatibility/undef
> 
> I checked / searched there -- no listing for the CanoScan LIDE 700F or 
> anything close to it (I tried a variety of search terms).  (A few CanoScans, 
> but nothing that looked close to the LIDE 700F (based on model numbers).)

According to this [1] man page, the sane-genesys backend supports your
model. No first-hand experience, though...

> I'll look into simple-scan.

Simple-scan is also based on libsane (as Xsane is). It also depends
on all those "desktop goodies" as dbus-session, xdg-utils, gsettings
and friends, which you might like -- or not. So it may be called
"simple" but Xsane is definitely simpler -- although most definitely
not as shiny.

Cheers
[1] http://sane-project.org/man/sane-genesys.5.html

-- t


signature.asc
Description: Digital signature


Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread rhkramer
On Friday, March 06, 2020 12:29:56 PM Brian wrote:
> On Fri, Mar 06, 2020 at 12:17:23PM -0500, rhkra...@gmail.com wrote:
> > Is there a simple program to use a scanner (CanoScan LIDE 700F) on any of
> > Wheezy, Jessie, or Buster?  It needs to have the ability to crop an
> > image.
> 
> xsane or simple-scan.
> 
> > I dread the idea of trying to set it up in CUPS, in fact, iirc, last time
> > I tried it in CUPS (which was quite a while ago (5 years? longer?)), I
> > could not find a driver (either there was no driver, or maybe there was
> > a "maybe" driver (a driver that might work for several different
> > scanners, but did not work for me -- that was probably under Wheezy)). 
> > (If CUPS is the only possibility, I probably won't even try, partly
> > because I'm in something of a hurry.)
> 
> CUPS hasn't anything to do with scanning.

Thanks for the reply!

Yes, you're right (of course).  It must have been SANE that I tried all those 
years ago.  Someone else suggested SANE + XSANE and suggested a page where I 
could check for a driver (h-node) (or compatibility):

https://h-node.org/scanners/catalogue/en/1/1/Canon-
Inc./undef/undef/undef/compatibility/undef

I checked / searched there -- no listing for the CanoScan LIDE 700F or 
anything close to it (I tried a variety of search terms).  (A few CanoScans, 
but nothing that looked close to the LIDE 700F (based on model numbers).)

I'll look into simple-scan.



Re: Debian et COSMO COMMUNICATOR

2020-03-06 Thread ajh-valmer
On Thursday 05 March 2020 16:22:43 kaliderus wrote:
> Je suis en train de regarder le COSMO COMMUNICATOR
> Le lien : https://store.planetcom.co.uk/products/cosmo-communicator
> Par chance, est-ce que certains d'entres vous l'on testé, avec Debian
> bien évidemment ?
> Pour aller plus loin, mon investigation est plus relative au support
> des différents composants...

www.begeek.fr/cosmo-communicator-un-smartphone-qui-demarre-sous-android-ou-linux-337612

Désolé, je réponds pas à question et en pose une :
800€ quand même, dualboot Linux/Android,
clavier à touches (mais que QWERTY semble t-il,
AZERTY possible ?)
Ou savoir ses dimensions ?

En tout cas, une nouveauté intéressante,
système à clapet ouvrant que j'ai toujours apprécié,
clavier + écran séparés.
Moins de risque de rayer l'écran et plus de confort.



Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread deloptes
Mikhail Morfikov wrote:

> No, I'm using my own kernel and not the Debian's one, but I didn't have
> to build the firmware into the kernel image before (in the case of the
> old WiFi card and old laptop). Now after I moved in to the new laptop
> I have to, and I don't know why.
> 
> I just checked, and it looks like the usr/lib/firmware/ dir is included
> in the stock Debian kernel's initrd image, but it's not in mine kernel's
> initrd. That's weird because I generate the images via
> *update-initramfs -u -k all* all the time. So why does one have this dir
> included and the other not? I think when I find out what's going on here
> I will solve this riddle. I bet something is missing in the kernel config.

Just check the configuration in /etc/initramfs-tools/

but yes, if you solve this, you will most probably not have to build the
driver in the kernel

regards



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread Brian
On Fri, Mar 06, 2020 at 12:17:23PM -0500, rhkra...@gmail.com wrote:
> Is there a simple program to use a scanner (CanoScan LIDE 700F) on any of 
> Wheezy, Jessie, or Buster?  It needs to have the ability to crop an image.

xsane or simple-scan.
 
> I dread the idea of trying to set it up in CUPS, in fact, iirc, last time I 
> tried it in CUPS (which was quite a while ago (5 years? longer?)), I could 
> not 
> find a driver (either there was no driver, or maybe there was a "maybe" 
> driver 
> (a driver that might work for several different scanners, but did not work 
> for 
> me -- that was probably under Wheezy)).  (If CUPS is the only possibility, I 
> probably won't even try, partly because I'm in something of a hurry.)

CUPS hasn't anything to do with scanning.

-- 
Brian.



Re: Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread tomas
On Fri, Mar 06, 2020 at 12:17:23PM -0500, rhkra...@gmail.com wrote:
> Is there a simple program to use a scanner (CanoScan LIDE 700F) on any of 
> Wheezy, Jessie, or Buster?  It needs to have the ability to crop an image.
[...]

Xsane.

Cheers
-- t


signature.asc
Description: Digital signature


Simple software for a scanner with ability to crop (CanoScan LIDE 700F)

2020-03-06 Thread rhkramer
Is there a simple program to use a scanner (CanoScan LIDE 700F) on any of 
Wheezy, Jessie, or Buster?  It needs to have the ability to crop an image.

I dread the idea of trying to set it up in CUPS, in fact, iirc, last time I 
tried it in CUPS (which was quite a while ago (5 years? longer?)), I could not 
find a driver (either there was no driver, or maybe there was a "maybe" driver 
(a driver that might work for several different scanners, but did not work for 
me -- that was probably under Wheezy)).  (If CUPS is the only possibility, I 
probably won't even try, partly because I'm in something of a hurry.)

Background: I'm trying to do taxes for a few of my friends using H Block's 
free online software (they qualify, as all their income is due to wages).  The 
online software has the ability to automatically read (i.e., OCR) W2s from a 
picture.  It is inconvenient for me to take the pictures for various reasons 
(among them, my camera does not have an interface (USB or anything else) to 
connect to a computer, I have to take the pictures, save them to an SD card, 
then move them to the computer, and somewhere in the process, crop them so 
they have a minimal border on all sides, another is setting up the camera on a 
tripod and aimed at a suitable dark background and held flat).

The feature in the H Block software is named "Snap-a-pic W-2 capture", and 
I'm not 100% sure it will work with an image from a scanner, but it seems 
worth a try -- it would be much easier in many ways.

At least one of my friends is anxious to get her tax refund (I'm sure they all 
are, but she is most anxious).

Suggestions?



Re: Resolu: éclairages sur partage réseau vis debian via un smartphone.

2020-03-06 Thread contact
Je vais m'orienter vers cette option du Tethering, dès que j’aurai fait 
des essais fonctionnel je ferai un bilan.


Merci

François-Marie BILLARD
Le 05/03/2020 à 11:39, herve a écrit :


Le 05/03/2020 à 09:34, didier gaumet a écrit :

Le 05/03/2020 à 09:06, contact a écrit :

Bonjour

Merci à tous, cela confirme  ce que je pensais, il n'est pas possible
d'utiliser le smatphone comme passerelle.

Dommage

François-Marie BILLARD

Si, si, c'est possible :-)
Je ne me souviens pas l'avoir fait en wifi (mais c'est possible aussi):
j'ai raccordé directement le smartphone en USB à mon laptop, activé le
partage de connexion dans Android et dans NetworkManager je me suis
retrouvé connecté automatiquement à internet comme si c'était une
connexion ethernet

Plus de détails dans le wiki Debian en français sur les différentes
méthodes de tethering avec Android:
https://wiki.debian.org/fr/Android_Tethering
(sous iOS je suppose que la seule différence doit résider dans le nom de
l'option à activer sur l'iPhone)

On peut le faire avec le bluetooth serveur smartphone mode point 
d'accès bluetooth.






Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread Mikhail Morfikov
On 06/03/2020 16:49, deloptes wrote:
> I think if the intel driver is not compiled in the kernel, you do not
> have to compile the firmware.
> 
> So what you are actually saying, that when you have the stock kernel
> and load the intel driver, it does not pick up the firmware?
> 
> Can you confirm this?
No, I'm using my own kernel and not the Debian's one, but I didn't have 
to build the firmware into the kernel image before (in the case of the 
old WiFi card and old laptop). Now after I moved in to the new laptop 
I have to, and I don't know why. 

I just checked, and it looks like the usr/lib/firmware/ dir is included 
in the stock Debian kernel's initrd image, but it's not in mine kernel's 
initrd. That's weird because I generate the images via 
*update-initramfs -u -k all* all the time. So why does one have this dir 
included and the other not? I think when I find out what's going on here 
I will solve this riddle. I bet something is missing in the kernel config.



signature.asc
Description: OpenPGP digital signature


Global Smart Hands Services

2020-03-06 Thread nickythomas
Our highly trained, certified and experienced engineers provide onsite
assistance for remote management, custom installations, and device
troubleshooting.

You can access the engineers globally and extend your reach by offering
global services to your clients. That's why it is critical for businesses to
have global smart hand services.


To Know More Visit Site -  global smart hands
  



--
Sent from: http://debian.2.n7.nabble.com/Debian-User-f2135253.html



Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread deloptes
Mikhail Morfikov wrote:

> I'm just asking because I had a BCM WiFi card in my previous laptop and
> that card needed firmware-brcm80211 . Now I have a new laptop, and it
> has an Intel WiFi, which needs firmware-iwlwifi . I have the same setup
> (LUKSv2+LVM), and the exact same system (it was moved to the new laptop),
> and in the case of the Intel WiFi I have to compile the firmware into
> the kernel using the following kernel options:
> 
> CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
> CONFIG_EXTRA_FIRMWARE="iwlwifi-6000g2a-6.ucode"
> 
> So the question I'm asking myself is why weren't the options needed in
> the case of my old WiFi card? It also wanted its firmware but it looks
> like it could be loaded after the system partition was decrypted. So
> it's weird...

I think if the intel driver is not compiled in the kernel, you do not have
to compile the firmware.

So what you are actually saying, that when you have the stock kernel and
load the intel driver, it does not pick up the firmware?

Can you confirm this?



Re: Is there a way to load/unload a firmware manually?

2020-03-06 Thread Mikhail Morfikov
On 06/03/2020 07:50, deloptes wrote:
> So if you compile the driver static in the kernel I am not sure 100%
> but it should have the firmware already somewhere to be loaded. This
> is interesting question. I think most of the usecases include using
> initrd that would have driver and firmware.

I'm just asking because I had a BCM WiFi card in my previous laptop and 
that card needed firmware-brcm80211 . Now I have a new laptop, and it 
has an Intel WiFi, which needs firmware-iwlwifi . I have the same setup 
(LUKSv2+LVM), and the exact same system (it was moved to the new laptop), 
and in the case of the Intel WiFi I have to compile the firmware into 
the kernel using the following kernel options:

CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
CONFIG_EXTRA_FIRMWARE="iwlwifi-6000g2a-6.ucode"

So the question I'm asking myself is why weren't the options needed in 
the case of my old WiFi card? It also wanted its firmware but it looks
like it could be loaded after the system partition was decrypted. So 
it's weird...
 



signature.asc
Description: OpenPGP digital signature


Re: HPLIP - upgrade to 3.20.0 and can no longer print.

2020-03-06 Thread Brad Rogers
On Fri, 6 Mar 2020 13:01:39 - (UTC)
Curt  wrote:

Hello Curt,

>https://bugs.archlinux.org/task/65697
>The above might be related (Andreas thinks so anyway).

Certainly bears a striking similarity.  I'll add the info to the Debian
bug report.

Thanks for the info, Curt.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"
This disease is catching
Into The Valley - Skids


pgp7KLZjtot31.pgp
Description: OpenPGP digital signature


Re: now gmail rant

2020-03-06 Thread Greg Wooledge
On Fri, Mar 06, 2020 at 10:36:48AM +, Liam O'Toole wrote:
> Mutt displays the date and time of your email as "Fri, 6 Mar 2020
> 14:24:47 +1100", and that is reflected in the attribution string above.
> So the information is conveyed in some email header or other.

Specifically, the one named "Date:".

Of course, humans aren't always adept and translating local times
between different time zones in their heads while reading through
a bunch of email.  Someone who just glances at "14:24:47" and overlooks
the "+1100" part might think "Oh, it was sent at two-thirty in the
afternoon..." and not realize that two-thirty in the sender's time
zone is substantially different from two-thirty in the reader's time
zone.



Re: cannot view Trash? now gmail rant

2020-03-06 Thread rhkramer
On Thursday, March 05, 2020 11:29:00 PM mick crane wrote:
> gmail seems to respond to getmail request to delete fetched email by
> changing the tag so that it doesn't show in Inbox or Bin but is still in
> Allmail.

Interesting -- I guess I forgot that in this discussion we have to distinguish 
between the behavior in a browser viewing the gmail page, vs. behavior in a 
"real" email client (e.g., kmail, ...)

I'm pretty sure Mick is talking about the behavior in gmail in a browser, and 
I suspect that the reason he still sees the email in "all mail" is because he 
is seeing the "sent" version (rather than a received copy) (but I'm not 
positive about that).



Re: now gmail rant

2020-03-06 Thread Greg Wooledge
> > https://www.bbc.com/news/world-europe-51467536
> > 
> > I think that's the German *BND* Federal Intelligence Service (at least
> > according to the BBC).

> I've heard from some intelligent services - they do not use any electronic
> devices and after those news I know why.
> 
> Same for the naive using proton mail or whatever. The best way to protect
> whatever you want to protect is to keep it offline.

My policy on email is simple: I assume that everyone in the world
can read it, if they truly want to take the time and spend the resources
to do so.  If I don't want a secret to get out, I don't send it via
email.  Doesn't matter who the recipient is, what "security" arrangements
are in place, etc.

Now, that's just me, and does not reflect the policies of my workplace,
etc.



Re: HPLIP - upgrade to 3.20.0 and can no longer print.

2020-03-06 Thread Curt
On 2020-03-06, Brad Rogers  wrote:
>
>>I'm on Arch and since the upgrade of hplip to 3.20.2 I was unable to
>>print. My MFP 377dw spit out multiple pages - some blank, some showing a
>>line or two of gibberish - when trying to print something.

> Different symptoms from the one I experience (nothing printed at all),
> but possibly an indication that it's not "just me".

https://bugs.archlinux.org/task/65697

The above might be related (Andreas thinks so anyway).

> Thanks for the info.

>>Downgrading to 3.19.12 fixed that for me.
>
> Likewise.  Cheers, Markus.
>


-- 
"J'ai pour me guérir du jugement des autres toute la distance qui me sépare de
moi." Antonin Artaud




Managed Switch Services

2020-03-06 Thread nickythomas
Switch Services address the importance of LAN reliability while also growing
your unified communication solutions. In this day and age, it’s vital that
you are able to meet the complex demands of your business and this can all
be done through a managed switch solution. We are able to provide you with
key features as well, which can be completely tailored to your needs and
requirements.

To Know More Visit Site -  managed switch services
  



--
Sent from: http://debian.2.n7.nabble.com/Debian-User-f2135253.html



Re: now gmail rant

2020-03-06 Thread deloptes
Curt wrote:

> Oh yeah.
> 
> https://www.bbc.com/news/world-europe-51467536
> 
> I think that's the German *BND* Federal Intelligence Service (at least
> according to the BBC).

yes this is it. so people (governments, etc.) were believing they do
encrypted stuff w/o being spied and the deliverying company was a swiss
one.

I've heard from some intelligent services - they do not use any electronic
devices and after those news I know why.

Same for the naive using proton mail or whatever. The best way to protect
whatever you want to protect is to keep it offline.

its just my opinion



Re: HPLIP - upgrade to 3.20.0 and can no longer print.

2020-03-06 Thread Brad Rogers
On Fri, 6 Mar 2020 10:33:56 +0100
Markus Schönhaber  wrote:

Hello Markus,

>There might be an upstream issue with hplip 3.20.

At the time I searched, I saw no mention of problems.  That was several
days ago now, and I confess to not having searched again since.

>I'm on Arch and since the upgrade of hplip to 3.20.2 I was unable to
>print. My MFP 377dw spit out multiple pages - some blank, some showing a
>line or two of gibberish - when trying to print something.

Different symptoms from the one I experience (nothing printed at all),
but possibly an indication that it's not "just me".

Thanks for the info.

>Downgrading to 3.19.12 fixed that for me.

Likewise.  Cheers, Markus.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"
No you can't hop into my shower
Leave Me Alone (I'm Lonely) - P!nk


pgpwXlExVnE8V.pgp
Description: OpenPGP digital signature


Re: now gmail rant

2020-03-06 Thread Liam O'Toole
On Fri, 06 Mar, 2020 at 14:24:47 +1100, Keith Bainbridge wrote:

[...]

> 
> Interesting that I have 3 responses to the original post.Perhaps we have
> a time zone issue?   Like when I was flamed at 06:00 the morning after, for
> not responding to a post I sent at 21:00. We sometimes need a way of knowing
> the the poster maybe sleeping while many are awake. But then would you
> believe that I posted at 21:00 today, when you read it at 6:00 today. Put
> that into context, my current time is Fri06Mar2020@14:23:53  Many of you
> will read it on Thursday evening?

Mutt displays the date and time of your email as "Fri, 6 Mar 2020
14:24:47 +1100", and that is reflected in the attribution string above.
So the information is conveyed in some email header or other.



Re: HPLIP - upgrade to 3.20.0 and can no longer print.

2020-03-06 Thread Markus Schönhaber
04.03.20, 14:44 CET Brad Rogers:

> Is anybody else having issues with hplip 3.20.0?

There might be an upstream issue with hplip 3.20.
I'm on Arch and since the upgrade of hplip to 3.20.2 I was unable to
print. My MFP 377dw spit out multiple pages - some blank, some showing a
line or two of gibberish - when trying to print something.
Downgrading to 3.19.12 fixed that for me.

-- 
Regards
  mks



Re: now gmail rant

2020-03-06 Thread Curt
On 2020-03-06, deloptes  wrote:
> ghe wrote:
>
>> Free (lower tier -- $4 a month next step up). Open sourcing their code.
>> Significant security features -- end to end encryption, etc.). Great user
>> support. In Switzerland, far away from crackers and the NSA...
>
> This is a joke as recently was publish that a swiss based company was
> deliverying the encryption hardware for years to many NATO members where
> they had a back door built in to spy on them. This swiss based company was
> (partially) owned by NSA and the German BNR.
>
> You don't trust anybody out there - this is the rule.
>

Oh yeah.

https://www.bbc.com/news/world-europe-51467536

I think that's the German *BND* Federal Intelligence Service (at least
according to the BBC).



-- 
"J'ai pour me guérir du jugement des autres toute la distance qui me sépare de
moi." Antonin Artaud