Re: Grabadora

2018-08-04 Thread Maykel Franco
ok top posting

El dom., 5 ago. 2018 1:57, Luis Botica Ramos  escribió:

>
>
> Enviado desde mi iPhone
>
>


Re: Grabadora

2018-08-04 Thread Luis Botica Ramos



Enviado desde mi iPhone



Re: clavier asus sur un notebook Eee PC 1001PX (Seashell)

2018-08-04 Thread Frederic Zulian
Bjr,

Si ta question concerne la gestion des hotkeys ( fn + f1, )

C'est le paquet eepc-acpi-scripts.

A +
Frédéric ZULIAN


Le sam. 4 août 2018 21:41, Bernard Schoenacker 
a écrit :

> bonjour,
>
> j'ai du mal à configurer le clavier car j'ai les touches
> qui sont actives et par conséquent le altgr ne donne rien
> (exemple) ...
>
> pour l'instant j'utilise un clavier auxiliaire en usb
> mais ce n'est pas la bonne solution
>
> j'ai essayé de reconfigurer le clavier avec les
> instructions classiques mais rien n'y fait ...
>
>
> qui pourrais m'aiguiller ?
>
> merci
>
> slt
> bernard
>
>


Re: luks, crypttab: why 3 partition only 2 passphrases entered

2018-08-04 Thread Carles Pina i Estany


Hi,

On Aug/04/2018, David Christensen wrote:

> On 08/04/2018 02:54 PM, Carles Pina i Estany wrote:
> > And I'm now 99% sure that the culprit of all this confusion is...
> > plymouth! It has a password caching facility and systemd seems to use
> > it to get the cached password.
> 
> You seem to have found complexities above dm-crypt.  I know very little
> about systemd or the various desktop environments, so I'll wish you good
> luck in pursuing answers to your questions.

I've just confirmed it. In plymouth, file src/ply-boot-server.c, I've
added the ply_trace line:
ply_buffer_append_bytes (buffer,
 password,
 strlen (password) + 1);
ply_trace("Carles password: %s", password);

Then I can see in the Debug logs the previously entered passwords when systemd
requests them (which then systemd uses them to decypher the partition and add
the correct one in the Linux keyring, etc. etc.).

Thanks for all the help and checks,

-- 
Carles Pina i Estany
Web: http://pinux.info || Blog: http://pintant.cat
GPG Key 0x8CD5C157



Re: luks, crypttab: why 3 partition only 2 passphrases entered

2018-08-04 Thread David Christensen

On 08/04/2018 01:08 PM, Carles Pina i Estany wrote:

root@pinux:~# dmsetup info /dev/dm-*
Name:  m2_root_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:1
Event number:  0
Major, minor:  254, 0
Number of targets: 1
UUID: CRYPT-LUKS1-4e655198a11147b3985b4622af7a2b0f-m2_root_crypt

Name:  m2_swap_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:2
Event number:  0
Major, minor:  254, 1
Number of targets: 1
UUID: CRYPT-LUKS1-564856408a04403191d46f1620cc2c9e-m2_swap_crypt

Name:  ssd_dades_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:1
Event number:  0
Major, minor:  254, 2
Number of targets: 1
UUID: CRYPT-LUKS1-8d1d855d17a74cf2b29486172e407e35-ssd_dades_crypt

I can't see anything obviously wrong.


Okay.  It seems that you have three encrypted partitions, all set up 
correctly.




