Re: SANE default scanner

2020-07-27 Thread Nicolas George
Nicolas George (12020-07-27): > Well, in between explaining why all the answers I got do not match the > question, I RTFS, and it seems indeed it is not possible with SANE. What > stupid design. > > As for the hpaio backend, it relies on CUPS to find networked print

Re: SANE default scanner

2020-07-27 Thread Nicolas George
Siard (12020-07-27): > It looks simple to me, or am I missing something? Does it add the scanner in Gimp's scanner menu? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
Brian (12020-07-27): > Ok, libsane-hpaio requires libcups.so.2. That's nowhere near requiring > CUPS, in particular cups-daemon. The printing system is not involved > with scanning. This is the last time I grace you with a reply. As I have told you twice now, unlike you, I have read the source

Re: SANE default scanner

2020-07-27 Thread Nicolas George
Brian (12020-07-27): > libsane-hpaio needs CUPS to deal with scanners? Imagination is a great > asset. Sometimes! If you do not believe me, just RTFS or use ldd and nm to check. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
rds, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
networked scanners by querying CUPS for networked printers. But I do not want CUPS running. This is not a bug, just a completely idiotic design. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
g why all the answers I got do not match the question, I RTFS, and it seems indeed it is not possible with SANE. What stupid design. As for the hpaio backend, it relies on CUPS to find networked printers, but CUPS will not be always running. What stupid design. Regards, -- Nicolas G

Re: SANE default scanner

2020-07-27 Thread Nicolas George
nothing like the provided examples: 192.168.0.15 ::1 localhost scan-server.office.lan net.conf is for scanner shared with SANE's protocol. Notice the "hpaio:" fake URL protocol. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
There is no bug to debug, this is useless. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
crap from HP. After all, the scanner works, my problem is only a UI problem. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
sented to the users in GUI dialogs. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
etime you > must add your own into this lib. Thanks, but that is for USB, I am asking for network. To summarize: I want to tell SANE URLs for network-connected scanners so that they can be presented to the users in GUI dialogs. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
very bad taste for xsane to somehow scan my whole network just in case a scanner happens to be there.) Regards, -- Nicolas George signature.asc Description: PGP signature

Re: SANE default scanner

2020-07-27 Thread Nicolas George
work: for GUI tools, this environment variable pre-selects the device in the device selection dialog, but it does not make it appear if it is not detected (?!???@!%@?!!!?). Also, it works for only one scanner. Regards, -- Nicolas George signature.asc Description: PGP signature

SANE default scanner

2020-07-27 Thread Nicolas George
tell them each time? Thanks. -- Nicolas George signature.asc Description: PGP signature

Re : [HS] Code javascript

2020-07-23 Thread nicolas . patrois
ntre 1 et 12, un tiret et un nombre entre 01 et 31. Il doit bien y avoir de quoi convertir une chaîne en nombre. Enfin, tu peux regarder si ta date est correcte avec des listes et une fonction qui vérifie si l’année est bien bissextile. nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu

Re : Impossible d’utiliser update-initramfs

2020-07-18 Thread nicolas . patrois
Bonjour à tous, Après étude de la sortie de pstree -l, il se trouve que mdadm faisait de la bouse. Je l’ai viré (je n’utilise pas de RAID) et ça semble reparti. Je reconstruis les divers initramfs (y compris de vieux noyaux au cas où) et ça semble reparti. Merci à vous, nicolas patrois : pts

Impossible d’utiliser update-initramfs

2020-07-18 Thread nicolas . patrois
, update-initramfs s’arrête et ne fait plus rien. Impossible de le tuer avec Ctrl-C, je dois tuer apt* avec SIGKILL et éventuellement nettoyer les verrous. nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plus

tmpfs is not a ramdisk (was: delimiters with more than one character? ...)

2020-07-17 Thread Nicolas George
pear you want. If all you want is not to have to worry about cleaning up, then you are good with tmpfs. If you are worried that sensitive data may end up on disk, then encrypt your swap with an ephemeral key. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: delimiters with more than one character? ...

2020-07-17 Thread Nicolas George
Zenaan Harkness (12020-07-17): > And mount /tmp as ramdisk ftw. tmpfs is not a ramdisk. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: delimiters with more than one character?

2020-07-16 Thread Nicolas George
ot;; > $s.put'; > 34 + 45 | abc | 1 2 3 | c|123abc Observe your output carefully. You'll notice that the string you defined does not actually contain any backslash. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: delimiters with more than one character? ...

