Re: Add/Remove appication from MATE Applications drop down menu

2017-11-03 Thread Dominic Knight
On Fri, 2017-11-03 at 08:21 -0500, Richard Owlett wrote:
> My first problem is there are too many games cluttering the Games 
> sub-menu. How to delete selected games from the menu without
> removing 
> the executable?
> 
> My second problem is I do not use Firefox. I wish to replace it with
> a 
> non-Debian executable [SeaMonkey].
> 
> I've seen instructions somewhere [can't recall where] for adding an 
> application to a sub-menu.
> 
> TIA
> 
System (on top menu bar)
look and feel
mate menu

You can create sub-folders to divide the games or other apps into your
own sorted lists by creating new menu (a sub-folder) with your chosen
name and then drag and drop the program titles into the new sub-menu
(sometimes quite tricky to get the exact placement to move the program)



Re: Missing KDE "Switch user" command in Stretch

2017-11-03 Thread Roger Lynn
On 29/10/17 19:50, Eike Lantzsch wrote:
> KDE on Stretch here.
> But sorry can't help. My KDE-leave dialog still has "switch user" on Stretch. 
> I used testing until shortly before the release of Stretch. I changed 
> "testing" to "stretch" in the souces.list to stay with Stable for a while. 
> That way I didn't do a real update.
> But I remember that I had to revert to another theme at some time during my 
> use of testing, because SDDM lost some functionality on the way. Maybe you 
> like to check that out too.
> 
> here ->
> Look and Feel: Breeze
> Desktop theme: Air
> Splash screen: Oxygen
> 
> Login Screen (SDDM): Breeze

Thank you for confirming that the command is supposed to be there and
therefore there must be something wrong with my configuration. Unfortunately
changing the theme doesn't seem to make any difference.

Roger



Re: how to add a /home partition

2017-11-03 Thread Michael Lange
Hi,

On Fri, 3 Nov 2017 22:34:02 +0100
 wrote:

> 
>   - copy the contents of /home to its future location:
(...)
> or cp -a /home/* /mnt

to be nitpicking, shouldn't this rather be

 cp -a /home/. /mnt

just to cover the (admittedly unlikely) case there is some hidden
file or folder in /home ?

Best regards

Michael

.-.. .. ...- .   .-.. --- -. --.   .- -. -..   .--. .-. --- ... .--. . .-.

Killing is wrong.
-- Losira, "That Which Survives", stardate unknown



Re: Why does resolv.conf keep changing?

2017-11-03 Thread Roger Lynn
On 26/10/17 13:40, Stefan Monnier wrote:
>> Given that multiple packages potentially touch/change resolv.conf (at
>> least resolvconf and the various DHCP clients),
> 
> That is not true: when resolvconf is installed, *no package* should
> (modulo bugs) ever change /etc/resolv.conf.
> 
> Instead all changes go through resolvconf, which only modifies
> /run/resolvconf/resolv.conf (and those changes usually get reflected
> into /etc/resolv.conf by making it a symlink to that file, but that's
> not mandatory).
> 
> Stefan "who thinks resolvconf should always be installed"

I think it would be preferable for every package which wants to write to the
resolv.conf file to be required to use the resolvconf package to do so
(which is what I, and I think some other people, thought the situation was
until we read this thread). Uninstalling the resolvconf package would then
mean nothing could write to the resolv.conf file.

I've been in the fortunate position that I've never needed to install the
resolvconf package and nothing has ever tried to modify my resolv.conf file.
I've obviously led a sheltered life.

Roger



[RESOLU] Re: Écran tactile - Pointeur inversé

2017-11-03 Thread David Pinson
Re_bonjour,

Pour celui qui serait curieux de connaitre la raison du problème:
Deux drivers rentraient en conflit,
Je parlais evdev et je n'avais pas remarqué libinput...

Un coup d'oeil dans ce répertoire
/usr/share/X11/xorg.conf.d./
Et vous retrouverez les raisons du conflit,
pour ma part j'ai supprimé le fichier 40-libinput.conf

Librement,
David P.



Le 03/11/2017 à 10:56, David Pinson a écrit :
> Bonjour à tous,
> J'ai récupéré un PC avec écran tactile, c'est un JAO TECH.
> Après d'avoir installé Debian stretch qui s'est bien passé et l'ensemble
> semble fonctionner à merveille !
>
> Mais je bute sur un cas difficile malgré les tutos et forums après
> d'avoir utilisé xinput et xinput_calibrator :
> Le pointeur semble être inversé au niveau de l'axe X (horizontal),
> je tape à un point précis et je retrouve le pointeur exactement à
> l'opposé sur l'écran.
>
> J'ai visité les liens (entre autres) :
> https://www.debian-fr.org/t/calibrage-ecran-tactile/57646
> Aussi, je suis tombé sur ça: https://doc.ubuntu-fr.org/evdev
>
> Rien à faire, même si j'ai inversé les coordonnées, changé les
> paramètres d'inversion...
>
> Auriez-vous des tuyaux ?
> Merci beaucoup !
>



(solved) Re: how to add a /home partition

2017-11-03 Thread Long Wind
 Thank Pol Hallen and to...@tuxteam.de!
tomas's instruction is detailed and professional, many thanks! 




 

On Friday, November 3, 2017 5:34 PM, "to...@tuxteam.de"  
wrote:
 

 -BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 03, 2017 at 09:06:28PM +, Long Wind wrote:
> i have installed wheezy at /dev/sda3, no swapdisk space isn't enough nowi 
> want to add /dev/sda4 as /home partitionbut how to do it? Thanks!

First, take a backup. Things tend to go wrong if they can!

Do all of this as root. Best if no user is logged in (since
this might change the contents of /home during the procedure;
safest is if you boot in single user mode)

 - if not done yet, set up a file system of your choice (I'll
  assume ext4, adjust to taste)

  mkfs.ext4 /dev/sda4

  *THIS WILL WIPE THE CONTENT OF /dev/sda4*

 - add /dev/sda4 to your /etc/fstab:

  a line like this

  /dev/sda4 /home          ext4    defaults        0      2

  (instead of /dev/sda4 you can insert the disk's UUID, which
  you find out with "sudo blkid /dev/sda4". This has the advantage
  that the blkid is sometimes more stable than the device name)

  Adjust your file system 

  *DON'T REBOOT YET*

 - copy the content of /home to your new disk:
  for example
  - mount /dev/sda4 somewhere suitable:

    mount /dev/sda4 /mnt

  - copy the contents of /home to its future location:

    rsync -av /home/ /mnt/
    (slashes are important)

    or cp -a /home/* /mnt

  - test your setup. Either issue "mount -a" and login as normal user
    or just reboot normally (if you were in single user mode, just
    reboot). All working?

  - if yes, you can wipe the content of your old /home, which is
    still taking up space on your /dev/sda3:

  - boot into single user mode

  - unmount /home (which is now /sda4)

    umount home

  - now your old home becomes visible. Wipe it

    rm -Rf /home/*

  - reboot. Done!

You didn't forget to take a backup, did you?

Don't hesitate to ask if anything is unclear. Proceed with caution!

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAln84MkACgkQBcgs9XrR2kbz7wCfeWc8yEixUpWTzGc1hg3hW5Y0
JSQAnA0ivC9LtlVJ0xNBiUcMapKbEofl
=Zjy3
-END PGP SIGNATURE-



   

[no subject]

2017-11-03 Thread max vidocq
Bonjour Angelique
2. Le décor du maitre-autel, dépourvu de tabernade, s' organise autour des 
saintes espèces aujourd' hui contenues dans une colombe eucharistique.
3. Vue du triforium de l' abside, la perspective sur le choeur, la nef et le 
revers de la façade occidentale.
Un choeur en or. Faisant partie du système de la croisée élargie, la première 
travée du choeur est plus profonde que les trois suivantes. Les piles y 
perpétuent le système de quatre colonnettes cantonnées, dans un souci d' unité 
avec la nef. Dans le rond-point à sept pans, les effets d' élancement des 
grandes arcades sont accusés par un entrecolonnement réduit et des arcs 
surhaussés. Dans les parties hautes, pour renforcer la liaison avec les 
fenètres hautes, ou pour souligner la majesté du lieu, des gàbles à crochets 
emboitent les arcatures du triforium. Toutefois, la plus grande innovation du 
choeur est l' introduction d' une lumière plus abondante gràce au triforium 
vitré. A partir de 1751, pour rendre visible le miracle de la messe, on enlève 
successivement des tombeaux et des clotures sculptées consacrées à des saints 
locaux puis on pose des grilles autour du choeur. Attribuées à J.-B. Veyren, 
dit le Vivarais, maitre serrurier, elles allient fer forgé et métal repoussé et 
doré.
 Max


Envoyé à partir d’Outlook


Re: where is gmplayer in jessie

2017-11-03 Thread Siard
Long Wind wrote:
> I can't find mplayer-gui for jessie.

For jessie, only smplayer, gnome-mplayer and kmplayer appear to exist as
a frontend for mplayer.
https://packages.debian.org/search?keywords=mplayer=names=oldstable=all



Re: where is gmplayer in jessie

2017-11-03 Thread Cindy-Sue Causey
On 11/3/17, Pol Hallen  wrote:
>> I can't find mplayer-gui for jessie.
> apt-cache showpkg mplayer-gui
> Package: mplayer-gui
> Versions:
> 2:1.3.0-7
> (/var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-amd64_Packages)
>   Description Language:
>   File:
> /var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-amd64_Packages
>MD5: 9e3f05de5fceb175bfdc57b182d973d0
>   Description Language:
>   File:
> /var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-i386_Packages
>MD5: 9e3f05de5fceb175bfdc57b182d973d0
>   Description Language: en
>   File:
> /var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_i18n_Translation-en
>MD5: 9e3f05de5fceb175bfdc57b182d973d0


I found it in Buster, too, k/t "apt-cache search mplayer-gui". Then..
I'd been playing around in Packages online earlier so it occurred to
me to try this:

https://packages.debian.org/jessie/mplayer-gui

That received back this:

"Error
Package not available in this suite."

Replacing "jessie" with "buster" in that URL lands this (just for starters):

"Package: mplayer-gui (2:1.3.0-7)
movie player for Unix-like systems (GUI variant)"

For whatever development related reasons, it's really not showing up
for Jessie..

Cindy :)
-- 
Cindy-Sue Causey
Talking Rock, Pickens County, Georgia, USA

* runs with duct tape *



Re: where is gmplayer in jessie

2017-11-03 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 03, 2017 at 10:33:37PM +0100, Pol Hallen wrote:
> >I can't find mplayer-gui for jessie.
> apt-cache showpkg mplayer-gui
> Package: mplayer-gui

I think that's not yet in Jessie.

There is a gnome-mplayer, though...

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAln847EACgkQBcgs9XrR2kZEqgCdEUy7wlflhARgkfN9lddxC4X+
SbUAniBvft2WIIrR4OZ1zWsXTP0/IZBe
=9om1
-END PGP SIGNATURE-



Re: how to add a /home partition

2017-11-03 Thread Pol Hallen

i have installed wheezy at /dev/sda3, no swap
disk space isn't enough now
i want to add /dev/sda4 as /home partition
but how to do it? Thanks!


mkfs.ext4 -v /dev/sda4

login from shell (no xorg) with root and mount sda4 to /home2, copy 
/home to /home2, rm home and rename home2 to home


Pol



Re: where is gmplayer in jessie

2017-11-03 Thread Pol Hallen

I can't find mplayer-gui for jessie.

apt-cache showpkg mplayer-gui
Package: mplayer-gui
Versions:
2:1.3.0-7 
(/var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-amd64_Packages)

 Description Language:
 File: 
/var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-amd64_Packages

  MD5: 9e3f05de5fceb175bfdc57b182d973d0
 Description Language:
 File: 
/var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_binary-i386_Packages

  MD5: 9e3f05de5fceb175bfdc57b182d973d0
 Description Language: en
 File: 
/var/lib/apt/lists/ftp.it.debian.org_debian_dists_testing_main_i18n_Translation-en

  MD5: 9e3f05de5fceb175bfdc57b182d973d0


Reverse Depends:
  multimedia-video,mplayer-gui
  mplayer-gui:i386,mplayer-gui
  mplayer-skin-blue,mplayer-gui
  lxde,mplayer-gui
Dependencies:
2:1.3.0-7 - mplayer (0 (null)) mplayer-skin (0 (null)) liba52-0.7.4 (0 
(null)) libaa1 (2 1.4p5) libasound2 (2 1.0.16) libass9 (2 1:0.13.6) 
libaudio2 (0 (null)) libavcodec57 (18 7:3.3.4) libavcodec-extra57 (2 
7:3.3.4) libavformat57 (2 7:3.3.4) libavutil55 (2 7:3.3.4) libbluray2 (2 
1:0.2.2) libbs2b0 (0 (null)) libc6 (2 2.15) libcaca0 (2 0.99.beta17-1) 
libcdio-cdda1 (2 0.83) libcdio-paranoia1 (2 0.83) libcdio13 (2 0.83) 
libdca0 (2 0.0.5) libdirectfb-1.7-7 (2 1.7.7) libdv4 (2 1.0.0) 
libdvdnav4 (2 4.1.3) libdvdread4 (2 4.1.3) libenca0 (2 1.9) libfaad2 (2 
2.7) libfontconfig1 (2 2.12) libfreetype6 (2 2.2.1) libfribidi0 (2 
0.19.2) libgdk-pixbuf2.0-0 (2 2.22.0) libgif7 (2 5.1) libgl1 (0 (null)) 
libglib2.0-0 (2 2.12.0) libgtk2.0-0 (2 2.24.0) libjack-jackd2-0 (18 
1.9.10+20150825) libjack-0.125 (0 (null)) libjpeg62-turbo (2 1.3.1) 
liblirc-client0 (0 (null)) libmad0 (2 0.15.1b-3) libmpeg2-4 (2 0.5.1) 
libmpg123-0 (2 1.13.7) libogg0 (2 1.0rc3) libopenal1 (2 1.14) 
libpng16-16 (2 1.6.2-1) libpostproc54 (2 7:3.3.4) libpulse0 (2 0.99.1) 
libsdl1.2debian (2 1.2.11) libsmbclient (2 2:4.0.3+dfsg1) libspeex1 (2 
1.2~beta3-1) libswresample2 (2 7:3.3.4) libswscale4 (2 7:3.3.4) 
libtheora0 (2 1.0) libtinfo5 (2 6) libvdpau1 (2 0.2) libvorbisidec1 (0 
(null)) libx11-6 (0 (null)) libxext6 (0 (null)) libxinerama1 (0 (null)) 
libxss1 (0 (null)) libxv1 (0 (null)) libxvidcore4 (2 1.2.2) libxvmc1 (0 
(null)) libxxf86dga1 (0 (null)) libxxf86vm1 (0 (null)) zlib1g (2 
1:1.1.4) bzip2 (0 (null)) fontconfig (0 (null)) fonts-freefont-ttf (0 
(null)) mplayer-doc (0 (null)) mplayer (3 2:1.0~rc3+svn20090426-2) 
mplayer-doc (3 2:1.0~rc3+svn20090426-2) mplayer:i386 (3 
2:1.0~rc3+svn20090426-2) mplayer-doc:i386 (3 2:1.0~rc3+svn20090426-2) 
mplayer-gui:i386 (32 (null))

Provides:
2:1.3.0-7 - mplayer-gui:i386 (= 2:1.3.0-7)
Reverse Provides:
mplayer-gui:i386 2:1.3.0-7 (= 2:1.3.0-7)

Pol



Re: how to add a /home partition

2017-11-03 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 03, 2017 at 09:06:28PM +, Long Wind wrote:
> i have installed wheezy at /dev/sda3, no swapdisk space isn't enough nowi 
> want to add /dev/sda4 as /home partitionbut how to do it? Thanks!

First, take a backup. Things tend to go wrong if they can!

Do all of this as root. Best if no user is logged in (since
this might change the contents of /home during the procedure;
safest is if you boot in single user mode)

 - if not done yet, set up a file system of your choice (I'll
   assume ext4, adjust to taste)

   mkfs.ext4 /dev/sda4

   *THIS WILL WIPE THE CONTENT OF /dev/sda4*

 - add /dev/sda4 to your /etc/fstab:

   a line like this

   /dev/sda4 /home   ext4defaults0   2

   (instead of /dev/sda4 you can insert the disk's UUID, which
   you find out with "sudo blkid /dev/sda4". This has the advantage
   that the blkid is sometimes more stable than the device name)

   Adjust your file system 

   *DON'T REBOOT YET*

 - copy the content of /home to your new disk:
   for example
   - mount /dev/sda4 somewhere suitable:

 mount /dev/sda4 /mnt

  - copy the contents of /home to its future location:

rsync -av /home/ /mnt/
(slashes are important)

or cp -a /home/* /mnt

  - test your setup. Either issue "mount -a" and login as normal user
or just reboot normally (if you were in single user mode, just
reboot). All working?

  - if yes, you can wipe the content of your old /home, which is
still taking up space on your /dev/sda3:

  - boot into single user mode

  - unmount /home (which is now /sda4)

umount home

  - now your old home becomes visible. Wipe it

rm -Rf /home/*

  - reboot. Done!

You didn't forget to take a backup, did you?

Don't hesitate to ask if anything is unclear. Proceed with caution!

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAln84MkACgkQBcgs9XrR2kbz7wCfeWc8yEixUpWTzGc1hg3hW5Y0
JSQAnA0ivC9LtlVJ0xNBiUcMapKbEofl
=Zjy3
-END PGP SIGNATURE-



Re: where is gmplayer in jessie

2017-11-03 Thread Pol Hallen

mplayer-gui?

On 03/11/17 22:10, Long Wind wrote:

i have installed mplayer2 for jessie
but where is gmplayer? how to install it?
Thanks!



--
Pol



Re: what package to edit colors?

2017-11-03 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 03, 2017 at 01:19:12PM -0700, Fred wrote:
> On 11/03/2017 10:41 AM, Siard wrote:
> >Fred wrote:
> >>Xcoloredit was available for Solaris to view system standard colors and
> >>enter rgb values.  I found this is available for some of the BSD
> >>distributions but not Debian.  All I could find is kcolorchooser which
> >>is associated with KDE which I don't use.  Is there another color
> >>viewer/editor package for Debian (Jessie) or does anyone know where the
> >>source code for xcoloredit is?
> >xcolors and xcolorsel may be used to view system standard colors.
> >To view/edit colors, there is gcolor2.
> >BTW, kcolorchooser also works without KDE.
> >
> >
> Hi,
> I don't know why I couldn't find those.  I spent about an hour
> looking through the package lists.  I probably wasn't holding my
> mouth right.

OK, here's the fishing rod :-)

Go, no, *run* and install package "apt-file". Issue apt-file update
in a terminal, and then:

  apt-file search xcolor

(or whatever string you come up). Apt-file searches for packages
containing files matching the pattern. You can control whether the
pattern is interpreted as regex or as a literal (sub)string.

> Gcolor2 seems to be the most useful although it doesn't save new
> colors to the database.  It is easy to edit rgb.txt though.
> 
> Thanks for the help!

You're welcome!

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAln81AIACgkQBcgs9XrR2kacggCfRl7/nn0p3fRgijfQ2k99RPco
DccAnR9c0uGp/ExEBtHQdn8f0EKJAgfz
=LuYq
-END PGP SIGNATURE-



Re: what package to edit colors?

2017-11-03 Thread Fred

On 11/03/2017 10:41 AM, Siard wrote:

Fred wrote:

Xcoloredit was available for Solaris to view system standard colors and
enter rgb values.  I found this is available for some of the BSD
distributions but not Debian.  All I could find is kcolorchooser which
is associated with KDE which I don't use.  Is there another color
viewer/editor package for Debian (Jessie) or does anyone know where the
source code for xcoloredit is?

xcolors and xcolorsel may be used to view system standard colors.
To view/edit colors, there is gcolor2.
BTW, kcolorchooser also works without KDE.



Hi,
I don't know why I couldn't find those.  I spent about an hour looking 
through the package lists.  I probably wasn't holding my mouth right.


Gcolor2 seems to be the most useful although it doesn't save new colors 
to the database.  It is easy to edit rgb.txt though.


Thanks for the help!
Best regards,
Fred



[no subject]

2017-11-03 Thread max vidocq
 Bonjour Angelique
Comme dans les  édifices de méme génération, le sanctuaire est d' une ampleur 
exceptionnelle afin d' y rassembler les stalles des  chanoines. La majeure 
partie d' entre elles a résisté à la suppression du jubé en 1755 et à l' 
élargissement de l' entrée axiale: soixante-deux hautes subsistent sur les 
soixante-six d' origine et quarante-huit basses au lieu de cinquante-quatre. 
Sculptés dans le chène entre 1508 et 1519, à la charnière du Mayen Age et de la 
Renaissance, quelque quatre mille personnages interprètent des épisodes de l' 
Ancien, du Nouveau Testament ou de la vie de la Vierge, voire des scènes de 
genre. La virtuosité du décor des accoudoire, des rampes, des jouées et du dais 
continu, confirme le talent des huchiers picards. A la fois témoignage des 
préoccupations spirituelles des chanoines, ces stalles sont aussi le reflet de 
la société amiénoise du temps. Le programme des réaménagements, commandés par 
l' évèque d' Orléans de la Motte et le chanoine Cornet de Coupel au xvlle 
siècle, répond à une volonté de mise au gout du jour du mobilier du sanctuaire. 
Lui conférant la pompe et la théàtralité indispensables à la célébration de l' 
Eucharistie, il vise aussi à masquer les travées du déambulatoire afin d' 
éviter que les fidèles ne troublent le saint Sacrifice en se rendant à la 
petite paroisse. Dans le gout baroque, les marbres précieux du dallage 
soulignent la sobriété des enduits fausse pierre et l' éclat de l' or des bois 
sculptés. L' élégance et la juste proportion du maitre-autel et de sa gloire, 
réalisés en 1768-1771 par P.-J. Christophle et J.-B. Dupuis, valent à l' 
ensemble de ce décor d' échapper à la destruction du courant néogothique du 
xlxe siècle.
Max


Envoyé à partir d’Outlook


Re: two graphics cards and two monitors

2017-11-03 Thread Don Armstrong
On Fri, 03 Nov 2017, Eric S Fraga wrote:
> I am trying to get a similar system configure with Debian testing/buster
> and not getting anywhere beyond having two monitors on a single card
> recognised.  I have three monitors, two on first card and 1 on second
> card.  Only the ones of the first card are getting managed by
> Xorg.  Although the second card and associated monitor are found by
> Xorg, I cannot seem to get Xorg to configure and actually use this third
> monitor.

What does the output of xrandr; look like?

What happens if you run xrandr --output DVI-I-1-2 --auto; ?

> I can post Xorg.0.log as well as my current xorg.conf if anybody is
> interested. Without an xorg-conf at all, I get the same effective
> behaviour: two monitors working but third one ignored.

Also, is there any reason why you're defining a monitor section in your
xorg.conf? [If your displays are just rotated, you'd be better off
issuing xrandr commands to run the rotation immediately upon login or
similar, IMO. Or using autorandr or similar.]

-- 
Don Armstrong  https://www.donarmstrong.com

Le temps est un grand maître, dit-on; le malheur est qu'il soit un
maître inhumain qui tue ses élèves.
Time is a great teacher, but unfortunately it kills all its pupils.
 -- Hector Berlioz



Re: what package to edit colors?

2017-11-03 Thread Siard
Fred wrote:
> Xcoloredit was available for Solaris to view system standard colors and 
> enter rgb values.  I found this is available for some of the BSD 
> distributions but not Debian.  All I could find is kcolorchooser which 
> is associated with KDE which I don't use.  Is there another color 
> viewer/editor package for Debian (Jessie) or does anyone know where the 
> source code for xcoloredit is?

xcolors and xcolorsel may be used to view system standard colors.
To view/edit colors, there is gcolor2.
BTW, kcolorchooser also works without KDE.



Re: what package to edit colors?

2017-11-03 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 03, 2017 at 09:46:37AM -0700, Fred wrote:
> Hello,
> 
> Xcoloredit was available for Solaris to view system standard colors
> and enter rgb values.  I found this is available for some of the BSD
> distributions but not Debian.  All I could find is kcolorchooser
> which is associated with KDE which I don't use.  Is there another
> color viewer/editor package for Debian (Jessie) or does anyone know
> where the source code for xcoloredit is?

At first sight I only see two: xcolors and xcolorsel. They don't seem
to have the possibility to enter RGB values (they do show them, though).

Searching the intrawebs for xcoloredit yields some hits -- it seems
to have been part of the X suite at some time. No idea why it isn't
packaged, though.

Cheers
- -- tomás
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAln8qZAACgkQBcgs9XrR2kb0TwCfSvO/B3A5qGhZtm39XmdlbhTM
Z/kAnikjLSYkL/GabDZf1LcCfKUGWhRt
=ALv4
-END PGP SIGNATURE-



Re: USB camera;

2017-11-03 Thread deloptes
pe...@easthope.ca wrote:

> * From: Reco 
> * Date: Mon, 2 Oct 2017 18:50:58 +0300
>> I suggest you to file a bug report unless you did it already.
> 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877558
> 
> A Labtec/Vivitar camera has a similar failure. Is any USB camera
> working in Debian 9?
> 
> Many packages in 9 are being updated.  Maintainers must be swamped.
> I can be patient until commotion subsides.
> 
> Thanks for the help,... Peter E.

ID 0471:2036 Philips (or NXP) Webcam SPC1030NC

works very well - already ~10y in use

regards



what package to edit colors?

2017-11-03 Thread Fred

Hello,

Xcoloredit was available for Solaris to view system standard colors and 
enter rgb values.  I found this is available for some of the BSD 
distributions but not Debian.  All I could find is kcolorchooser which 
is associated with KDE which I don't use.  Is there another color 
viewer/editor package for Debian (Jessie) or does anyone know where the 
source code for xcoloredit is?


Best regards,
Fred Boatwright



Verizon updated list

2017-11-03 Thread Erin Marino
Hi,



I was wondering if you would be interested in targeting a list of Verizon, 
Value Added Re-Sellers (VARs) and Individual Software Vendors (ISVs) and System 
Integrators (Sis) for your upcoming Channel and Partner marketing strategy for 
Q4-2017 and Q1-2018.



Information fields: Names, Title, Email, Phone, Company Name, Company URL, 
Company physical address, SIC Code, Industry, Company Size (Revenue and 
Employee).



If you are interested, let me know your targeted geography so that I will get 
back to you with the counts and more information.



Regards,

Erin

Sales Manager



If you are not interested in receiving further emails, please answer back with 
"overlook" in the title.





Re: Problemas al abrir enlaces externos desde debian

2017-11-03 Thread Felix Perez
El 3 de noviembre de 2017, 10:47, Miguel Matos
 escribió:
> 2017-11-02 22:21 GMT-04:00 Felix Perez :
>> El 2 de noviembre de 2017, 22:28, Miguel Matos
>>  escribió:
>>> 2017-11-02 18:08 GMT-04:00 Felix Perez :
 El 2 de noviembre de 2017, 15:52, Miguel Matos
  escribió:
> Muy buenas a la lista, quizás ya lo sabían: en casa tengo Debian
> Testing y en el trabajo ZorinOS (una versión trucada de Ubunut hecho
> para que los windowseros se adapten mejor a nuestro mundo). Ambos dos
> tienen KDE Plasma actualizado recientemente, pero en mi Debian tengo
> este conflicto: cada enlace que abre el navegador lo hace con un
> archivo que ubica en ~/.cache/(...), algo de kioexec, y en sitios que
> requieren inicio de sesión representa un gran problema; en tanto que
> en zorin si abre los sitios web que hace referencia. Me preguntaba si
> alguien ha pasado por lo mismo, como no sé cómo definir qué problema
> es este, no lo puedo googlear. Y en la mayoría de los casos muestra un
> alerta que dice que la carpeta taldecual en kioexec ya existe. Me
> gustaría que me dieran algo de luces (y ya probé copiando el error y
> googlearlo, pero las opciones disponibles no funcionan conmigo),
> porque no sé si le falta alguna configuración al debian que sí la
> tenga el zorin...
> --

 Revisa este par de enlaces, quizás te den luces:

 https://board.jdownloader.org/showthread.php?t=74904

 https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/175597



 --
 usuario linux  #274354
 normas de la lista:  http://wiki.debian.org/es/NormasLista
 como hacer preguntas inteligentes:
 http://www.sindominio.net/ayuda/preguntas-inteligentes.html

>>>
>>> Okei, para actualizar la nota, ya los probé, y no tuve éxito: del
>>> primero desconozco si puedo instalar "firejail", pero no puedo obtener
>>> los %s que espera recibir porque el aplicativo que abre el navegador
>>> lo manda hacia el directorio, y no me funcionó. Del segundo ninguna de
>>> las referencias coincide con el problema que yo tengo, indica que pasa
>>> con dolphin, y yo tengo instalado nautilus y konqueror. Pero gracias
>>> de todos modos.
>>>
>> Ok.
>> No se si buscaste así pero busqué por:
>>
>> https://www.google.cl/search?ei=UtD7Wbv1HsyAwgTR2onQDg=kioexec+kde=kioexec+kde_l=psy-ab.3..0i8i30k1l2.6401.6401.0.6627.1.1.0.0.0.0.115.115.0j1.1.00...1.1.64.psy-ab..0.1.1140.tlCi8OvIoLk
>>
>> El el equipo con KDE que tuve acceso, no pude replicar la situación.
>> Suerte.
>>
>>
>> --
>> usuario linux  #274354
>> normas de la lista:  http://wiki.debian.org/es/NormasLista
>> como hacer preguntas inteligentes:
>> http://www.sindominio.net/ayuda/preguntas-inteligentes.html
>>
> Vale, en la noche trataré de inidicar los errores que muestra. Por
> cierto, no he conseguido un reemplazo de gnome-screenshots en kde
> plasma, o al menos no he oído de alguno, así que las capturas de
> pantalla serán a pantalla completa.
>
>

Spectacle y Ksnapshot mencionan para kde plasma


-- 
usuario linux  #274354
normas de la lista:  http://wiki.debian.org/es/NormasLista
como hacer preguntas inteligentes:
http://www.sindominio.net/ayuda/preguntas-inteligentes.html



Re: USB camera;

2017-11-03 Thread Reco
On Fri, Nov 03, 2017 at 06:54:29AM -0700, pe...@easthope.ca wrote:
> * From: Reco 
> * Date: Mon, 2 Oct 2017 18:50:58 +0300
> > I suggest you to file a bug report unless you did it already.
> 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877558
> 
> A Labtec/Vivitar camera has a similar failure. Is any USB camera 
> working in Debian 9?  

This one does, at least right now it did with mpv.
lsusb tells me that it's:

058f:5608 Alcor Micro Corp

Got this one built into a laptop so I doubt it can be purchased separately.

Reco



Re: USB camera;

2017-11-03 Thread peter
*   From: Reco 
*   Date: Mon, 2 Oct 2017 18:50:58 +0300
> I suggest you to file a bug report unless you did it already.

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877558

A Labtec/Vivitar camera has a similar failure. Is any USB camera 
working in Debian 9?  

Many packages in 9 are being updated.  Maintainers must be swamped.  
I can be patient until commotion subsides.

Thanks for the help,... Peter E.


-- 

123456789 123456789 123456789 123456789 123456789 123456789 123456789
Tel: +1 360 639 0202  Pender Is.: +1 250 629 3757
http://easthope.ca/Peter.html  Bcc: peter at easthope. ca



Re: two graphics cards and two monitors

2017-11-03 Thread Eric S Fraga
On Sunday,  1 Jan 2017 at 22:03, jurek wrote:
> How to use two graphics cards and two monitors on nouveau driver.I
> have Nvidia gtx 650 ti boost and Nvidia gt 240 card.

Did you get anywhere with this?

I am trying to get a similar system configure with Debian testing/buster
and not getting anywhere beyond having two monitors on a single card
recognised.  I have three monitors, two on first card and 1 on second
card.  Only the ones of the first card are getting managed by
Xorg.  Although the second card and associated monitor are found by
Xorg, I cannot seem to get Xorg to configure and actually use this third
monitor.

Details follow:

$ dpkg --list '*nouveau*'
libdrm-nouveau2:amd642.4.84-2 
xserver-xorg-video-nouveau   1:1.0.15-2   

$ lspci | grep VGA
03:00.0 VGA compatible controller: NVIDIA Corporation GM107GL [Quadro K620] 
(rev a2)
04:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev 
a2)

$ uname -a
Linux xxx 4.13.0-1-amd64 #1 SMP Debian 4.13.4-2 (2017-10-15) x86_64 GNU/Linux

Selected lines from Xorg.0.log:

[  3877.659] (--) NOUVEAU(0): Chipset: "NVIDIA NV117"
[  3877.659] (II) NOUVEAU(0): Creating default Display subsection in Screen 
section
[...]
[  3877.693] (II) NOUVEAU(0): Output DVI-I-1 using monitor section rotated
[...]
[  3877.768] (II) NOUVEAU(0): Monitor name: DELL U2412M
[...]
[  3877.783] (II) NOUVEAU(0): Monitor name: DELL U3818DW
[...]
[  3877.783] (II) NOUVEAU(0): Output DVI-I-1 connected
[  3877.783] (II) NOUVEAU(0): Output DP-1 connected
[...]
[  3877.783] (--) NOUVEAU(G0): Chipset: "NVIDIA NVA8"
[...]
[  3877.795] (II) NOUVEAU(G0): Output DVI-I-1-2 using monitor section rotated
[  3877.851] (II) NOUVEAU(G0): Output HDMI-1-1 has no monitor section
[  3877.862] (II) NOUVEAU(G0): Output VGA-1-1 has no monitor section
[...]
[  3878.010] (II) NOUVEAU(G0): Monitor name: SHARP HDMI

but then nothing is connected to this monitor or this monitor is not
connected to anything...  The strange thing is that the output says that
output DVI-I-1-2 will use the "rotated" monitor section which has
already been assigned to the DVI-I-1 output.

I can post Xorg.0.log as well as my current xorg.conf if anybody is
interested.  Without an xorg-conf at all, I get the same effective
behaviour: two monitors working but third one ignored.

Any suggestions welcome.

Thank you,
-- 
: Eric S Fraga
: in Emacs 27.0.50 + Gnus v5.13 + evil-git-5d040cd
: BBDB version 3.1.2 (2017-01-30 14:47:26+00:00)


signature.asc
Description: PGP signature


Re: Strange message

2017-11-03 Thread Thomas Schmitt
Hi,

myc...@tutanota.com wrote:
> I keep getting this message from maxvid...@hotmail.fr :-
> ...
> Does anyone else receive the above message ?

I do, as probably the other subscribers of debian-user.

Looks like texts snippets taken from a french book about the art history
of old church acessories. Hard to say what this shall tell us.
A google query for maxvid...@hotmail.fr only yields posts to debian-user
as valid matches. So like with the "bit.ly" reflector spami a few months
ago, this is strangely focused on our list.


Have a nice day :)

Thomas



Re: Problemas al abrir enlaces externos desde debian

2017-11-03 Thread Miguel Matos
2017-11-02 22:21 GMT-04:00 Felix Perez :
> El 2 de noviembre de 2017, 22:28, Miguel Matos
>  escribió:
>> 2017-11-02 18:08 GMT-04:00 Felix Perez :
>>> El 2 de noviembre de 2017, 15:52, Miguel Matos
>>>  escribió:
 Muy buenas a la lista, quizás ya lo sabían: en casa tengo Debian
 Testing y en el trabajo ZorinOS (una versión trucada de Ubunut hecho
 para que los windowseros se adapten mejor a nuestro mundo). Ambos dos
 tienen KDE Plasma actualizado recientemente, pero en mi Debian tengo
 este conflicto: cada enlace que abre el navegador lo hace con un
 archivo que ubica en ~/.cache/(...), algo de kioexec, y en sitios que
 requieren inicio de sesión representa un gran problema; en tanto que
 en zorin si abre los sitios web que hace referencia. Me preguntaba si
 alguien ha pasado por lo mismo, como no sé cómo definir qué problema
 es este, no lo puedo googlear. Y en la mayoría de los casos muestra un
 alerta que dice que la carpeta taldecual en kioexec ya existe. Me
 gustaría que me dieran algo de luces (y ya probé copiando el error y
 googlearlo, pero las opciones disponibles no funcionan conmigo),
 porque no sé si le falta alguna configuración al debian que sí la
 tenga el zorin...
 --
>>>
>>> Revisa este par de enlaces, quizás te den luces:
>>>
>>> https://board.jdownloader.org/showthread.php?t=74904
>>>
>>> https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/175597
>>>
>>>
>>>
>>> --
>>> usuario linux  #274354
>>> normas de la lista:  http://wiki.debian.org/es/NormasLista
>>> como hacer preguntas inteligentes:
>>> http://www.sindominio.net/ayuda/preguntas-inteligentes.html
>>>
>>
>> Okei, para actualizar la nota, ya los probé, y no tuve éxito: del
>> primero desconozco si puedo instalar "firejail", pero no puedo obtener
>> los %s que espera recibir porque el aplicativo que abre el navegador
>> lo manda hacia el directorio, y no me funcionó. Del segundo ninguna de
>> las referencias coincide con el problema que yo tengo, indica que pasa
>> con dolphin, y yo tengo instalado nautilus y konqueror. Pero gracias
>> de todos modos.
>>
> Ok.
> No se si buscaste así pero busqué por:
>
> https://www.google.cl/search?ei=UtD7Wbv1HsyAwgTR2onQDg=kioexec+kde=kioexec+kde_l=psy-ab.3..0i8i30k1l2.6401.6401.0.6627.1.1.0.0.0.0.115.115.0j1.1.00...1.1.64.psy-ab..0.1.1140.tlCi8OvIoLk
>
> El el equipo con KDE que tuve acceso, no pude replicar la situación.
> Suerte.
>
>
> --
> usuario linux  #274354
> normas de la lista:  http://wiki.debian.org/es/NormasLista
> como hacer preguntas inteligentes:
> http://www.sindominio.net/ayuda/preguntas-inteligentes.html
>
Vale, en la noche trataré de inidicar los errores que muestra. Por
cierto, no he conseguido un reemplazo de gnome-screenshots en kde
plasma, o al menos no he oído de alguno, así que las capturas de
pantalla serán a pantalla completa.


-- 

Ayuda para hacer preguntas inteligentes: http://is.gd/NJIwRz



Add/Remove appication from MATE Applications drop down menu

2017-11-03 Thread Richard Owlett
My first problem is there are too many games cluttering the Games 
sub-menu. How to delete selected games from the menu without removing 
the executable?


My second problem is I do not use Firefox. I wish to replace it with a 
non-Debian executable [SeaMonkey].


I've seen instructions somewhere [can't recall where] for adding an 
application to a sub-menu.


TIA



Re: Stretch : mount Jessie encrypted HDD via USB

2017-11-03 Thread David Wright
On Thu 02 Nov 2017 at 08:08:00 (-0200), Eduardo M KALINOWSKI wrote:
> On 01-11-2017 22:44, David Wright wrote:
> > OK, so that sounds as if removing the USB device before   vgchange -an
> > will not affect the device but only the host PC.
> > 
> > And my own experience suggests that the same is true if the
> > unlocked device is removed before locking it.
> > 
> > It's not that I don't perform the correct sequence of steps,
> > but just that accidents happen and I like to be prepared for
> > the consequences. The effects of removing a device without
> > unmounting it are well documented and have been for years.
> > OTOH I have found a deafening silence about the effects of
> > not locking an encrypted device.
> 
> I don't know what you mean by 'locking', as it is not a term used by
> dm-crypt volumes.

Here are my notes on using an encrypted USB device. This crib
is an annotated version of output from script. I've not used
lvm/vgchange, so that was the main focus of my query.

## Using (non-removable device) the easier way:
## /etc/fstab entry is:
/dev/mapper/luks-3d863b13-5914-476b-b7a5-6e9af95673e6 /media/adam01 ext4 
rw,errors=remount-ro,user,noauto

$ udisksctl unlock --block-device 
/dev/disk/by-uuid/3d863b13-5914-476b-b7a5-6e9af95673e6
Passphrase:
Unlocked /dev/sdb1 as /dev/dm-0.
$ mount /media/adam01/
$ 

# when finished:

$ umount /media/adam01/
$ udisksctl lock --block-device 
/dev/disk/by-uuid/3d863b13-5914-476b-b7a5-6e9af95673e6
Locked /dev/sdb1.
$ 

Hence my use of the term "locked".

> But if it means closing the disk with the 'luksClose' command of
> cryptseupt, I'd definitely do that before disconnecting the disk.

That I do, that I'm happy to do, and that isn't the focus of this
question.

> It probably won't hurt to simply unplug if everything has already been
> written to the disk, but it's definitely safer to properly close the
> encrypted volume.

AFAICT umount and sync (or a period of time passing) writes everything
to the device that it needs.

> If you run LVM on the encrypted volume, you'll most likely have to run
> 'vgchange -an', otherwise the volume will be considered 'in use' and you
> won't be able to luksClose it.

Yes, I understand that. But is that only for the benefit of the
PC, not the device that was plugged in? When you unmount, things
get written to the device. Is the same true of vgchange -an and
cryptsetup luksClose? I think not for the latter.

> The commands in deloptes' message seem correct and are what you need.

Yes, I am aware that the solution is precisely correct. My question
is aimed at the case where everything *doesn't* go exactly to plan,
ie possible real-world scenarios.

Let me give you an unsafe analogy of what I mean. You pull up at
a filling station¹ and fuel your car²³⁴. Then you pull out the hose,
replace the cap on the filler tube, close the little flap⁵, and
drive off⁸. As far as the *car* is concerned, everything is 100% OK.
The only repercussions are with the filling station and your legal
liability.

¹ 1. plugin in / connect the usb to the computer
² 2. cryptsetup luksOpen /dev/sd1 cryptedDisk
³ 3. vgchange -ay cryptedDisk
⁴ 4. mount /dev/mapper/cryptedDisk- ...

⁵ 1. umount /dev/mapper/cryptedDisk-
⁶ 2. vgchange -an cryptedDisk
⁷ 3. cryptsetup luksClose cryptedDisk
⁸ 4. unplug

Cheers,
David.



[no subject]

2017-11-03 Thread max vidocq
 Bonjour Angelique
Coté sud, le soubassement plein, haut de 2, 45 mètres, relie deux travées. Dans 
la première il accueille le gisant de l' évèque Ferry de Beauvoir mort en 1472 
et transféré ici en 1489 par son neveu Adrien de Hénencourt, doyen du chapitre, 
donateur de l' ensemble, et dont le tombeau est logé dans la deuxième travée. 
Ce soubassement est surmonté d' arcatures, dont les quatre premières niches 
relatent l' histoire de saint Firmin. Le premier groupe montre l' évèque 
évangélisateur faisant son entrée dans la ville d' Amiens; la population est 
venue se masser à la porte de la cité fortifiée. Dans la scène suivante, saint 
Firmin en chaire évangélise les Amiénois, qui se pressent autour de lui plus 
nombreux encore que précédemment. La peinture en arrière-plan permet de 
reconnaitre au centre de la composition l' enorme flèche d' ardoises du beffroi 
communal. Dans le troisième tableau, la cuve destinée au baptème matérialise la 
transgression de la loi romaine qui a pour conséquence l' arrestation et la 
décollation de saint Firmin, présentée en épilogue du quatrième groupe. Là, sud 
le fond, la façade occidentale de la cathédrale est peinte telle qu' elle était 
en 1490, lorsque l' ensemble a été sculpté. L' entrecolonnement suivant décrit 
la découverte des reliques de saint Firmin par saint Sauve à la fin du vle 
siècle. Probablement exécutée en 1530 par Antoine Anquier, le sculpteur du 
gisant du commanditaire, cette parure de pierre se décompose encore en quatre 
séquences. La prédication de l' évèque est le premier sujet; suivent la 
révélation du lieu de sépulture de saint Firmin, son exhumation et enfin la 
translation de ses reliques jusqu' à la cathédrale.
  Max


Envoyé à partir d’Outlook


Strange message

2017-11-03 Thread mycomp

I keep getting this message from maxvid...@hotmail.fr :-

Bonjour Angelique
A l' entrée du choeur se dressait autrefois le jubé édifié en 1291. Son 
démantèlement au xvllle siècle découle des mutations de la liturgie. Des 
emmarchements de marbre rouge et une grille monumentale dessinée par Michel 
Ange Slodtz ouvrent dès lors une perspective sur le sanctuaire. A proximité, on 
reste intrigué par les fonts baptismaux, témoins d' une époque ou le baptème 
était visiblement pratiqué par immersion. Sur le soubassement ont été placées 
en 1648 huit tables de marbre noir destinées à commémorer les noms de tous les 
maitres de la confrérie du Puy Notre-Dame dont l' autel est en face.
Saint Jacques le Majeur. Offerte par le chanoine Guillaume aux Cousteaux en 
1511, cette cloture polychrome est placée sur le versant ouest du bras sud du 
transept. En haut relief, elle raconte un épisode légendaire de l' histoire de 
saint Jacques le Majeur. L' apotre lutte avec le magicien Hermogène: Philetus, 
le disciple du mage, se convertit; pétrifié par son maitre, Philetus est 
délivré par le manteau de saint Jacques; saint Jacques retourne les diables 
contre Hermogène; Hermogène garrotté, délivré et pardonné.
Aux origines spirituelles de la cité. Sur quatre travées, au nord comme au sud, 
le sanctuaire est accompagné de doubles collatéraux. Les bascotés externes 
aboutissent à deux grands retables de marbre du xllle siècle primitivement 
placée de part et d' autre de l' entrée principale du choeur tandis que les 
bas-cotés internes desservent le déambulatoire. Ces derniers sont bordés de 
clotures ornées de hauts reliefs polychromes d' une très grande richesse 
décorrative.
 Max


Envoyé à partir d’Outlook   

Does anyone else receive the above message ?


--
Securely sent with Tutanota. Claim your encrypted mailbox today!
https://tutanota.com

Re: adsl route

2017-11-03 Thread Pol Hallen
What manages the wan interface ? /etc/network/interfaces, 


statically with /etc/network/interfaces


NetworkManager, other ?


I don't have X


Which server ?


debian 9.x

my server has 2 network interfaces


What does it mean exactly ?


that, suddently internet goes down... routing table is ok


Can you still reach (ping) the modem from the router ?


sure


What is the output of "traceroute 8.8.8.8" from the router ?


none


If the above works, did you check DNS resolution (with host or dig) ?


no


Did you try to reboot the modem ?


same problem
 thanks

Pol



Re: adsl route

2017-11-03 Thread Pascal Hambourg

Le 03/11/2017 à 10:32, Debian EN a écrit :

Hello to all :-) I've fastweb italian adsl

2 networks interfaces:

wan 192.168.0.2/30 --> modem 192.168.0.1/30
eth0 192.168.1.0/24


(prefix length corrected in quote)

What manages the wan interface ? /etc/network/interfaces, 
NetworkManager, other ?

How is it configured ? Statically, by DHCP ?


everything works but:

sometimes when I reboot my server,


Which server ? Do you mean the router with the two network interfaces ?


DSL stops works


What does it mean exactly ?
Is the wan interface configured properly ? Check with "ip addr" and "ip 
route" on the router.

Can you still reach (ping) the modem from the router ?
What is the output of "traceroute 8.8.8.8" from the router ?
If the above works, did you check DNS resolution (with host or dig) ?

You can compare these results with the results when everything works.


I have to call the provider and I don't know how and what, reactivates DSL


Did you try to reboot the modem ?



Re: adsl route

2017-11-03 Thread Debian EN

sorry for the mistake :-/

network /30 on both

Pol

On 11/03/2017 11:57 AM, Pascal Hambourg wrote:

Le 03/11/2017 à 10:32, Debian EN a écrit :

Hello to all :-) I've fastweb italian adsl

2 networks interfaces:

wan 192.168.0.2/31 --> modem 192.168.0.1/31
eth0 192.168.1.0/24

everything works but:


Really ? It shouldn't.
192.168.0.1/31 and 192.168.0.2/31 are not in the same subnet.

$ ipcalc 192.168.0.1/31
Address:   192.168.0.1  1100.10101000..000 1
Netmask:   255.255.255.254 = 31 ...111 0
Wildcard:  0.0.0.1  ...000 1
=>
Network:   192.168.0.0/31   1100.10101000..000 0
HostMin:   192.168.0.0  1100.10101000..000 0
HostMax:   192.168.0.1  1100.10101000..000 1
Hosts/Net: 2    Class C, Private Internet, PtP Link RFC 3021

$ ipcalc 192.168.0.2/31
Address:   192.168.0.2  1100.10101000..001 0
Netmask:   255.255.255.254 = 31 ...111 0
Wildcard:  0.0.0.1  ...000 1
=>
Network:   192.168.0.2/31   1100.10101000..001 0
HostMin:   192.168.0.2  1100.10101000..001 0
HostMax:   192.168.0.3  1100.10101000..001 1
Hosts/Net: 2    Class C, Private Internet, PtP Link RFC 3021

If the prefix length on the modem is really /31, then the only other 
address in the same subnet is 192.168.0.0, not 192.168.0.2.


At first glance it may look odd because this address is usually reserved 
as the network address, but /31 is an exception per RFC 3021 : the two 
addresses are usable as host addresses on a point-to-point link, there 
are neither reserved network nor directed broadcast addresses. Otherwise 
a /31 subnet would be useless, as it would contain only the reserved 
network and broadcast addresses, leaving no room for host addresses.


But are you sure the prefix length on the modem is /31 and not /30 ?
With /30, 192.168.0.1 and 192.168.0.2 would be the two host addresses in 
the subnet.


$ ipcalc 192.168.0.1/30
Address:   192.168.0.1  1100.10101000..00 01
Netmask:   255.255.255.252 = 30 ...11 00
Wildcard:  0.0.0.3  ...00 11
=>
Network:   192.168.0.0/30   1100.10101000..00 00
HostMin:   192.168.0.1  1100.10101000..00 01
HostMax:   192.168.0.2  1100.10101000..00 10
Broadcast: 192.168.0.3  1100.10101000..00 11
Hosts/Net: 2 Class C, Private Internet



--
Pol



Re: adsl route

2017-11-03 Thread Pascal Hambourg

Le 03/11/2017 à 10:32, Debian EN a écrit :

Hello to all :-) I've fastweb italian adsl

2 networks interfaces:

wan 192.168.0.2/31 --> modem 192.168.0.1/31
eth0 192.168.1.0/24

everything works but:


Really ? It shouldn't.
192.168.0.1/31 and 192.168.0.2/31 are not in the same subnet.

$ ipcalc 192.168.0.1/31
Address:   192.168.0.1  1100.10101000..000 1
Netmask:   255.255.255.254 = 31 ...111 0
Wildcard:  0.0.0.1  ...000 1
=>
Network:   192.168.0.0/31   1100.10101000..000 0
HostMin:   192.168.0.0  1100.10101000..000 0
HostMax:   192.168.0.1  1100.10101000..000 1
Hosts/Net: 2Class C, Private Internet, PtP Link RFC 3021

$ ipcalc 192.168.0.2/31
Address:   192.168.0.2  1100.10101000..001 0
Netmask:   255.255.255.254 = 31 ...111 0
Wildcard:  0.0.0.1  ...000 1
=>
Network:   192.168.0.2/31   1100.10101000..001 0
HostMin:   192.168.0.2  1100.10101000..001 0
HostMax:   192.168.0.3  1100.10101000..001 1
Hosts/Net: 2Class C, Private Internet, PtP Link RFC 3021

If the prefix length on the modem is really /31, then the only other 
address in the same subnet is 192.168.0.0, not 192.168.0.2.


At first glance it may look odd because this address is usually reserved 
as the network address, but /31 is an exception per RFC 3021 : the two 
addresses are usable as host addresses on a point-to-point link, there 
are neither reserved network nor directed broadcast addresses. Otherwise 
a /31 subnet would be useless, as it would contain only the reserved 
network and broadcast addresses, leaving no room for host addresses.


But are you sure the prefix length on the modem is /31 and not /30 ?
With /30, 192.168.0.1 and 192.168.0.2 would be the two host addresses in 
the subnet.


$ ipcalc 192.168.0.1/30
Address:   192.168.0.1  1100.10101000..00 01
Netmask:   255.255.255.252 = 30 ...11 00
Wildcard:  0.0.0.3  ...00 11
=>
Network:   192.168.0.0/30   1100.10101000..00 00
HostMin:   192.168.0.1  1100.10101000..00 01
HostMax:   192.168.0.2  1100.10101000..00 10
Broadcast: 192.168.0.3  1100.10101000..00 11
Hosts/Net: 2 Class C, Private Internet



[no subject]

2017-11-03 Thread max vidocq
 Bonjour Angelique
1. Vétus à la mode de ce xve siècle finissant, les Amiénois accueillent Firmin 
à la porte de leur ville frappée aux armes de France.
2. Au-dessus d' un bel autel, la Vierge des Douleurs siège au centre d' un 
puissant retable de marbre, du xvllle siècle, orné de colonnes torses.
3. Le tombeau de l' évèque Ferry de Beauvoir, en bonne place, montre le gisant 
du défunt dans un enfeu aux parois peintes à fresque.
4. Aimé et Louis Duthoit, Restitution de l' intérieur de la cathédrale d' 
Amiens vers la fin du xvllle siècle avec le jubé et les puys, aquarelle sur 
papier blanc.
La confrérie du Puy Notre-Dame. A l' origine d' un concours littéraire honorant 
la Vierge chaque année, cette confrérie se voit accorder à la fn du xve siècle 
l' autel du pilier rouge sur le fianc sud du choeur. Elle accroit son prestige 
à partir de 1451, partique un véritable mécénat artistique et atteint son 
apogée aux xvle et xvllle siècles. Pour mieux mesurer l' importance des oeuvres 
qu' elle accumule jusqu' au xvllle siècle, et dont il ne reste que quelques 
témoins dans la cathédrale à la fin de l' Ancien Régime, il faut aller admirer 
les monumentaux chefs-d' oeuvre conservés au Musée de Picardie.
1. Sur le soubassement de la cloture du choeur, peint en trompe l' oeil, un 
ange écarte la courtine de l' autel.
 Max


Envoyé à partir d’Outlook


Re: Hash Sum mismatch in sid

2017-11-03 Thread Ansgar Burchardt
matecs writes:
> some corrupted index files hit the mirrors.
> i've tried more, with the same results.
> someone should take a look at it...
[...]
> E: Failed to fetch
> store:/var/lib/apt/lists/partial/ftp.at.debian.org_debian_dists_sid_non-free_dep11_Components-amd64.yml.xz
> Hash Sum mismatch
>Hashes of expected file:
> - Filesize:65721 [weak]
> - 
> SHA256:0eb5ea70b4c46a7c0889e9601d16cedf3eb4ff55bf3b77ef2af2bcd3dcf48cec
> - MD5Sum:68fdfbc3bc806010ba4c9fc8d4cb133b [weak]
>Hashes of received file:
> - 
> SHA256:5fa520cd26eac94e183632f84371643219fdf905dfd351b53bbcd7afa5c3b848
> - MD5Sum:875dd6824d698bfa73c6517307f692f5 [weak]
> - Filesize:65721 [weak]
>Last modification reported: Mon, 30 Oct 2017 21:09:03 +
>Release file created at: Fri, 03 Nov 2017 02:41:19 +
> E: Some index files failed to download. They have been ignored, or old
> ones used instead.

The program generating these files for appstream has crashed on some
input and left inconsistent output files which were then synced into the
archive.  See also [1].

However only tools using this data should be affected (appstream, GNOME
Software, no idea what else).  apt should still get updated packages as
usual as only the appstream metadata is affected, but not the Packages
list or other indices.

Ansgar

  [1] https://bugs.debian.org/880645



Re: Hash Sum mismatch in sid

2017-11-03 Thread Alexander V. Makartsev
On 03.11.2017 14:03, matecs wrote:
> hi,
> some corrupted index files hit the mirrors.
> i've tried more, with the same results.
> someone should take a look at it...
> thanks,
> cs
>
>
I've seen this error occasionally and I think this happens when mirror
wasn't synced completely yet. So, give it some time and try again later.
It will be fine.


-- 
With kindest regards, Alexander.

⢀⣴⠾⠻⢶⣦⠀ 
⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system
⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org
⠈⠳⣄ 



Écran tactile - Pointeur inversé

2017-11-03 Thread David Pinson
Bonjour à tous,
J'ai récupéré un PC avec écran tactile, c'est un JAO TECH.
Après d'avoir installé Debian stretch qui s'est bien passé et l'ensemble
semble fonctionner à merveille !

Mais je bute sur un cas difficile malgré les tutos et forums après
d'avoir utilisé xinput et xinput_calibrator :
Le pointeur semble être inversé au niveau de l'axe X (horizontal),
je tape à un point précis et je retrouve le pointeur exactement à
l'opposé sur l'écran.

J'ai visité les liens (entre autres) :
https://www.debian-fr.org/t/calibrage-ecran-tactile/57646
Aussi, je suis tombé sur ça: https://doc.ubuntu-fr.org/evdev

Rien à faire, même si j'ai inversé les coordonnées, changé les
paramètres d'inversion...

Auriez-vous des tuyaux ?
Merci beaucoup !

-- 
Linuxement vôtre,
-- 
dptech ~ David Pinson

jm2l 2017 ~ 10° édition
http://jm2l.linux-azur.org
La route est longue mais la voie est libre !
--

   var beer = new beer();
   if (beer.empty)  {
   beer.refill();
   } else {
   beer.drink();
   }





Distribution Q4OS : dérivée de Stretch

2017-11-03 Thread andre_debian
Bonjour,

Que pensez vous de la distribution Q4OS,
dérivée de Debian, maintenant Stretch ?

Quels avantages et inconvénients.

Merci,

André



adsl route

2017-11-03 Thread Debian EN

Hello to all :-) I've fastweb italian adsl

2 networks interfaces:

wan 192.168.0.2/31 --> modem 192.168.0.1/31
eth0 192.168.1.0/24

everything works but:

sometimes when I reboot my server, DSL stops works

I have to call the provider and I don't know how and what, reactivates DSL

sometimes removing route and re-add routing works

route del default gw 192.168.0.1
route add default gw 192.168.0.1

sometimes no

which kind of problem can be?

thanks!

Pol



Hash Sum mismatch in sid

2017-11-03 Thread matecs

hi,
some corrupted index files hit the mirrors.
i've tried more, with the same results.
someone should take a look at it...
thanks,
cs

mc36@acer:~$ sudo apt-get update
Get:1 http://ftp.at.debian.org/debian sid InRelease [235 kB]
Get:2 http://ftp.at.debian.org/debian sid/contrib Sources.diff/Index 
[27.8 kB]
Get:3 http://ftp.at.debian.org/debian sid/non-free Sources.diff/Index 
[27.8 kB]

Get:4 http://ftp.at.debian.org/debian sid/main Sources.diff/Index [27.9 kB]
Get:5 http://ftp.at.debian.org/debian sid/main amd64 Packages.diff/Index 
[27.9 kB]
Get:6 http://ftp.at.debian.org/debian sid/main i386 Packages.diff/Index 
[27.9 kB]
Get:7 http://ftp.at.debian.org/debian sid/main Translation-en.diff/Index 
[27.9 kB]
Get:8 http://ftp.at.debian.org/debian sid/non-free amd64 
Packages.diff/Index [27.8 kB]
Get:9 http://ftp.at.debian.org/debian sid/contrib 
Translation-en.diff/Index [27.8 kB]
Get:10 http://ftp.at.debian.org/debian sid/contrib Sources 
2017-11-02-2022.21.pdiff [31 B]
Get:11 http://ftp.at.debian.org/debian sid/non-free Sources 
2017-11-02-2022.21.pdiff [301 B]
Get:12 http://ftp.at.debian.org/debian sid/main Sources 
2017-11-02-2022.21.pdiff [14.2 kB]
Get:13 http://ftp.at.debian.org/debian sid/main Sources 
2017-11-03-0228.38.pdiff [17.9 kB]
Get:14 http://ftp.at.debian.org/debian sid/main amd64 Packages 
2017-11-02-2022.21.pdiff [51.8 kB]
Get:15 http://ftp.at.debian.org/debian sid/main amd64 Packages 
2017-11-03-0228.38.pdiff [23.2 kB]
Get:16 http://ftp.at.debian.org/debian sid/main i386 Packages 
2017-11-02-2022.21.pdiff [52.7 kB]
Get:11 http://ftp.at.debian.org/debian sid/non-free Sources 
2017-11-02-2022.21.pdiff [301 B]
Get:10 http://ftp.at.debian.org/debian sid/contrib Sources 
2017-11-02-2022.21.pdiff [31 B]
Get:17 http://ftp.at.debian.org/debian sid/main i386 Packages 
2017-11-03-0228.38.pdiff [22.9 kB]
Get:18 http://ftp.at.debian.org/debian sid/main Translation-en 
2017-11-02-2022.21.pdiff [736 B]
Get:19 http://ftp.at.debian.org/debian sid/main Translation-en 
2017-11-03-0228.38.pdiff [1,515 B]
Get:15 http://ftp.at.debian.org/debian sid/main amd64 Packages 
2017-11-03-0228.38.pdiff [23.2 kB]
Get:13 http://ftp.at.debian.org/debian sid/main Sources 
2017-11-03-0228.38.pdiff [17.9 kB]
Get:20 http://ftp.at.debian.org/debian sid/non-free amd64 Packages 
2017-11-02-2022.21.pdiff [433 B]
Get:21 http://ftp.at.debian.org/debian sid/contrib Translation-en 
2017-11-02-2022.21.pdiff [31 B]
Get:21 http://ftp.at.debian.org/debian sid/contrib Translation-en 
2017-11-02-2022.21.pdiff [31 B]
Get:20 http://ftp.at.debian.org/debian sid/non-free amd64 Packages 
2017-11-02-2022.21.pdiff [433 B]
Get:22 http://ftp.at.debian.org/debian sid/main amd64 DEP-11 Metadata 
[3,107 kB]
Get:23 http://ftp.at.debian.org/debian sid/main DEP-11 64x64 Icons 
[6,936 kB]
Get:24 http://ftp.at.debian.org/debian sid/non-free amd64 DEP-11 
Metadata [6,384 B]
Get:25 http://ftp.at.debian.org/debian sid/non-free DEP-11 64x64 Icons 
[1,813 B]
Get:26 http://ftp.at.debian.org/debian sid/contrib amd64 DEP-11 Metadata 
[2,924 B]
Get:27 http://ftp.at.debian.org/debian sid/contrib DEP-11 64x64 Icons 
[37.7 kB]
Get:19 http://ftp.at.debian.org/debian sid/main Translation-en 
2017-11-03-0228.38.pdiff [1,515 B]
Get:17 http://ftp.at.debian.org/debian sid/main i386 Packages 
2017-11-03-0228.38.pdiff [22.9 kB]
Err:24 http://ftp.at.debian.org/debian sid/non-free amd64 DEP-11 
Metadata

  Hash Sum mismatch
  Hashes of expected file:
   - Filesize:65721 [weak]
   - 
SHA256:0eb5ea70b4c46a7c0889e9601d16cedf3eb4ff55bf3b77ef2af2bcd3dcf48cec

   - MD5Sum:68fdfbc3bc806010ba4c9fc8d4cb133b [weak]
  Hashes of received file:
   - 
SHA256:5fa520cd26eac94e183632f84371643219fdf905dfd351b53bbcd7afa5c3b848

   - MD5Sum:875dd6824d698bfa73c6517307f692f5 [weak]
   - Filesize:65721 [weak]
  Last modification reported: Mon, 30 Oct 2017 21:09:03 +
  Release file created at: Fri, 03 Nov 2017 02:41:19 +
Ign:19 http://ftp.at.debian.org/debian sid/main Translation-en 
2017-11-03-0228.38.pdiff
Ign:17 http://ftp.at.debian.org/debian sid/main i386 Packages 
2017-11-03-0228.38.pdiff

Fetched 421 kB in 5s (73.0 kB/s)
Reading package lists... Done
E: Failed to fetch 
store:/var/lib/apt/lists/partial/ftp.at.debian.org_debian_dists_sid_non-free_dep11_Components-amd64.yml.xz 
 Hash Sum mismatch

   Hashes of expected file:
- Filesize:65721 [weak]
- 
SHA256:0eb5ea70b4c46a7c0889e9601d16cedf3eb4ff55bf3b77ef2af2bcd3dcf48cec

- MD5Sum:68fdfbc3bc806010ba4c9fc8d4cb133b [weak]
   Hashes of received file:
- 
SHA256:5fa520cd26eac94e183632f84371643219fdf905dfd351b53bbcd7afa5c3b848

- MD5Sum:875dd6824d698bfa73c6517307f692f5 [weak]
- Filesize:65721 [weak]
   Last modification reported: Mon, 30 Oct 2017 21:09:03 +
   Release file created at: Fri, 03 Nov 2017 02:41:19 +
E: Some index files failed to download. They have been ignored, or old 
ones used instead.

mc36@acer:~$