Since the last emails here I've kept investigating. Quick overview if someone 
is interested here (and let me know if it's something else!).
After booting keyctl has this:

root@pinux:~# keyctl show
Session Keyring
  479651357 --alswrv  0 65534  keyring: _uid_ses.0
  712333474 --alswrv  0 65534   \_ keyring: _uid.0
  711077095 --alswrv  0 0   \_ user: cryptsetup
root@pinux:~#

See the cryptsetup line. This is what would make systemd able to mount/umount 
without asking for the passphrase and I can just boot and do:
systemctl stop systemd-cryptsetup@ssd_dades_crypt.service
systemctl start systemd-cryptsetup@ssd_dades_crypt.service

if the cryptsetup line is still there (it last I think 2.5 minutes) systemd 
second line is mounting the partition without me entering the password.

But the initial passwords are entered to initrd /lib/cryptsetup/askpass and
using plymouth for the password "asking" backend (not systemd related) and
actually if I boot with init=/bin/bash or break=init I would have the two (root
and swap) partitions mounted but no "dades" partition mounted either anything
in keyctl show.

So still a mystery how this is added there: by who, etc.

Any clues (or "you missed this obvious thing" are very welcomed!


On 08/04/2018 02:54 PM, Carles Pina i Estany wrote:
> And I'm now 99% sure that the culprit of all this confusion is...
> plymouth! It has a password caching facility and systemd seems to use
> it to get the cached password.

You seem to have found complexities above dm-crypt.  I know very little 
about systemd or the various desktop environments, so I'll wish you good 
luck in pursuing answers to your questions.



You might try asking on the dm-crypt mailing list:

https://www.saout.de/mailman/listinfo/dm-crypt


David



Re: Simulateur réseau

2018-08-04 Thread Frederic Zulian
Oui,   c'est ici :

https://www.netacad.com/group/offerings/packet-tracer/


--
Frédéric ZULIAN



Le 4 août 2018 à 16:45, Marc V  a écrit :

>
>
> Envoyé de mon iPhone
>
> Le 4 août 2018 à 16:07, Frederic Zulian  a écrit :
>
> Bonjour,
>
> Je reformule ma demande pour être plus précis :
>
> Je cherche une appli  dans les dépôts officiels Debian me permettant de
> simuler un réseau  avant son installation (câbles, switch, répéteurs et AP
> wifi, ...).
>
>
>
>
> Dans le genre "Cisco Packet Tracer"
>
>>
>>
>  Bonjour Frédéric,
>
> Packet Tracer est dispo pour Debian/Ubuntu...
> Voir sur le site de l’académie en ligne Cisco.
>
> Marc
>


Re: luks, crypttab: why 3 partition only 2 passphrases entered

2018-08-04 Thread Carles Pina i Estany


And I'm now 99% sure that the culprit of all this confusion is...
plymouth! It has a password caching facility and systemd seems to use it
to get the cached password.

-- 
Carles Pina i Estany
Web: http://pinux.info || Blog: http://pintant.cat
GPG Key 0x8CD5C157



Re: (finished)Re: how to prevent security update installation during stretch installation

2018-08-04 Thread err404
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 08/04/2018 07:39 PM, David Christensen wrote:
> I do keep optical drives in the older machines because their BIOS can be 
> incompatible with bootable USB flash drives.

these machines need to be trashed, they are generaly not so efficient regarding 
their power consumption.
but you can try network booting.
or in last way, you can move hard-disk in anothern machine more recent, and 
install on it.



-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEMXISaGZmF7NpMTZj6OuMS89alfsFAltmHc8ACgkQ6OuMS89a
lftaLxAAqjfLJUdExnFmXsaHx1UWfp2gT7Y4NlGsdkncgpBzpdBilEno6STvfJx3
Y7PnPBq1K/T8xlZG4I9IiAi2cNVV+qP1J6yrfUvH4g4tIzD2uvVnhJ6EAtUmHTqb
TgusmI/2lg9eC5Q9I8YW3OhuJZUq20hesAwDmEg0n0myXIhSigeRlG5M9bzZc+nC
95Da3AyVYTRf9OlcpAdSim0w4Jnh6YCEan06y7eLutalmRP/+6UxNuggSDQKoitZ
RV3c/K6lMyYfdT+Y8yF+daJf3NpNvB7r7kDoAICkRXR1EcgoAFSZ0YFMuBaNy774
VpukS/9a0YShM0zdQE64Z4RoNVIMSOVTI9vVCgnUNh1y7Ih3yXSv0WVpPMzDYoAX
k26ynCAD1DlPTgkoxyO+OpXMy6p/TlttUN+Ni9j1Zx8A7vU8RVFDFDTZ3RkDZe4d
YRUda6v/wyjom2zOuChps+FGT7vPbAjRcM9cOCiqFOyJa2+IPWvJ2G+eovruc0bQ
IdUX393xH65BrS0Hk8/rS27U5FG6oICFQD4pfOT+83VbYcAxxAzsi2A4DQcvI9Lc
VAojbHoaK8q3g9RjghynBO17bDbnTemlaYXAD8NVFDfW1sV7SelpnTN5Gw9aUKe6
9y4811M5JdLo1oqVUqNB1pVggd2vhppK358n8GKQzyQ+hbhE2Xs=
=mSyQ
-END PGP SIGNATURE-



Re: Re: Setting default network device in Buster

2018-08-04 Thread David Bruce
It looks like it works now. I can reboot and never go into KDE, and I
can connect with the machine via ssh, and also access RStudio Server
on the machine with a web browser.  Not sure why I wasn't able to
connect on the first reboot after your suggestion - perhaps I typed
something wrong.

Thanks again - David

-- 
David Bruce

For all your software needs, visit The Apt Store:
deb http://ftp.us.debian.org/debian stable main



Re: luks, crypttab: why 3 partition only 2 passphrases entered

2018-08-04 Thread Carles Pina i Estany


Hi,

On Aug/04/2018, David Christensen wrote:
> On 08/02/2018 12:07 AM, Carles Pina i Estany wrote:
> > On Aug/01/2018, David Christensen wrote:
> > > On 08/01/2018 03:47 PM, Carles Pina i Estany wrote:
> > > > I have a Debian Stretch and recently I added a new cyphered partition.
> > > > All works well but I don't understand why and it's bothering me.
> > > > 
> > > > Setup:
> > > > $ cat /etc/crypttab
> > > > m2_root_crypt UUID=4e655198-a111-... none luks,discard
> > > > m2_swap_crypt UUID=56485640-8a04-... none luks,discard
> > > > ssd_dades_crypt UUID=8d1d855d-17a7-... none luks,discard
> > > > 
> > > > All three partitions have the same passphrase.
> > > > 
> > > > On restart I'm asked for two passwords:
> > > > m2_root_crypt
> > > > m2_swap_crypt
> ...
> > > > The question is:
> > > > "Please unlock disk m2_root_crypt:"
> > > > 
> > > > I expcted to write the password three times.
> > > 
> > > My guess is that you made a mistake and stepped on your encrypted 
> > > container
> > > (ssd_dades_crypt?) when you created the new file system.  Did you keep a
> > > copy of your console session?  Posting it would help.
> > 
> > Sadly I didn't keep a copy of my console session.
> 
> I got into the habit of cutting and pasting administrative console sessions
> into a log file (and putting the log file into a version control system).
> This technique has proven to be invaluable -- I recommend it to everyone.

I take note, thanks!

> > Commands and something extra:
> > root@pinux:~# grep crypt /etc/fstab
> > /dev/mapper/m2_root_crypt   /   ext4errors=remount-ro 0 
> >   1
> > /dev/mapper/m2_swap_crypt   noneswapsw  0   > > 0
> > /dev/mapper/ssd_dades_crypt /home/carles/dades  ext4
> > errors=remount-ro 0 1
> 
> Okay.
> 
> 
> > root@pinux:~# ls -l /dev/mapper/
> > total 0
> > crw--- 1 root root 10, 236 ago  1 23:34 control
> > lrwxrwxrwx 1 root root   7 ago  1 23:34 m2_root_crypt -> ../dm-0
> > lrwxrwxrwx 1 root root   7 ago  1 23:34 m2_swap_crypt -> ../dm-1
> > lrwxrwxrwx 1 root root   7 ago  1 23:34 ssd_dades_crypt -> ../dm-2
> 
> Okay.
> 
> 
> > root@pinux:~# mount | grep dades
> > /dev/mapper/ssd_dades_crypt on /home/carles/dades type ext4 
> > (rw,relatime,errors=remount-ro,data=ordered)
> 
> Okay.
> 
> 
> Please run the following command to learn more about the device mapper
> nodes:
> 
> # dmsetup info /dev/dm-*

root@pinux:~# dmsetup info /dev/dm-*
Name:  m2_root_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:1
Event number:  0
Major, minor:  254, 0
Number of targets: 1
UUID: CRYPT-LUKS1-4e655198a11147b3985b4622af7a2b0f-m2_root_crypt

Name:  m2_swap_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:2
Event number:  0
Major, minor:  254, 1
Number of targets: 1
UUID: CRYPT-LUKS1-564856408a04403191d46f1620cc2c9e-m2_swap_crypt

Name:  ssd_dades_crypt
State: ACTIVE
Read Ahead:256
Tables present:LIVE
Open count:1
Event number:  0
Major, minor:  254, 2
Number of targets: 1
UUID: CRYPT-LUKS1-8d1d855d17a74cf2b29486172e407e35-ssd_dades_crypt

I can't see anything obviously wrong.

Since the last emails here I've kept investigating. Quick overview if someone 
is interested here (and let me know if it's something else!).
After booting keyctl has this:

root@pinux:~# keyctl show
Session Keyring
 479651357 --alswrv  0 65534  keyring: _uid_ses.0
 712333474 --alswrv  0 65534   \_ keyring: _uid.0
 711077095 --alswrv  0 0   \_ user: cryptsetup
root@pinux:~# 

See the cryptsetup line. This is what would make systemd able to mount/umount 
without asking for the passphrase and I can just boot and do:
systemctl stop systemd-cryptsetup@ssd_dades_crypt.service
systemctl start systemd-cryptsetup@ssd_dades_crypt.service

if the cryptsetup line is still there (it last I think 2.5 minutes) systemd 
second line is mounting the partition without me entering the password.

But the initial passwords are entered to initrd /lib/cryptsetup/askpass and
using plymouth for the password "asking" backend (not systemd related) and
actually if I boot with init=/bin/bash or break=init I would have the two (root
and swap) partitions mounted but no "dades" partition mounted either anything
in keyctl show.

So still a mystery how this is added there: by who, etc.

Any clues (or "you missed this obvious thing" are very welcomed!

Cheers,

-- 
Carles Pina i Estany
Web: http://pinux.info || Blog: http://pintant.cat
GPG Key 0x8CD5C157



Re: Re: Setting default network device in Buster

2018-08-04 Thread David Bruce
Hi,

> David, what happens if you run sudo systemctl enable ssh and reboot?
I did that, and I cannot connect with ssh before logging into KDE.
>From the first TTY, I tried pinging a few sites and all packets are
lost. I also ran 'sudo ip address show' and there is no IP address
apart from the loopback.

My onboard gigabit wired interface is 'enp3s0', and the wireless NIC
is 'wlp4s0'.  During the installation, I had an ethernet cable
attached to enp3s0, and the Debian installer asked which interface was
to be used for the installation, and I selected 'enp3s0'.  In my den,
I don't have a cable running to the machine. What I want is for
'wlp4s0' to be brought up on boot and remain connected to my home wifi
network, irrespective of whether I'm sitting at the desktop or logged
into KDE.

I think one issue is getting sshd to start on boot, which is what I
think we have accomplished here, but the other issue is to get the
wireless interface itself up (and configured via DHCP, etc).

One practical thing I want to do is to have RStudio Server running on
the Debian machine, and be able to connect to it on my MacBook and
work on projects from my living room.

Thanks for any help

-- 
David Bruce

For all your software needs, visit The Apt Store:
deb http://ftp.us.debian.org/debian stable main



Re: Can't play Steam games

2018-08-04 Thread Brad Rogers
On Sat, 4 Aug 2018 15:24:51 -0400
Ric Moore  wrote:

Hello Ric,

>Before you reboot, run /usr/bin/nvidia-xconfig to 
>create the /etc/X11/xorg.conf file for you.

That should no longer be necessary.  Running nVidia here without an
xorg.conf for a couple of years at least.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"
Two sides to every story
Public Image - Public Image Ltd


pgpp_Wkw54a5F.pgp
Description: OpenPGP digital signature


clavier asus sur un notebook Eee PC 1001PX (Seashell)

2018-08-04 Thread Bernard Schoenacker
bonjour,

j'ai du mal à configurer le clavier car j'ai les touches 
qui sont actives et par conséquent le altgr ne donne rien
(exemple) ...

pour l'instant j'utilise un clavier auxiliaire en usb
mais ce n'est pas la bonne solution

j'ai essayé de reconfigurer le clavier avec les 
instructions classiques mais rien n'y fait ...


qui pourrais m'aiguiller ?

merci

slt
bernard



Re: update alternative et lien nvidia

2018-08-04 Thread Bernard Schoenacker



- Mail original -
> De: "contact" 
> À: "Bernard Schoenacker" , "Liste Debian" 
> 
> Cc: "Lombard David" 
> Envoyé: Mardi 31 Juillet 2018 13:33:00
> Objet: Re: update alternative et lien nvidia
> 
> Bonjour Benard
> 
> cela m'est arrivé maintes fois en voulant utiliser ma sortie vidéo
> externe, sans succès.
> 
> Et la solution est de désinstaller/purger totalement tout ce qui
> concerne les drivers Nvidia depuis la console, puis redémarrer en
> général cela permet de revenir à la situation précédente.
> 
> Dans tous les cas tu vas finir par récupérer l'ensemble.
> 
> Cordialement
> 
> François-Marie BILLARD
> 
> Le 31/07/2018 à 11:38, Bernard Schoenacker a écrit :
> > bonjour,
> >
> > suite à une mise à jour de debian je n'ai plus
> > d'affichage pour x11
> >
> > la seule chose que j'ai pu trouver c'est un lien brisé
> > pour le serveur nvidia qui est déclaré dans update-alternatives
> >
> >
> > comment rétablir la situation ?
> >
> > et navré de ne pas pouvoir en dire plus car je n'ai pas la
> >   machine sous la main
> >
> > attention, j'utilise une testing
> >
> >
> > peut être reste t-il un espoir de sauver les meubles :
> >
> > https://forum.siduction.org/index.php?topic=3953.0
> >
> > merci
> > slt
> > bernard


bonjour,

voici le compte rendu succin de la remise en état de l'ordi.

j'ai tout supprimé ce qui était nvidia propriétaire y compris
xorg-video-nouveau, j'ai pris les paquets stblez et j'ai tout
 remonté avec  le serveur xorg vesa 

ensuite j'ai remis lightdm en version stable sans l'autologin

et le tour est joué

c'est long et fastidiieux car il faut faire le tour de l'ensemble
des choses ...

merci
slt
bernard



Re: Setting default network device in Buster

2018-08-04 Thread Ric Moore

On 08/04/2018 03:14 PM, Shea Alterio wrote:
Pascal, i'm sure when he says "as the default" he wants it to 
automatically turn on at boot / login. sometimes it's called the 
preferred interface among other names.


Please try not to top-post.

--
My father, Victor Moore (Vic) used to say:
"There are two Great Sins in the world...
..the Sin of Ignorance, and the Sin of Stupidity.
Only the former may be overcome." R.I.P. Dad.
http://linuxcounter.net/user/44256.html



Re: Can't play Steam games

2018-08-04 Thread Ric Moore

On 08/04/2018 02:30 PM, Jose G. López wrote:

On Sat, 4 Aug 2018 13:28:13 -0400
Ric Moore  wrote:


Enter this: in a terminal:  inxi -SGx
What do you get?? Ric



Hi Ric,

I get this:
--
$ inxi -SGx
System:Host: pc-debian Kernel: 4.17.0-1-amd64 x86_64 bits: 64 compiler: gcc 
v: 7.3.0
Desktop: Xfce 4.12.4 Distro: Debian GNU/Linux buster/sid
Graphics:  Card-1: NVIDIA GM107 [GeForce GTX 750 Ti] driver: nvidia v: 390.77
bus ID: 02:00.0
Display: x11 server: X.Org 1.20.0 driver: nvidia resolution: 
1920x1080~60Hz
OpenGL: renderer: llvmpipe (LLVM 6.0 128 bits) v: 3.3 Mesa 18.1.5
direct render: Yes
--




It doesn't note that a driver is installed. So, if you have the nvidia 
driver installed directly from nvidia, remove it. From a terminal run 
"locate nvidia", you might have to remove those files by hand IF you 
directly installed the driver from the nvidia website. Next, run 
software updater (it's in your XFCE system menu tab) and let it install 
your driver for you. Before you reboot, run /usr/bin/nvidia-xconfig to 
create the /etc/X11/xorg.conf file for you. Then a reboot should have 
you up and running. I HOPE this helps. Ric



--
My father, Victor Moore (Vic) used to say:
"There are two Great Sins in the world...
..the Sin of Ignorance, and the Sin of Stupidity.
Only the former may be overcome." R.I.P. Dad.
http://linuxcounter.net/user/44256.html



Re: Setting default network device in Buster

2018-08-04 Thread Shea Alterio
Pascal, i'm sure when he says "as the default" he wants it to automatically
turn on at boot / login. sometimes it's called the preferred interface
among other names.

David, what happens if you run sudo systemctl enable ssh and reboot? Then
try to log on with ssh before KDE is activated. I have a feeling it is
starting sshd when KDE is launched, and not immediately at boot. If this
doesn't do it, you can add that command to a startup script that runs
before the graphical environment comes up.



On Sat, Aug 4, 2018 at 2:55 PM Pascal Hambourg 
wrote:

> Le 04/08/2018 à 19:30, David Bruce a écrit :
> > I'm just getting back to Debian and Linux after a few years' absence -
> > sorry if this is a simplistic question. I installed testing/Buster on
> > a newly built desktop machine that has both onboard gigabit ethernet
> > and a wireless Atheros NIC. Both devices were recognized during the
> > install, and I set the wired interface as the default to minimize any
> > connectivity issues.
>
> What do you mean by "set as the default" ?
>
> > Now my machine is up and running, and I want the wireless device to
> > always be brought up and used as the default.
>
> What do you mean by "used as the default" ?
>
> > Within KDE, it connects
> > to my home network without issues as if the machine were a laptop, but
> > it does not appear to have an active connection when KDE is "asleep".
>
> What do you mean by "KDE is asleep" ? Suspended ?
> If the laptop is suspended, of course all functions are, including the
> network.
>
> > In particular, if I reboot it, I can't ssh into it from my MacBook
> > until I sign into KDE, and if KDE goes to sleep, I lose the ability to
> > ssh in within a few minutes. I'm not sure any of this is really a
> > function of KDE, but the behavior is certainly correlated.
>
> It depends on the network manager used by KDE and the connection settings.
> It may set up the connection at startup time, only when a session is
> opened by any user, or only by the user which configured the connection.
>
>


Re: Setting default network device in Buster

2018-08-04 Thread Pascal Hambourg

Le 04/08/2018 à 19:30, David Bruce a écrit :

I'm just getting back to Debian and Linux after a few years' absence -
sorry if this is a simplistic question. I installed testing/Buster on
a newly built desktop machine that has both onboard gigabit ethernet
and a wireless Atheros NIC. Both devices were recognized during the
install, and I set the wired interface as the default to minimize any
connectivity issues.


What do you mean by "set as the default" ?


Now my machine is up and running, and I want the wireless device to
always be brought up and used as the default.


What do you mean by "used as the default" ?


Within KDE, it connects
to my home network without issues as if the machine were a laptop, but
it does not appear to have an active connection when KDE is "asleep".


What do you mean by "KDE is asleep" ? Suspended ?
If the laptop is suspended, of course all functions are, including the 
network.



In particular, if I reboot it, I can't ssh into it from my MacBook
until I sign into KDE, and if KDE goes to sleep, I lose the ability to
ssh in within a few minutes. I'm not sure any of this is really a
function of KDE, but the behavior is certainly correlated.


It depends on the network manager used by KDE and the connection settings.
It may set up the connection at startup time, only when a session is 
opened by any user, or only by the user which configured the connection.




Re: Can't play Steam games

2018-08-04 Thread Jose G. López
On Sat, 4 Aug 2018 13:28:13 -0400
Ric Moore  wrote:
> 
> Enter this: in a terminal:  inxi -SGx
> What do you get?? Ric
> 

Hi Ric,

I get this:
--
$ inxi -SGx
System:Host: pc-debian Kernel: 4.17.0-1-amd64 x86_64 bits: 64 compiler: gcc 
v: 7.3.0 
   Desktop: Xfce 4.12.4 Distro: Debian GNU/Linux buster/sid 
Graphics:  Card-1: NVIDIA GM107 [GeForce GTX 750 Ti] driver: nvidia v: 390.77 
   bus ID: 02:00.0 
   Display: x11 server: X.Org 1.20.0 driver: nvidia resolution: 
1920x1080~60Hz 
   OpenGL: renderer: llvmpipe (LLVM 6.0 128 bits) v: 3.3 Mesa 18.1.5 
   direct render: Yes
--

Regards,


pgp8seSDaKXnr.pgp
Description: PGP signature


Setting default network device in Buster

2018-08-04 Thread David Bruce
I'm just getting back to Debian and Linux after a few years' absence -
sorry if this is a simplistic question. I installed testing/Buster on
a newly built desktop machine that has both onboard gigabit ethernet
and a wireless Atheros NIC. Both devices were recognized during the
install, and I set the wired interface as the default to minimize any
connectivity issues.

Now my machine is up and running, and I want the wireless device to
always be brought up and used as the default.  What is the best
unix/Debian way to get this set up properly?  Within KDE, it connects
to my home network without issues as if the machine were a laptop, but
it does not appear to have an active connection when KDE is "asleep".
In particular, if I reboot it, I can't ssh into it from my MacBook
until I sign into KDE, and if KDE goes to sleep, I lose the ability to
ssh in within a few minutes. I'm not sure any of this is really a
function of KDE, but the behavior is certainly correlated.

Thanks for any help, and sorry if this is basic stuff any linux user
should know.  I'm a surgeon, not an engineer or admin. Also, I've
tried posting a few times unsuccessfully but I think the problem was
that I didn't use plain text. So, sorry if this is a duplicate.


-- 
David Bruce

For all your software needs, visit The Apt Store:
deb http://ftp.us.debian.org/debian stable main



Re: (finished)Re: how to prevent security update installation during stretch installation

2018-08-04 Thread David Christensen

On 08/02/2018 01:05 AM, Long Wind wrote:
to David Christensen: your solutions is complex, 


I assume you are referring to "configure your Internet gateway to block 
traffic between the host and the Internet".  Learning about Internet 
gateways in general, and about your gateway in particular, is an 
important system administration skill.  Effort invested here will pay 
many rewards going forward.




and my cdrom is bad. if it's good, i can install by cdrom, with network 
disconnected. buy a new cdrom? cdrom is cheap, but IMHO internet has replaced 
cdrom, cdrom isn't useful except installing software.


I tend to use USB flash drives, as many newer computers no longer 
include optical drives.  But, I do keep optical drives in the older 
machines because their BIOS can be incompatible with bootable USB flash 
drives.




to all:
it seems that there's no easy answer to my question
i may have to put up with security update


It is best to keep your systems up-to-date with respect to security patches.



hopefully this time debian 9.5 will not cause trouble
(debian 9.4 with security update has problem)

i'm not interested in spending any more energy on such trivial issue.
Thanks to all who reply!


Okay.


David



Re: Can't play Steam games

2018-08-04 Thread Ric Moore

On 08/04/2018 12:33 PM, Jose G. López wrote:

Hi,

Is anyone having problems playing games on Steam? Loading is very slow
and seems unable to render graphics. My card is a GeForce GTX 750 Ti.

I'm using Testing up-to-date, nvidia-driver (390.77-1). I don't know
since wich version of nvidia driver because I play few times. I tried
to downgrade to 390.48-3 with no luck. Also tried to install non-glvnd
version of the driver but doesn't work either.

What can be the problem? I don't see errors related neither in Steam
nor in nvidia. I'm little bit lost.




Enter this: in a terminal:  inxi -SGx
What do you get?? Ric


--
My father, Victor Moore (Vic) used to say:
"There are two Great Sins in the world...
..the Sin of Ignorance, and the Sin of Stupidity.
Only the former may be overcome." R.I.P. Dad.
http://linuxcounter.net/user/44256.html



Re: luks, crypttab: why 3 partition only 2 passphrases entered

2018-08-04 Thread David Christensen

On 08/02/2018 12:07 AM, Carles Pina i Estany wrote:

On Aug/01/2018, David Christensen wrote:

On 08/01/2018 03:47 PM, Carles Pina i Estany wrote:

I have a Debian Stretch and recently I added a new cyphered partition.
All works well but I don't understand why and it's bothering me.

Setup:
$ cat /etc/crypttab
m2_root_crypt UUID=4e655198-a111-... none luks,discard
m2_swap_crypt UUID=56485640-8a04-... none luks,discard
ssd_dades_crypt UUID=8d1d855d-17a7-... none luks,discard

All three partitions have the same passphrase.

On restart I'm asked for two passwords:
m2_root_crypt
m2_swap_crypt

...

The question is:
"Please unlock disk m2_root_crypt:"

I expcted to write the password three times.


My guess is that you made a mistake and stepped on your encrypted container
(ssd_dades_crypt?) when you created the new file system.  Did you keep a
copy of your console session?  Posting it would help.


Sadly I didn't keep a copy of my console session.


I got into the habit of cutting and pasting administrative console 
sessions into a log file (and putting the log file into a version 
control system).  This technique has proven to be invaluable -- I 
recommend it to everyone.




Commands and something extra:
root@pinux:~# grep crypt /etc/fstab
/dev/mapper/m2_root_crypt   /   ext4errors=remount-ro 0 
  1
/dev/mapper/m2_swap_crypt   noneswapsw  0   0
/dev/mapper/ssd_dades_crypt /home/carles/dades  ext4
errors=remount-ro 0 1


Okay.



root@pinux:~# ls -l /dev/mapper/
total 0
crw--- 1 root root 10, 236 ago  1 23:34 control
lrwxrwxrwx 1 root root   7 ago  1 23:34 m2_root_crypt -> ../dm-0
lrwxrwxrwx 1 root root   7 ago  1 23:34 m2_swap_crypt -> ../dm-1
lrwxrwxrwx 1 root root   7 ago  1 23:34 ssd_dades_crypt -> ../dm-2


Okay.



root@pinux:~# mount | grep dades
/dev/mapper/ssd_dades_crypt on /home/carles/dades type ext4 
(rw,relatime,errors=remount-ro,data=ordered)


Okay.


Please run the following command to learn more about the device mapper 
nodes:


# dmsetup info /dev/dm-*


David



Can't play Steam games

2018-08-04 Thread Jose G. López
Hi, 

Is anyone having problems playing games on Steam? Loading is very slow
and seems unable to render graphics. My card is a GeForce GTX 750 Ti.

I'm using Testing up-to-date, nvidia-driver (390.77-1). I don't know
since wich version of nvidia driver because I play few times. I tried
to downgrade to 390.48-3 with no luck. Also tried to install non-glvnd
version of the driver but doesn't work either.

What can be the problem? I don't see errors related neither in Steam
nor in nvidia. I'm little bit lost.

Thanks for your help.


pgp_tL7l7uxMg.pgp
Description: PGP signature


Re: need help with bashburn

2018-08-04 Thread Thomas Schmitt
Hi,

Jude DaShiell wrote:
> The cdrecord program uses a different library
> and that always throws dma test skipped warning.

That's a consequence of its troublesome family background.
Always waiting for an opportunity to say "You do it wrong. *Pain!*".


> I don't know what wodim uses for a library.

A copy of cdrecord's sg library as it was in 2006. Possibly with some
small modifications. (The cdrkit homepage and upstream repository is gone.
We cannot look for commit messages.)

But except with some borderline situations of dying drives or feeble
cables, the library suffices for wodim's purposes.

The deficiencies are rather with the understanding of DVD and BD
specifications. wodim treats everything like CD. This happens to work
halfways with DVD-R. With DVD+RW it relies on the tolerance of the drive
and on its own ignorance towards drive protests. DVD+R and BD-R seem
completely out of wodim's reach.


Have a nice day :)

Thomas



Re: Simulateur réseau

2018-08-04 Thread hého
Frederic Zulian a écrit le 04/08/2018 à 16:07 :
> Je cherche une appli  dans les dépôts officiels Debian me permettant de
> simuler un réseau  avant son installation (câbles, switch, répéteurs et AP
> wifi, ...).
>


Bonjour,

ça ne répond pas exactement à la question mais
sur une wheezy ici,
gns3 est dans contrib.

**
apt-cache policy gns3
gns3:
  Installed: (none)
  Candidate: 0.7.4-1
  Version table:
 0.8.6-3~bpo70+1 0
100 http://ftp.debian.org/debian/ wheezy-backports/contrib i386 Packages
 0.7.4-1 0
500 http://ftp.fr.debian.org/debian/ wheezy/contrib i386 Packages
**

Cordialement,
hého




Re: Adding text to pdf document

2018-08-04 Thread Rodolfo Medina
Leandro Noferini  writes:

> Rodolfo Medina  writes:
>
>
> [...]
>
>>> I use flpsed to add text to pdf documents.
>
> [...]
>
>> Thanks, Leandro...  It seems to work fine in adding text, but it seems
>> that, as xournal, it does not allow to modify or remove it later on...
>> Whereas masterpdfeditor and inkscape seem to do so...
>
> I think you could modify the modifications if you save the new document
> in postscript format, not in pdf format.

Yes, that's it...  Thanks!

Rodolfo



Re: Sin espacio en particion

2018-08-04 Thread Gonzalo L. Campos Medina
Te recomiendo leer antes esto:

https://gigas.com/support/docs/index.php/C%C3%B3mo_montar_un_disco_con_enlaces_simb%C3%B3licos
El sáb., 4 ago. 2018 a las 7:39, Fabián Bonetti
() escribió:
>
>
> Hola, tengo dos servicios que ocupan disco duro, Openfire y MariaDB
>
> disco duro 1
> /var/lib/openfire
> /var/lib/mysql
>
> lei algo en esta lista de montarlo con mount bind
>
> cosa que lo hice en el /etc/fstab
>
> /var/lib/mysql/media/Disco160/www/bd/mysqlnonebind0 0
> /var/lib/openfire /media/Disco160/openfire/openfire nonebind0 0
>
> pero por mas que haga eso de montarlo en el disco duro 2
>
> me sigue apareciendo poco espacio en disco duro 1.
>
>
>
> --
> Servicios:. http://mamalibre.com.ar/plus
> MamaLibre, Casa en Lincoln, Ituzaingo 1085 CP6070, Buenos Aires, Argentina
>



Re: need help with bashburn

2018-08-04 Thread Jude DaShiell
On Sat, 4 Aug 2018, Thomas Schmitt wrote:

> Date: Sat, 4 Aug 2018 10:39:14
> From: Thomas Schmitt 
> To: debian-user@lists.debian.org
> Subject: Re: need help with bashburn
> Resent-Date: Sat,  4 Aug 2018 14:40:35 + (UTC)
> Resent-From: debian-user@lists.debian.org
>
> Hi,
>
> Jude DaShiell wrote:
> > If bashburn and cdrskin can work together, you're likely to get serious
> > performance increase in terms of how your drive does the actual burning.
>
> wodim is quite ok on its own turf of CD burning.
>
> Problems occur with bitrot.
> E.g.
>   wodim --devices
> finds no drive any more, because we have no /dev/scd* device files any more.
> (But "wodim foo --devices" finds /dev/cdrom. "*Pain!*")
> Then there probably are some bugs inherited from cdrecord and some added
> during development of cdrkit (which lasted not very long in hindsight).
> Many of wodim's Debian bug reports describe to bad drives, bad media, or
> the attempt to burn DVD.
>
> Of course, wodim should not be used with DVD or BD media. Really. Not. Never.
>
>
> Have a nice day :)
>
> Thomas
>
One of the reasons I like cdrskin as much as I do is that it has no
problem with my hardware.  The cdrecord program uses a different library
and that always throws dma test skipped warning.  I don't know what wodim
uses for a library.

>

--



Re: Simulateur réseau

2018-08-04 Thread David S

On 04/08/2018 14:34, Frederic Zulian wrote:


Bonjour,

J'ai un réseau  de PC   et  de  points d’accès Wifi à installer.
Pour  étudier l'implantation des câbles et points d’accès, je  recherche 
un simulateur de réseau.


Il y a quelques années j'ai utilisé "Cisco packet tracer" sous windows.
J'ai aussi  trouver plusieurs simulateurs de réseaux  .deb  (ci-dessous).

Cependant  je préférerai  installer   un simulateur venant  d'un dépôt 
officiel.

Une idée ?


Network-in :
http://network-in.vverdon.fr/index.php

GNS3  (leur site ne répond pas) :
http://www.gns3.net/fr

Il est cependant  téléchargeable sur
https://reseau.developpez.com/telecharger/

A +

--
Frédéric ZULIAN


Bonjour,

Le projet gns à l'air d'avoir bougé ici : https://www.gns3.com/

My 2 cts,



Re: Simulateur réseau

2018-08-04 Thread Marc V


Envoyé de mon iPhone

> Le 4 août 2018 à 16:07, Frederic Zulian  a écrit :
> 
> Bonjour,
> 
> Je reformule ma demande pour être plus précis :
> 
> Je cherche une appli  dans les dépôts officiels Debian me permettant de 
> simuler un réseau  avant son installation (câbles, switch, répéteurs et AP 
> wifi, ...).


> 
> Dans le genre "Cisco Packet Tracer" 
>> 

 Bonjour Frédéric,

Packet Tracer est dispo pour Debian/Ubuntu... 
Voir sur le site de l’académie en ligne Cisco.

Marc 

Re: need help with bashburn

2018-08-04 Thread Thomas Schmitt
Hi,

Jude DaShiell wrote:
> If bashburn and cdrskin can work together, you're likely to get serious
> performance increase in terms of how your drive does the actual burning.

wodim is quite ok on its own turf of CD burning.

Problems occur with bitrot.
E.g.
  wodim --devices
finds no drive any more, because we have no /dev/scd* device files any more.
(But "wodim foo --devices" finds /dev/cdrom. "*Pain!*")
Then there probably are some bugs inherited from cdrecord and some added
during development of cdrkit (which lasted not very long in hindsight).
Many of wodim's Debian bug reports describe to bad drives, bad media, or
the attempt to burn DVD.

Of course, wodim should not be used with DVD or BD media. Really. Not. Never.


Have a nice day :)

Thomas



Sin espacio en particion

2018-08-04 Thread Fabián Bonetti


Hola, tengo dos servicios que ocupan disco duro, Openfire y MariaDB

disco duro 1
/var/lib/openfire
/var/lib/mysql

lei algo en esta lista de montarlo con mount bind

cosa que lo hice en el /etc/fstab

/var/lib/mysql/media/Disco160/www/bd/mysqlnonebind0 0
/var/lib/openfire /media/Disco160/openfire/openfire nonebind0 0

pero por mas que haga eso de montarlo en el disco duro 2

me sigue apareciendo poco espacio en disco duro 1.



-- 
Servicios:. http://mamalibre.com.ar/plus
MamaLibre, Casa en Lincoln, Ituzaingo 1085 CP6070, Buenos Aires, Argentina



Re: Simulateur réseau

2018-08-04 Thread Christophe De Natale

Le 04/08/2018 à 16:07, Frederic Zulian a écrit :

Bonjour,


Bonjour,


[...]

Dans le genre "Cisco Packet Tracer"



Apparemment disponible en téléchargement sur le site de cisco depuis 
l'année dernière :

https://www.supinfo.com/articles/single/6804-installing-packet-tracer-71-on-ubuntu-linux


Re: Adding text to pdf document

2018-08-04 Thread Leandro Noferini
Rodolfo Medina  writes:


[...]

>> I use flpsed to add text to pdf documents.

[...]

> Thanks, Leandro...  It seems to work fine in adding text, but it seems
> that, as xournal, it does not allow to modify or remove it later on...
> Whereas masterpdfeditor and inkscape seem to do so...

I think you could modify the modifications if you save the new document
in postscript format, not in pdf format.

-- 
Ciao
leandro
http://6xukrlqedfabdjrb.onion/blog/
Alla bellezza preferisco la verità.
E il dubbio è l'unità di misura.


signature.asc
Description: PGP signature


Re: monitor problem with stretch

2018-08-04 Thread Long Wind
 Thanks!
my monitor is Philips 107 S5graphic card is integrated to motherboard
it use intel driver of xorg

I go to bed now and can't reply for more than a few hours.

On Saturday, August 4, 2018, 9:57:26 AM EDT, T BkRl  
wrote:  
 
 Long are you using vga, dvi, hdmi? Something else? And what graphics card?
It seems strange the colors are off but because you say the screen sometime 
goes black I wonder if there is a problem within the video driver.
 From: Long Wind 
Sent: Saturday, August 4, 2018 8:12 AM
To: Debian-user List Debian
Subject: monitor problem with stretch if my monitor isn't properly plugged to 
back of computer
color of screen is slightly different from correct color
i can see grub menu and booting stretch
but after a while screen become blank 
i have to press power button to shutdown
this is stretch problem, because Windows on the same disk can boot and run
even if monitor isn't properly plugged

solution is to plug it properly so that screen color is 100% correct
i don't think linux is so fragile, or is it?


  

Re: Simulateur réseau

2018-08-04 Thread Frederic Zulian
Bonjour,

Je reformule ma demande pour être plus précis :

Je cherche une appli  dans les dépôts officiels Debian me permettant de
simuler un réseau  avant son installation (câbles, switch, répéteurs et AP
wifi, ...).

Dans le genre "Cisco Packet Tracer"


A +

--
Frédéric ZULIAN

2018-08-04 15:38 GMT+02:00 :

> On Saturday 04 August 2018 15:19:03 Jacques BRIQUET wrote:
> > Bonjour,
> > wireshark vous inspire-t-il?
>
> Plus pour analyser réseau WiFi...
>
>


Re: Simulateur réseau

2018-08-04 Thread Michel
Le 04/08/2018 à 15:40, andre_deb...@numericable.fr a écrit :
> On Saturday 04 August 2018 15:19:03 Jacques BRIQUET wrote:
>> Bonjour,
>> wireshark vous inspire-t-il?
> 
> Plus pour analyser réseau WiFi...
> 

Parfois, tu devrais t'abstenir...



Re: monitor problem with stretch

2018-08-04 Thread T BkRl
Long are you using vga, dvi, hdmi? Something else? And what graphics card?

It seems strange the colors are off but because you say the screen sometime 
goes black I wonder if there is a problem within the video driver.



From: Long Wind 
Sent: Saturday, August 4, 2018 8:12 AM
To: Debian-user List Debian
Subject: monitor problem with stretch

if my monitor isn't properly plugged to back of computer
color of screen is slightly different from correct color
i can see grub menu and booting stretch
but after a while screen become blank
i have to press power button to shutdown

this is stretch problem, because Windows on the same disk can boot and run
even if monitor isn't properly plugged

solution is to plug it properly so that screen color is 100% correct
i don't think linux is so fragile, or is it?




Re: Simulateur réseau

2018-08-04 Thread andre_debian
On Saturday 04 August 2018 15:19:03 Jacques BRIQUET wrote:
> Bonjour,
> wireshark vous inspire-t-il?

Plus pour analyser réseau WiFi...



re: Simulateur réseau

2018-08-04 Thread Jacques BRIQUET
Bonjour,

wireshark vous inspire-t-il?

 

 

 

 

> Message du 04/08/18 14:34
> De : "Frederic Zulian" 
> A : "ML Debian User French" 
> Copie à : 
> Objet : Simulateur réseau
> 
>

 
Bonjour,

>
J'ai un réseau  de PC   et  de  points d’accès Wifi à installer.
Pour  étudier l'implantation des câbles et points d’accès, je  recherche un 
simulateur de réseau.

>
Il y a quelques années j'ai utilisé "Cisco packet tracer" sous windows.
J'ai aussi  trouver plusieurs simulateurs de réseaux  .deb  (ci-dessous).

>
Cependant  je préférerai  installer   un simulateur venant  d'un dépôt officiel.
 
Une idée ?

>
  

>
Network-in :
http://network-in.vverdon.fr/index.php
>

>
 
GNS3  (leur site ne répond pas) : 
http://www.gns3.net/fr

>

Il est cependant  téléchargeable sur
https://reseau.developpez.com/telecharger/
>

>
A +

>

--
> Frédéric ZULIAN





Re: need help with bashburn

2018-08-04 Thread Jude DaShiell
On Fri, 3 Aug 2018, Fred wrote:

> Date: Fri, 3 Aug 2018 21:04:34
> From: Fred 
> To: debian-user@lists.debian.org
> Subject: Re: need help with bashburn
> Resent-Date: Sat,  4 Aug 2018 01:12:10 + (UTC)
> Resent-From: debian-user@lists.debian.org
>
> On 08/03/2018 03:18 PM, Fred wrote:
> > On 08/03/2018 02:14 PM, Jude DaShiell wrote:
> >> On Fri, 3 Aug 2018, Greg Wooledge wrote:
> >>
> >>> Date: Fri, 3 Aug 2018 17:10:17
> >>> From: Greg Wooledge 
> >>> To: debian-user@lists.debian.org
> >>> Subject: Re: need help with bashburn
> >>> Resent-Date: Fri,  3 Aug 2018 21:10:33 + (UTC)
> >>> Resent-From: debian-user@lists.debian.org
> >>>
> >>> On Fri, Aug 03, 2018 at 05:07:38PM -0400, Jude DaShiell wrote:
>  Try running typescript then run that final bashburn command then type
>  exit and read the message that flashes on the screen too fast in a file
>  called typescript on your hard drive.  Hope this helps. bashburn when
>  you get it working is a speed demon!
> >>> You mean script(1) for the command.  typescript is the name of the
> >>> (default) output file.
> >>>
> >> Right, and it's been a while since I ran bashburn and I had a similar
> >> error.  You have to link the iso before you can burn it with bashburn but
> >> I forget the specifics on that one.
> > Hi,
> > I tried script, partial results follow:
> > ++
> > | BashBurn 3.0.1 |
> > ++
> > |
> > |-(ISO Menu)
> > |  0) Burn ISO
> > |  1) Create ISO from files in /tmp/burn
> > |  2) Create ISO from CD
> > |  3) Burn DVD image
> > |  4) Mount image
> > |  5) Back
> >
> > |
> > Your Choice? [0-5] |> 0
> > Not enabling overburn...
> > wodim: No write mode specified.
> > wodim: Assuming -tao mode.
> > wodim: Future versions of wodim may have different drive dependent
> > defaults.
> > wodim: Badly placed option. Global options must be before any track.
> > Burning failed.
> > File(s) linked/copied to /tmp/burn ?
> > ++
> > | BashBurn 3.0.1 |
> > ++
> > |
> > |-(ISO Menu)
> > |  0) Burn ISO
> > |  1) Create ISO from files in /tmp/burn
> > |  2) Create ISO from CD
> > |  3) Burn DVD image
> > |  4) Mount image
> > |  5) Back
> >
> > The write mode is specified as cdrtao in the config menu.  It looks to me
> > like something changed in wodim and bashburn has not been updated
> > accordingly.
> >
> > I think I will try cdrskin.
> >
> > Best regards,
> > Fred
> >
> >
> Hi,
> I tried cdrskin as Ben Oliver suggested and it worked like a champ on the
> first try!  Maybe I don't care about bashburn after all.
>
> Thanks for the help!
> Best regards,
> Fred
>
If bashburn and cdrskin can work together, you're likely to get serious
performance increase in terms of how your drive does the actual burning.
The system I'm now using hasn't got bashburn available otherwise I'd try
that out.  When I do a system install of debian not too long in the
future, I'll experiment and see if I can get it working.