2020-07-15 Thread Nicolas George
Bob Weber (12020-07-15): > which replaces \| with a single character which is known not to be in > the input data For the third time, and on top of what other people have told you: THERE ARE NO CHARACTERS KNOWN NOT TO BE IN THE INPUT. Regards, -- Nicolas George signature.asc Descr

Re: delimiters with more than one character? ...

2020-07-15 Thread Nicolas George
in all cases. Regards, -- Nicolas George

Re: delimiters with more than one character? ...

2020-07-14 Thread Nicolas George
you considered that pipes without backslashes are not supposed to be separators? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: delimiters with more than one character? ...

2020-07-14 Thread Nicolas George
t easily: $ a="abcxydefxyghi"; echo ${(s:xy:)a} abc def ghi I leave as an exercise the task of properly escaping backslash and pipe if necessary. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: delimiters with more than one character? ...

2020-07-14 Thread Nicolas George
bash away and write the entire program > in perl instead. I concur. And I would advise against using the features of perl that makes it automatically behave somewhat like awk or others, with implicit parameters and the like. Better write what you mean explicitly and readably. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How To Permanently Add-to a Users PATH Statement in the Bash Shell

2020-07-07 Thread Nicolas George
Jonathan Dowland (12020-07-07): > Not in the default PATH either. No, but probably one of the first things anybody who has non-elementary use will have configured anyway. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How To Permanently Add-to a Users PATH Statement in the Bash Shell

2020-07-07 Thread Nicolas George
ferred in these cases) Regards, -- Nicolas George signature.asc Description: PGP signature

Re: how to stop reboot from delete'n directory

2020-07-01 Thread Nicolas George
d unit would be overkill, rc.local is fine). https://manpages.debian.org/stretch/systemd/tmpfiles.d.5.en.html tmpfiles.d - Configuration for creation, deletion and cleaning of volatile and temporary files Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Support for AMD Ryzen 3 3200U

2020-06-27 Thread Nicolas George
computer, to avoid wasting time and shipping costs if it does not work. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Support for AMD Ryzen 3 3200U

2020-06-27 Thread Nicolas George
ebian" unless it has been introduced within the last 6 months. My rule of thumb for when to stop asking "will this work" is: when the information is easily found on the web. With the counterpart: if I have the info, I try to remember to make it available. Regards, -- Nicolas

Re: Echo on Realtek ALC662 soundcard

2020-06-27 Thread Nicolas George
Seeds Notoneofmy (12020-06-27): > I'm only trying to bump this! For a message like that, bumping once after 5-7 days would have been reasonable, I think. Regards, -- Nicolas George signature.asc Description: PGP signature

Support for AMD Ryzen 3 3200U

2020-06-27 Thread Nicolas George
for this specific computer? Thanks. -- Nicolas George signature.asc Description: PGP signature

Re: Sound in Jitsi/BBB [was: dvice on encrypted filesystem]

2020-06-25 Thread Nicolas George
wser to produce sound!). The microphone is the issue. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Advice on encrypted filesystem

2020-06-25 Thread Nicolas George
urces.list to add its own repository, which is even worse, but better use the generic tarball as a separate user. Anyway, I never used Zoom, but with Jitsi and Big Blue Button, I had no sound either with Firefox, but it worked with Chromium. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jupyter

2020-06-25 Thread Nicolas FRANCOIS
parce que je ne savais même pas qu'on pouvait lancer une commande systemctl en tant que simple utilisateur... On en apprend tous les jours ! Merci pour ta persévérance :-) \bye -- Nicolas FRANCOIS | /\ http://nicolas.francois.free.fr | |__|

Re: Jupyter

2020-06-24 Thread Nicolas FRANCOIS
merci. Et désolé pour la direction incorrecte, comme je le signale dans la mailing liste anglophone, j'ai réglé mon client Claws pour que les messages envoyés quand je suis dans ce dossier soient dirigés vers la liste francophone... sauf que j'ai du me gourancer qu

Re: Jupyter

2020-06-24 Thread Nicolas FRANCOIS
\bye -- Nicolas FRANCOIS | /\ http://nicolas.francois.free.fr | |__| X--/\\ We are the Micro$oft. _\_V Resistance is futile. You will be assimilated. darthvader penguin pgpUNQ2hVYdVD.pgp Descr

Jupyter

2020-06-24 Thread Nicolas FRANCOIS
? D'avance merci pour toute explication :-) \bye -- Nicolas FRANCOIS | /\ http://nicolas.francois.free.fr | |__| X--/\\ We are the Micro$oft. _\_V Resistance is futile. You will be assimilated

Re: [debian-reference manual] bullet point sign and its content misplaced