> >

--



Simulateur réseau

2018-08-04 Thread Frederic Zulian
Bonjour,

J'ai un réseau  de PC   et  de  points d’accès Wifi à installer.
Pour  étudier l'implantation des câbles et points d’accès, je  recherche un
simulateur de réseau.

Il y a quelques années j'ai utilisé "Cisco packet tracer" sous windows.
J'ai aussi  trouver plusieurs simulateurs de réseaux  .deb  (ci-dessous).

Cependant  je préférerai  installer   un simulateur venant  d'un dépôt
officiel.

Une idée ?



Network-in :
http://network-in.vverdon.fr/index.php

GNS3  (leur site ne répond pas) :
http://www.gns3.net/fr

Il est cependant  téléchargeable sur
https://reseau.developpez.com/telecharger/

A +

--
Frédéric ZULIAN


Re: Wine error message

2018-08-04 Thread Carl Fink

On 08/04/2018 07:51 AM, Gour wrote:

However, 'stable' is too old for me, although I'll probably put it on my
relative's machined and between 'testing' and 'unstable' I believe
that the latter is bette option.



For years, my policy has been to use stable on servers and testing
on workstations.
--

Carl Fink  c...@finknetwork.com
Thinking and logic and stuff at Reasonably Literate
http://reasonablyliterate.com



Re: Wine error message

2018-08-04 Thread Gour
On Sat, 4 Aug 2018 07:16:47 -0400
Carl Fink  wrote:

> If you're looking for a more stable system, maybe the "unstable"
> distribution of Debian is not an ideal choice?

Well, in the past I spent >10yrs with rolling distros (Gentoo & Arch) and
thought that Fedora might be good option providign newer packages and I had
good experience with smoooth upgrades between releases, bつt last incidents
were too much and I never experienced such thing with Debian.

However, 'stable' is too old for me, although I'll probably put it on my
relative's machined and between 'testing' and 'unstable' I believe
that the latter is bette option.


Sincerely,
Gour

-- 
One who is not disturbed in mind even amidst the threefold
miseries or elated when there is happiness, and who is free
from attachment, fear and anger, is called a sage of steady mind.




Re: Adding text to pdf document

2018-08-04 Thread Rodolfo Medina
Rodolfo Medina  writes:

> Curt  writes:
>
>> On 2018-08-04, Rodolfo Medina  wrote:
>>>
>>> Thanks, Leandro...  It seems to work fine in adding text, but it seems
>>> that, as xournal, it does not allow to modify or remove it later on...
>>> Whereas masterpdfeditor and inkscape seem to do so...
>>
>> curty@einstein:~$ apt show flpsed 
>> 
>>
>>  flpsed is a WYSIWYG pseudo PostScript editor. "Pseudo", because you can't
>>  remove or modify existing elements of a document. But flpsed lets you add
>>  arbitrary text lines to existing PostScript 1 documents. Added lines can
>>  later be reedited with flpsed.
>>
>> It seems to think the contrary. But the proof is in the pudding, which I
>> have yet to taste.
>
>
> For me, it can't do that, in the sense that yes, you can reedit lines added
> previously, but the new text is simply overlapped to the old one...