2020-06-23 Thread Nicolas George
the slash at the end. That could be better written: 10.1.7. Removable storage device though. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Reply semantics, yet again (was Re: Zoom- best practice?)

2020-06-11 Thread Nicolas George
t five years, a few security-relevant bugs have been fixed in FFmpeg. People, take notice: this is one of the reasons we insist on proper packaging and being able to rebuild from source entirely: to allow security upgrades for the included libraries. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: [OT] How to help the OP? (was: How long will this take?)

2020-06-11 Thread Nicolas George
You could have made your statement more explicit. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: [OT] How to help the OP? (was: How long will this take?)

2020-06-10 Thread Nicolas George
Michael Stone (12020-06-10): > It helps create a positive community. Constantly attacking people because > you think they're in some way wrong does not. Yes. That is true. What is the link with the current sub-discussion? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: [OT] How to help the OP? (was: How long will this take?)

2020-06-10 Thread Nicolas George
Michael Stone (12020-06-10): > Interacting in a polite fashion shouldn't require a paycheck. What does politeness have to do with it? We can very politely explain to somebody that their question makes no sense. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: [OT] How to help the OP? (was: How long will this take?)

2020-06-10 Thread Nicolas George
perspective and challenge it? I > know it can be frustrating because this is not always the answer we as OP > want to read but it can be really instructive as we understand we were on a > wrong track. There is no dilemma at all: we are not paid help-desk technicians. Regards, -- Nicolas G

Re: How long will this take?

2020-06-10 Thread Nicolas George
n your own private security theater. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-10 Thread Nicolas George
cenarios. Did you wipe the possible traces of cocaine? Did you weight it to check it matches the specs? Did you take pictures of all angles? All these and many others are trivial. Why one but not the others? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-10 Thread Nicolas George
s' point. Tomas's point is "give the benefit of the doubt", but at this point there is not much doubt left. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-10 Thread Nicolas George
A better solution is to use a better program > to read mail. You mean I should use Mutt, like you? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-10 Thread Nicolas George
l under the mat. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-09 Thread Nicolas George
ess is much slower than sequential access. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-09 Thread Nicolas George
it rather than > sequential searches. Or is binary already used now? To search what? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-09 Thread Nicolas George
L license header slapped on top of it: should we consider it Libre Software? Of course not. The same happens here: out of negligence probably, the authors keep part of the source code for themselves. It is not Libre Software. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-09 Thread Nicolas George
how fake news spread, btw. > > I think it's somewhat disgusting. Folks, put up... or shut up now. Your attempt at irrational shaming is dishonest. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-09 Thread Nicolas George
g for three days? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-08 Thread Nicolas George
and 2 to the tty. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How long will this take?

2020-06-08 Thread Nicolas George
read /proc/$(pidof dd)/fdinfo, it contains the information too. Note that it becomes much slower as it nears the center of the disk. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi can be built

2020-06-08 Thread Nicolas George
ething explaining how they did? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-07 Thread Nicolas George
code, it is a matter of being able to change it to suit our needs, to fix it if there are bugs, to include parts into other projects. If all of this is not possible, it is a dead-end project, a waste of energy, only marginally better than closed-source surveillanceware. Regards, -- Nicolas G

Re: Zoom- best practice?

2020-06-07 Thread Nicolas George
dge, for most packages, any user can rebuild them from source and it works, Debian makes a lot of effort for that. Can you say the same for these repositories? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-07 Thread Nicolas George
bigbluebutton.org/2.2/install.html Installing from a binary repository: yes, that works. But that's not Libre Software. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-07 Thread Nicolas George
rce at best. We have to acknowledge: there are no Libre Software solutions for videoconferencing. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Zoom- best practice?

2020-06-07 Thread Nicolas George
to...@tuxteam.de (12020-06-07): > Yes, the server is free software. As is Jitsi's. So you can get the > source, build yourself or download pre-built thingies. Do you have evidence of somebody other than the authors themselves having managed to build it? Regards, -- Nicolas

Re : Debian pour des navigations bateau ?

2020-05-27 Thread nicolas . patrois
bian.org/search?keywords=zygrib https://www.zygrib.org/ nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plus gros ? P : Non... Une carte bleue suffirait...

Re: Changing timestamps in video files

2020-05-19 Thread Nicolas George
Note that I was not criticizing Cindy. Speculating and reminiscing are essential activities for Libre Software users. I was rather mocking the OP, who comes and ask a question, and then disappears mysteriously. What was the point, really? Regards, -- Nicolas George signature.asc Desc

Re: Changing timestamps in video files