Well, no, wait a minute...  maybe yes...

Rodolfo



Re: Wine error message

2018-08-04 Thread Carl Fink

On 08/04/2018 06:58 AM, Gour wrote:

Few days ago I migrated from Fedora (fc28) where I had serious issues with
4.17.x kernel series experiencing system hangs several times per day when
leaving my machine unattended to Debian Sid where there are nothing similar (so
far).


If you're looking for a more stable system, maybe the "unstable"
distribution of Debian is not an ideal choice?
--
Carl Fink  c...@finknetwork.com
Thinking and logic and stuff at Reasonably Literate
http://reasonablyliterate.com



Re: Adding text to pdf document

2018-08-04 Thread Rodolfo Medina
Curt  writes:

> On 2018-08-04, Rodolfo Medina  wrote:
>>
>> Thanks, Leandro...  It seems to work fine in adding text, but it seems that,
>> as
>> xournal, it does not allow to modify or remove it later on...  Whereas
>> masterpdfeditor and inkscape seem to do so...
>
> curty@einstein:~$ apt show flpsed 
> 
>
>  flpsed is a WYSIWYG pseudo PostScript editor. "Pseudo", because you can't
>  remove or modify existing elements of a document. But flpsed lets you add
>  arbitrary text lines to existing PostScript 1 documents. Added lines can
>  later be reedited with flpsed.
>
> It seems to think the contrary. But the proof is in the pudding, which I have
> yet to taste.


For me, it can't do that, in the sense that yes, you can reedit lines added
previously, but the new text is simply overlapped to the old one...

Rodolfo



Re: CherryTree - was [Re: If not "newbie" then ????]

2018-08-04 Thread Brian
On Sat 04 Aug 2018 at 05:50:24 -0500, Richard Owlett wrote:

> On 08/04/2018 05:43 AM, Brian wrote:
> > On Sat 04 Aug 2018 at 05:20:29 -0500, Richard Owlett wrote:
> > 
> > > On 07/22/2018 03:07 AM, Richard Owlett wrote:
> > > > On 07/21/2018 04:46 PM, cyaiplexys wrote:
> > > [snip]
> > > > > 
> > > > > Try CherryTree. I use that program for everything. It's
> > > > > cross-platform. I download it from the web site instead of using the
> > > > > version in the Debian Repo as the latest version fixes some annoying
> > > > > bugs (of which I kinda forgot what but would quickly be reminded if
> > > > > I used the repo version).
> > > > 
> > > > I browsed its manual then installed the version in the Debian Repo. It
> > > > should address two problems:
> > > >     1. finding relevant posts.
> > > >     2. organizing my bookmarks folder. Like Topsy it just grew.
> > > 
> > > Is there a mailing list or USENET group where discussion of CherryTree 
> > > would
> > > be on-topic?
> > > 
> > > I've found [http://www.giuspen.com/forums/] but have never found web fora
> > > usable.
> > 
> > > From the link you give:
> > 
> >cherrytree
> > 
> >This forum contains 662 topics and 2,280 replies, and was last
> >updated by Klaas Vaak 5 hours, 4 minutes ago.
> > 
> > The forum appears alive and active. Lots to read.
> 
> TRY *READING* before responding!!!