2020-05-19 Thread Nicolas George
Tixy (12020-05-19): > Try reading the email Cindy was replying to. I already did: technical points, speculating around what the OP actually wanted. -- Nicolas George signature.asc Description: PGP signature

Re: Changing timestamps in video files

2020-05-19 Thread Nicolas George
Cindy Sue Causey (12020-05-19): Funny thing: three weeks later, still speculating what the original question was about, without any input from the person who asked it. Regards, -- Nicolas George signature.asc Description: PGP signature

Re : plantages Xorg

2020-05-19 Thread nicolas . patrois
eux-tu t’y connecter via ssh ou non ? nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plus gros ? P : Non... Une carte bleue suffirait...

Re : Re : [HS] Repérage depuis un site Web

2020-05-16 Thread nicolas . patrois
as maximisée. Il suffit de recouper System Fonts avec la définition de l’écran, le système d’exploitation, la langue et tu as déjà bien cerné la machine. nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plu

Re: How could you load only once a Linux ultility without a batch --input-files kind of option and repeatedly use it on many files? . . .

2020-05-16 Thread Nicolas George
relevant answer. And if it does not happen, you can still reply a few hours later. Let us not behave like schoolchildren. The first to answer will not get an image. Regards, -- Nicolas George signature.asc Description: PGP signature

Re : [HS] Repérage depuis un site Web

2020-05-16 Thread nicolas . patrois
Le 16/05/2020 09:24:15, JC.EtiembleG a écrit : > Il suffit de naviguer non pas en "plein écran" mais dans une dimension > plus petite et non standard;) Au contraire, c’est le meilleur moyen de te retrouver si les dimensions sont exotiques. nicolas patrois : pts noir asocial

Re : [HS] Repérage depuis un site Web

2020-05-15 Thread nicolas . patrois
tion… https://panopticlick.eff.org/ nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plus gros ? P : Non... Une carte bleue suffirait...

Re: How could you load only once a Linux ultility without a batch --input-files kind of option and repeatedly use it on many files? . . .

2020-05-15 Thread Nicolas George
rns in shell globs or regexes), so there was > value in Dan providing that too. There was value, but not as an answer to the question. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How could you load only once a Linux ultility without a batch --input-files kind of option and repeatedly use it on many files? . . .

2020-05-14 Thread Nicolas George
ll probably be my last mail on this. -- Nicolas George signature.asc Description: PGP signature

Substance and form (was: How could you load only once a Linux ultility without a batch) --input-files kind of option and repeatedly use it on many files? . . .

2020-05-14 Thread Nicolas George
hese days. “I was wrong, but I'll use the tone of you message to not admit it.” -- Nicolas George signature.asc Description: PGP signature

Re: How could you load only once a Linux ultility without a batch --input-files kind of option and repeatedly use it on many files? . . .

2020-05-14 Thread Nicolas George
ion indicates that Albretch has that covered. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: How could you load only once a Linux ultility without a batch --input-files kind of option and repeatedly use it on many files? . . .

2020-05-14 Thread Nicolas George
Albretch Mueller (12020-05-14): > The thing is that I have to call, say sha256sum, on millions of files > > Probably debian admin people dealing with packaging have to deal with > the same kinds of issues. http://man7.org/linux/man-pages/man1/xargs.1.html Regards, -- Ni

Re: Output from date command defaults to 12-hour in Buster.

2020-04-30 Thread Nicolas George
C setting. Which is exactly what I do, and I am very fine with it. And I can laugh by myself every time somebody comes complaining that the output of a command is ugly because it did not consider localization would break alignment, or that a script is broken because the matching of a regexp has been altered. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Mouse awfully slow on Debian 10 on certain machines

2020-04-29 Thread Nicolas George
egards, -- Nicolas George signature.asc Description: PGP signature

Re: Debian is testing Discourse

2020-04-29 Thread Nicolas George
e very strict. Indeed, modern protocols are stricter than old ones. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Output from date command defaults to 12-hour in Buster.

2020-04-29 Thread Nicolas George
ch "ça" and "fée". Do you? Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Output from date command defaults to 12-hour in Buster.

2020-04-29 Thread Nicolas George
to 2, it even takes effect on all new shells, no need to re-log. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Output from date command defaults to 12-hour in Buster.

2020-04-29 Thread Nicolas George
THING. If you want a system that works, set LC_CTYPE, and leave everything else alone. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi (was Re: Please help me find a good Debian compatible video card).

2020-04-28 Thread Nicolas George
dishonest, but the end result is the same. We cannot prevent these projects from existing, but at least we have to realise they are not part of the solution, they are part of the problem. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Changing timestamps in video files