I did; that's why I gave the response I posted.
 
> > Sometimes one has to compromise, adjust and fit into what is available.
> 
> Quantity is NOT everything. NOTE BENE the last word of my post.

Never mind the quality, feel the width.

> Apparently your only possible ON-TOPIC response you could have been to admit
> you didn't know.

I didn't even look. I assume your search skills as at least as good as
mine. You didn't find anything - why should I?

-- 
Brian.



Re: Wine error message

2018-08-04 Thread Gour
On Mon, 23 Jul 2018 14:56:56 +0200
floris  wrote:

> The Wine version in Debian Stable is very old and unsupported. You
> should use the WineHQ packages or use the version from Backports

Thank you for helpful advice!

Few days ago I migrated from Fedora (fc28) where I had serious issues with
4.17.x kernel series experiencing system hangs several times per day when
leaving my machine unattended to Debian Sid where there are nothing similar (so
far).

However, I have a need to run several apps under Wine, but attempt to install
it on my x86_64 was an impossible mission - it seems that wine32 is broken.
Finally, after enabling WineHQ repo and installing from there, eveything is
fine. :-)


Sincerely,
Gour

-- 
There is no possibility of one's becoming a yogī, O Arjuna,
if one eats too much or eats too little, sleeps too much
or does not sleep enough.




Re: CherryTree - was [Re: If not "newbie" then ????]

2018-08-04 Thread Richard Owlett

On 08/04/2018 05:43 AM, Brian wrote:

On Sat 04 Aug 2018 at 05:20:29 -0500, Richard Owlett wrote:


On 07/22/2018 03:07 AM, Richard Owlett wrote:

On 07/21/2018 04:46 PM, cyaiplexys wrote:

[snip]


Try CherryTree. I use that program for everything. It's
cross-platform. I download it from the web site instead of using the
version in the Debian Repo as the latest version fixes some annoying
bugs (of which I kinda forgot what but would quickly be reminded if
I used the repo version).


I browsed its manual then installed the version in the Debian Repo. It
should address two problems:
    1. finding relevant posts.
    2. organizing my bookmarks folder. Like Topsy it just grew.


Is there a mailing list or USENET group where discussion of CherryTree would
be on-topic?

I've found [http://www.giuspen.com/forums/] but have never found web fora
usable.



From the link you give:


   cherrytree

   This forum contains 662 topics and 2,280 replies, and was last
   updated by Klaas Vaak 5 hours, 4 minutes ago.

The forum appears alive and active. Lots to read.


TRY *READING* before responding!!!



Sometimes one has to compromise, adjust and fit into what is available.


Quantity is NOT everything. NOTE BENE the last word of my post.
Apparently your only possible ON-TOPIC response you could have been to 
admit you didn't know.









Re: CherryTree - was [Re: If not "newbie" then ????]

2018-08-04 Thread Brian
On Sat 04 Aug 2018 at 05:20:29 -0500, Richard Owlett wrote:

> On 07/22/2018 03:07 AM, Richard Owlett wrote:
> > On 07/21/2018 04:46 PM, cyaiplexys wrote:
> [snip]
> > > 
> > > Try CherryTree. I use that program for everything. It's
> > > cross-platform. I download it from the web site instead of using the
> > > version in the Debian Repo as the latest version fixes some annoying
> > > bugs (of which I kinda forgot what but would quickly be reminded if
> > > I used the repo version).
> > 
> > I browsed its manual then installed the version in the Debian Repo. It
> > should address two problems:
> >    1. finding relevant posts.
> >    2. organizing my bookmarks folder. Like Topsy it just grew.
> 
> Is there a mailing list or USENET group where discussion of CherryTree would
> be on-topic?
> 
> I've found [http://www.giuspen.com/forums/] but have never found web fora
> usable.

>From the link you give:

  cherrytree

  This forum contains 662 topics and 2,280 replies, and was last
  updated by Klaas Vaak 5 hours, 4 minutes ago.

The forum appears alive and active. Lots to read.

Sometimes one has to compromise, adjust and fit into what is available.

-- 
Brian.



Re: Fwd: [RFR] wml://security/2018/dsa-4261.wml

2018-08-04 Thread Michel
Le 04/08/2018 à 01:10, Ph. Gras a écrit :
> Pour ceux qui ont des problèmes avec synaptic :
> 
Il s'agit de Syntastic, module de vim...



CherryTree - was [Re: If not "newbie" then ????]

2018-08-04 Thread Richard Owlett

On 07/22/2018 03:07 AM, Richard Owlett wrote:

On 07/21/2018 04:46 PM, cyaiplexys wrote:

[snip]


Try CherryTree. I use that program for everything. It's 
cross-platform. I download it from the web site instead of using the 
version in the Debian Repo as the latest version fixes some annoying 
bugs (of which I kinda forgot what but would quickly be reminded if I 
used the repo version).


I browsed its manual then installed the version in the Debian Repo. It 
should address two problems:

   1. finding relevant posts.
   2. organizing my bookmarks folder. Like Topsy it just grew.


Is there a mailing list or USENET group where discussion of CherryTree 
would be on-topic?


I've found [http://www.giuspen.com/forums/] but have never found web 
fora usable.







Re: need help with bashburn

2018-08-04 Thread Thomas Schmitt
Hi,

i wrote:
> You could try to learn the effective wodim command by reporting it in
>  /usr/share/bashburn/lib/burning/burning.sh
> at line 82:

Reading it again, i see that the proposal is too much progammer's jargon.
Let me try again.

In the said file at line 82 insert this shell command

   echo  ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
 ${BBDTAO} ${BBDRIVEROPT} \
 $audio ${BBPADDING} -eject -v ${BBOBURN} "$@" >&2

So that the code beginning at line 80 looks like this:

if (( doit ))
then

   echo  ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
 ${BBDTAO} ${BBDRIVEROPT} \
 $audio ${BBPADDING} -eject -v ${BBOBURN} "$@" >&2

if ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
${BBDTAO} ${BBDRIVEROPT} \
$audio ${BBPADDING} -eject -v ${BBOBURN} "$@"

I expect the message to appear between
  Not enabling overburn...
and
  wodim: No write mode specified.
It is supposed to look like

  wodim dev=/dev/... ...all the other program arguments ...

Maybe it explains the riddle why basburn is broken.


Have a nice day :)

Thomas



Re: Changement de PC : lenteur au boot

2018-08-04 Thread andre_debian
On Friday 03 August 2018 16:07:26 lou wrote:
> Est-ce que l'UUID de la swap est le même que dans le
> fichier /etc/initramfs-tools/conf.d/resume?
> Sinon, remplace le par le bon UUID de ta swap..
> Ensuite, fait un update-initramfs -u..

Merci, ça a bien marché.

André



Re: Changement de PC : lenteur au boot

2018-08-04 Thread andre_debian
On Friday 03 August 2018 23:25:26 Pascal Hambourg wrote:
> Le 03/08/2018 à 17:11, andre_deb...@numericable.fr a écrit :
> >   /etc/initramfs-tools/conf.d/resume :

> Tu veux dire qu'il est vide ?
> Pourtant d'après les messages que tu as cité, la variable RESUME avec un 
> UUID différent de celui du swap présent est bien enregistrée dans la 
> configuration d'initramfs-tools. Peux-tu chercher dans tous les autres 
> fichiers présents dans /etc/initramfs-tools et ses sous-répertoires, par 
> exemple avec
> grep -r RESUME /etc/initramfs-tools

Le fichier existe, avec bon UUID de la swap.

> > update-initramfs -u ne fait aucun changement.
> A quel point de vue ?
> Tu veux dire dans /etc/initramfs-tools/conf.d/resume ? Ce n'est pas son 
> rôle. Il ne fait que le lire.
> Ou tu veux parler de l'UUID enregistré dans l'initramfs généré ?

Le fichier resume n'est pas automatiquement régénéré,
il faut vérifier ou mettre à la mano le bon UUID de la swap.

> > "resume" ne contient que l'UUID de la swap ? :
Oui, c'est bon maintenant.
> 
> Chez moi oui, s'il s'agit d'une partition, sous la forme citée par le 
> message d'avertissement :
> RESUME=UUID=650bc976-62dc-4db9-99fc-30e0785eb060

Pareil chez moi.

On Saturday 04 August 2018 11:13:00 Christophe De Natale wrote:
> > update-initramfs: Generating /boot/initrd.img-4.9.0-6-686-pae
> Ne serait-ce pas un problème de choix de noyau ?
> Quelle est donc l'architecture de cette nouvelle machine ?

Bon noyau.

Le problème vient (est venu) par la copie via rsync d'un pc
vers un nouveau, il faut donc réadapter un certain nombre
de configs plus valables puisque celles de l'ancien pc.

J'aurais pu réinstaller le nouvel ordinateur par une nouvelle
install de stretch, mais je perds trop d'éléments, que je
dois réinstaller, c'est pire que la 1ère méthode.
Si vous avez une méthode plus idoine, je suis preneur :-)

Merci pour votre aide, le système boot maintenant sans erreur,
encore un peu lent par rapport à la stretch de secours-dépannage
nouvellement installée sur une autre partition.

Bonne journée,

André



Re: Adding text to pdf document

2018-08-04 Thread Curt
On 2018-08-04, Rodolfo Medina  wrote:
>
> Thanks, Leandro...  It seems to work fine in adding text, but it seems that, 
> as
> xournal, it does not allow to modify or remove it later on...  Whereas
> masterpdfeditor and inkscape seem to do so...

curty@einstein:~$ apt show flpsed 


 flpsed is a WYSIWYG pseudo PostScript editor. "Pseudo", because you can't
 remove or modify existing elements of a document. But flpsed lets you add
 arbitrary text lines to existing PostScript 1 documents. Added lines can
 later be reedited with flpsed.

It seems to think the contrary. But the proof is in the pudding, which I have
yet to taste.

> Ciao
>
> Rodolfo
>
>>


-- 
Some years ago, when the images which this world affords first opened upon me,
when I felt the cheering warmth of summer and heard the rustling of the leaves
and the warbling of the birds, and these were all to me, I should have wept to
die; now it is my only consolation. --Mary Shelley, Frankenstein; or, The 
Modern Prometheus



Re: Changement de PC : lenteur au boot

2018-08-04 Thread Christophe De Natale

Le 03/08/2018 à 11:00, andre_deb...@numericable.fr a écrit :

[...]

Voici la réponse :
update-initramfs: Generating /boot/initrd.img-4.9.0-6-686-pae

[...]
Ne serait-ce pas un problème de choix de noyau ?
Quelle est donc l'architecture de cette nouvelle machine ?

--
Christophe De Natale



Re: Adding text to pdf document

2018-08-04 Thread Rodolfo Medina
Leandro Noferini  writes:

> Rodolfo Medina  writes:
>
>
> [...]
>
>> Anyone out there has experimented the matter and found a good solution
>> to the problem of adding some bit of text to pdf documents?
>
> I use flpsed to add text to pdf documents.
>
>> In particular, I want to add fingering notation to piano sheet music
>> papers.
>
> Hope this can help in that hard problem!
>
> :-)


Thanks, Leandro...  It seems to work fine in adding text, but it seems that, as
xournal, it does not allow to modify or remove it later on...  Whereas
masterpdfeditor and inkscape seem to do so...

Ciao

Rodolfo



Re: Adding text to pdf document

2018-08-04 Thread Leandro Noferini
Rodolfo Medina  writes:


[...]

> Anyone out there has experimented the matter and found a good solution
> to the problem of adding some bit of text to pdf documents?

I use flpsed to add text to pdf documents.

> In particular, I want to add fingering notation to piano sheet music
> papers.

Hope this can help in that hard problem!

:-)

-- 
Ciao
leandro
http://6xukrlqedfabdjrb.onion/blog/
Alla bellezza preferisco la verità.
E il dubbio è l'unità di misura.


signature.asc
Description: PGP signature


Re: need help with bashburn

2018-08-04 Thread Thomas Schmitt
Hi,

Cindy-Sue Causey wrote:
> Man, cdrskin is
> little. That always amazes me when a lot of power can be had in very
> small Linux programs.

That's because most of the brain sits in libburn.so. The static build is
three times as big.

Champion in size is growisofs, if we do not count the bloat of
libstdc++.so. The whole DVD burning knowledge of the program fits into
100 KiB. (The reason is the lack of any neat software architecture.
A straight hack with no fear of future consequences.)

Xfburn suffers from fatty degeneration by desktop libraries, like the
other big GUI programs K3B and Brasero. Run ldd on them and enjoy all
the funny names.


Fred wrote:
> wodim: Badly placed option. Global options must be before any track.

This happens e.g. with

  wodim -v dev=/dev/sr0 my_file -eject

but not with

  wodim -v dev=/dev/sr0 my_file -tao

So it is not about the man page section in which the trailing option is
listed: GENERAL OPTIONS versus TRACK OPTIONS.
(It is like with Pain Bot: Not a bad robot after all - he was just simply
 raised by a villain.)

cdrskin is not that nitpicking. It would be interesting to see whether
disguising it as wodim would solve the problem for a test:

  mv /usr/bin/wodim /usr/bin/real_wodim
  ln -s cdrskin /usr/bin/wodim

Or less intrusive to the system, change in /usr/share/bashburn/BashBurn.sh
  BB_CDBURNCMD: wodim
to
  BB_CDBURNCMD: cdrskin

cdrskin does not support all options known to wodim.

--

Looking at
  https://sources.debian.org/src/bashburn/3.0.1-2/burning/burning.sh/?hl=82#L82
i wonder how

if ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
${BBDTAO} ${BBDRIVEROPT} \
$audio ${BBPADDING} -eject -v ${BBOBURN} "$@"

called by

if ! _burning ${BBBURNDIR}/*.$imagetype

can cause that wodim error.

You could try to learn the effective wodim command by reporting it in
  /usr/share/bashburn/lib/burning/burning.sh
at line 82:

if (( doit ))
then
+
+   echo  ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
+ ${BBDTAO} ${BBDRIVEROPT} \
+ $audio ${BBPADDING} -eject -v ${BBOBURN} "$@" >&2
+
if ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \
${BBDTAO} ${BBDRIVEROPT} \
$audio ${BBPADDING} -eject -v ${BBOBURN} "$@"

Have a nice day :)

Thomas