2020-04-28 Thread Nicolas George
files, the most obvious are the presentation timestamps, that are used to set the speed of the video and synchronize with the audio, but the rest of your question does not seem compatible with that interpretation. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: mplayer can't play big file by mencoder

2020-04-28 Thread Nicolas George
by your target. If in doubt, use Matroska. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi (was Re: Please help me find a good Debian compatible video card).

2020-04-28 Thread Nicolas George
to...@tuxteam.de (12020-04-28): > Sigh. LMDDgIFY So, my take is that nobody here managed to install Jitsi from sources. That should tell you something. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi (was Re: Please help me find a good Debian compatible video card).

2020-04-27 Thread Nicolas George
unless you did, please do not act as if it was easy. -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi (was Re: Please help me find a good Debian compatible video card).

2020-04-27 Thread Nicolas George
Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Jitsi (was Re: Please help me find a good Debian compatible video card).

2020-04-27 Thread Nicolas George
t find. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: Missing Courier font

2020-04-27 Thread Nicolas George
n...@dismail.de (12020-04-27): > b) The texlive Courier fonts are the digitalised version released by > IBM themselves under some free font license How did you obtain that information? AFAICS, the Courier fonts in TeXlive are the Adobe and URW variants. signature.asc Description: PGP

Re: Missing Courier font

2020-04-27 Thread Nicolas George
tation, and Courier New is not less authentic than the others. Regards, -- Nicolas George signature.asc Description: PGP signature

Re : gdm background

2020-04-21 Thread nicolas . patrois
figurer à partir de gdm3 lui-même. J’ai réessayé gdm3 il n’y a pas un mois et il n'a pas été fichu de lancer correctement ma session de XFCE, contrairement à wdm. nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cer

Re : pourquoi mes réponses mettent-elles une demi-journée avant d'être publiées ?

2020-04-20 Thread nicolas . patrois
t; D'autre que moi font-ils face au même soucis ? Chez moi, tout va bien avec Balsa. Ça ramouille un peu mais en moins d’une minute, c’est bon. nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des humains ? Un cerveau plus gros ? P

Re : Plus de son sous Buster

2020-04-20 Thread nicolas . patrois
; L'expérience est probablement connue des joueurs de doom avec les > musiques en MIDI Tiens, je me disais justement que j’avais le son et la musique avec Doom (prboom-plus) en même temps que le reste avec pulseaudio. Je regarde le fichier de configuration et oh ! pas de timidity, c’est fluidsynth

[Résolu] Re: Plus de son sous Buster

2020-04-19 Thread Nicolas Hussein
Le dimanche 19 avril 2020 à 09:39 +0200, Nicolas Hussein a écrit : > Voici la situation rapidement : j'étais sous Debian 9 jusque là, la > mise à niveau vers Debian 10 hier s'est très mal passée, et je n'ai > vraiment pas eu d'autre choix que de réinstaller complètement Debian > 1

Plus de son sous Buster

2020-04-19 Thread Nicolas Hussein
fonctionne à peu près, SAUF que je n'ai plus du tout de son. J'ai vérifié la base : 1. Je suis bien dans le groupe "audio" nicolas@ordiNico:~$ groups nicolas cdrom floppy sudo audio dip video plugdev netdev lpadmin scanner 2. Les hauts-parleurs sont bien allumés (oui, on ne sait

Re : peut-on copier sauvagement le ~/.thunderbird d'un ordinateur à l'autre?

2020-04-16 Thread nicolas . patrois
; je n'ai plus la fenêtre habituelle, avec mes deux comptes email en > colonne de gauche. > Puis-je copier sauvagement (par un tar + scp) le repertoire > ~/.thunderbird/ du fixe vers le portable? Je dirais que oui puisque je copie sauvagement TOUT le disque dur sur un autre quand je

Re : carres noirs dans la barre de titre

2020-04-11 Thread nicolas . patrois
ut remarquer qu’on ne les voit que sur le y, le p, le g (lettres qui débordent en bas en minuscules) et le 1. Il doit y avoir un problème d’affichage de police de caractères. Et si tu changes la police ? nicolas patrois : pts noir asocial -- RÉALISME M : Qu'est-ce qu'il nous faudrait pour qu'on no

Re: flatpak and root access

2020-04-06 Thread Nicolas George
comes with all its libraries. That means if there is a security issue in that library, it needs to be upgraded. It will not benefit from the security upgrades of the system. Therefore, you have to rely the people who made the bundle to follow carefully on all security alerts for all bundled libraries.

<    2   3   4   5   6   7   8   9   10   11   >