Re: scriptable way to list packages that are not installed

2018-01-14 Thread Roberto C . Sánchez
On Sun, Jan 14, 2018 at 05:52:45AM +0200, Vasyl Vavrychuk wrote: > I would like to list not installed packages in my script. Currently I do > > dpkg-query -W -f='${db:Status-Abbrev}${binary:Package}\n' > $PACKAGES | grep -v "^ii" | awk '{print $2}' > You may want to consider libdpkg-perl,

Re: bash array

2018-01-14 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, Jan 14, 2018 at 03:46:06PM +0300, Gokan Atmaca wrote: > Hello > > I have the user list and the password list. I shot them with BASH. I > want to give passwords to the usernames in these separate files in > order. > > File names: > Users.list

Re: history issue - bug?

2018-01-14 Thread Hans
Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: Hi David, thanks for enlightening me. I always though, that "history -c" would clear all the history and its files as the help file says: -cclear the history list by deleting all of the entries So IMO this should delete

Re: Vignette de vidéo

2018-01-14 Thread JF Straeten
Re, On Sat, Jan 13, 2018 at 06:48:17PM +0100, Benoit B wrote: [...] > Mais il faudrait trois opérations à chaque fois : > - Redimensionner la fenêtre > - Click droit > ne pas décorer > - Click droit > Disposition > Toujours au premier plan pour être par > dessus la fenêtre... > - Puis

Bug or Feature in mate-search-tool ?

2018-01-14 Thread Richard Owlett
If a file is in a folder below a hidden folder, it will *NOT* be found. This happens even when "Show hidden and backup files" is chosen. It does not matter if logged-in as superuser. I proved it by copying a folder under a hidden folder to a normal folder. Target file was found. I installed

Re: Nginx reverse proxy ? Bon choix ?

2018-01-14 Thread Eric Degenetais
Le 13 janv. 2018 10:54 PM, "Ph. Gras" a écrit : Oui, bien sûr Pierre ! > Ajout dans le fichier de config du site actuel dans Nginx, qui va > diriger les requêtes démandées /munin/ vers l'IP interne du serveur 2 > (en interne, Munin est accessible via

Re: scriptable way to list packages that are not installed

2018-01-14 Thread Eduardo M KALINOWSKI
On 14-01-2018 01:52, Vasyl Vavrychuk wrote: > I would like to list not installed packages in my script. aptitude search '!~i' is a start It's possible to configure the output, see the manpage. -- Any excuse will serve a tyrant. -- Aesop Eduardo M KALINOWSKI

history issue - bug?

2018-01-14 Thread Hans
Hi folks, try this: 1. login as normal user 2. become root with "su -" 3. delete history with "history -c" 4. Check history, history is gone 5. logout from root by "CTL + D" or "exit" 6. relogin as root with "su -" 7. Check history, voila, it appears again. What is wrong? Is it a bug or

Re: history issue - bug?

2018-01-14 Thread David Wright
On Sun 14 Jan 2018 at 14:07:01 (+0100), Hans wrote: > Hi folks, > > try this: > > 1. login as normal user > > 2. become root with "su -" … which reads ~/.bash_history into what I call the command recall buffer. > 3. delete history with "history -c" … which deletes all the entries in the

Re: Debian iso installation incorrectly sets sources.list

2018-01-14 Thread Pascal Hambourg
Le 10/01/2018 à 05:34, The Wanderer a écrit : the sizes of the images, particularly in the case of multi-image sets, are determined based on what is expected to be able to fit on a DVD or a CD. Not only. Otherwise, the #1 (bootable) DVD images would have a size of 4.7 GB, like subsequent DVD

Re: Debian iso installation incorrectly sets sources.list

2018-01-14 Thread Steve McIntyre
Pascal wrote: >Le 10/01/2018 à 05:34, The Wanderer a écrit : >> >> the sizes of the images, particularly in the >> case of multi-image sets, are determined based on what is expected to be >> able to fit on a DVD or a CD. > >Not only. Otherwise, the #1 (bootable) DVD images would have a size of

bash array

2018-01-14 Thread Gokan Atmaca
Hello I have the user list and the password list. I shot them with BASH. I want to give passwords to the usernames in these separate files in order. File names: Users.list Passwords.list In a loop, I have to not throw them into users of these passwords. I did this for it, but it did not work.

Re: scriptable way to list packages that are not installed

2018-01-14 Thread Bernd Gruber
Vasyl Vavrychuk wrote: > I would like to list not installed packages in my script. could this help you (if I understood right, that you want to know, if some of the packages (in this case) gawk, git, cmake are not installed: dpkg -l gawk git cmake | awk /^un/'{print $2}' cmake git Bernd

setting gpg keyserver & source-list in 443-https

2018-01-14 Thread sejobud33
how-to setting gpg keyserver & source-list in 443-https - gpg (2.1.18) was installed by default without .conf & .dirmngr i followed this how-to but it does not work. https://sks-keyservers.net/overview-of-pools.php hkps.pool.sks-keyservers.net This is a pool containing only servers available

Re: Secure email server setup

2018-01-14 Thread rhkramer
On Sunday, January 14, 2018 02:26:03 PM Brian wrote: > On Sun 14 Jan 2018 at 12:49:46 -0500, rhkra...@gmail.com wrote: > > On Sunday, January 14, 2018 10:36:40 AM J.W. Foster wrote: > > > I am looking for a reliable step by step process for setting up an > > > email server located on an existing

Re: IAX VoIP in Debian 9.

2018-01-14 Thread peter
* From: deloptes delop...@gmail.com * Date: Sun, 14 Jan 2018 19:37:20 +0100 > aren't there enough documents around asterisk? A PBX is necessary to have a IAX client? Whew! > what do you expect Nothing. > debian howto? Would be nice but don't expect it. Thanks, ... P.

Re: IAX VoIP in Debian 9.

2018-01-14 Thread peter
* From: Ionel Mugurel Ciobc i.m.ciob...@upcmail.nl * Date: Sun, 14 Jan 2018 19:21:02 +0100 > I do not know about IAX, but I run yate and in the config files there > are mentioning IAX several times. You may want to have a look... You > can install yate with apt or aptitude, etc.

Re: scriptable way to list packages that are not installed

2018-01-14 Thread Michael Lange
Hi, On Sun, 14 Jan 2018 22:18:26 +0200 Vasyl Vavrychuk wrote: > Hi, John, > > On Sun, Jan 14, 2018 at 8:48 AM, john doe wrote: > > On 1/14/2018 7:28 AM, john doe wrote: > > > > $ dpkg-query -W -f='${db:Status-Abbrev}${binary:Package}\n' awk git > >

MiniDebConf Curitiba 2018: ajude no financiamento coletivo

2018-01-14 Thread Paulo Henrique de Lima Santana
Olá, A MiniDebConf Curitiba 2018 acontecerá de 11 a 14 de abril no campus central da UTFPR - Universidade Tecnológica Federal do Paraná. Esta 3a edição será composta por palestras, oficinas, sprints, BSP (Bug Squashing Party) e eventos sociais. Para viabilizar a realização da MiniDebConf

Re: Stretch Lite

2018-01-14 Thread Felix Miata
David composed on 2018-01-14 17:54 (UTC): > I know there is a version of Rasbian called Stretch Lite. > Is there a version of Debian to run headless without the excess clutter > of office etc? > I've tried removing the bits I don't need, but made an awful mess of it, > better not to load it in

Re: USB camera;

2018-01-14 Thread peter
>> Is any USB camera working in Debian 9? * From: Reco recovery...@gmail.com * Date: Fri, 3 Nov 2017 18:11:57 +0300 > This one does, at least right now it did with mpv. > lsusb tells me that it's: > > 058f:5608 Alcor Micro Corp * From: deloptes delop...@gmail.com *

Re: Secure email server setup

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 16:43:53 -0500, rhkra...@gmail.com wrote: > On Sunday, January 14, 2018 02:26:03 PM Brian wrote: > > On Sun 14 Jan 2018 at 12:49:46 -0500, rhkra...@gmail.com wrote: > > > On Sunday, January 14, 2018 10:36:40 AM J.W. Foster wrote: > > > > I am looking for a reliable step by

Re: [semi-OT] temperature/humidity/flood sensor recommendations

2018-01-14 Thread Miroslav Skoric
On 01/08/2018 04:57 PM, Roberto C. Sánchez wrote: Hi all, This is semi-OT but I am curious to know what temperature/humidity/flood sensors everyone out there has experience with. I am looking for something to use at home, but I would like to stay away from WiFi and smart home devices.

sks_deb-https

2018-01-14 Thread sejobud33
malgré plusieurs essais, la liason crypté ne s'effectue pas : ni pour sks:443 .gpg n'a ni .drmngr ni de .conf (donc plus de tweak mais une configuration standard ?) sks ne fonctionnant pas j'ai rajouté un .dirmngr et inscrit les lignes référencées. cela ne fonctionne pas plus. [ Notez le .

IAX VoIP in Debian 9.

2018-01-14 Thread peter
Hello, Can VoIP be achieved using IAX in Debian 9? If so, can any notes about installation and configuration be recommended? Thanks, ... Peter E. -- 123456789 123456789 123456789 123456789 123456789 123456789 123456789 Tel: +1 360 639 0202 Pender

Re: Secure email server setup

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 12:49:46 -0500, rhkra...@gmail.com wrote: > On Sunday, January 14, 2018 10:36:40 AM J.W. Foster wrote: > > I am looking for a reliable step by step process for setting up an email > > server located on an existing website server. I have installed; exim4 > > light, dovecot,

Re: [Resolved] Re: Bug or Feature in mate-search-tool ?

2018-01-14 Thread Curt
On 2018-01-14, Richard Owlett wrote: > On 01/14/2018 10:23 AM, Richard Owlett wrote: >> If a file is in a folder below a hidden folder, it will *NOT* be found. >> This happens even when "Show hidden and backup files" is chosen. >> It does not matter if logged-in as superuser.

Re: history issue - bug?

2018-01-14 Thread David Wright
On Sun 14 Jan 2018 at 12:59:55 (-0500), rhkra...@gmail.com wrote: > On Sunday, January 14, 2018 12:14:47 PM bw wrote: > > On Sun, 14 Jan 2018, Hans wrote: > > > Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: > > > Hi David, > > > > > > thanks for enlightening me. I always though,

Re: history issue - bug?

2018-01-14 Thread David Wright
On Sun 14 Jan 2018 at 17:46:51 (+0100), Hans wrote: > Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: > Hi David, > > thanks for enlightening me. I always though, that "history -c" would clear > all > the history and its files as the help file says: > > -cclear the

Re: apt uninstall apparmor

2018-01-14 Thread solitone
On 14/01/18 20:08, Brian wrote: > don't you think worth the effort? Yes, I do. And I've reinstalled apparmor, and will try intrigeri's solution.

Re: Secure email server setup

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 15:36:40 +, J.W. Foster wrote: > I am looking for a reliable step by step process for setting up an > email server located on an existing website server. I have installed;  > exim4 light, dovecot, Thunderbird, OpenSSL, and TLS security. I have > tried following several

Re: Secure email server setup

2018-01-14 Thread deloptes
basti wrote: > exim users mailing list would be a good place for your question I think. > basti, first of all we do not top post and second we reply to the message we intend to answer. As I've been using exim extensively and was part of team supporting cloud with exim and imap (dovecot), I can

Re: history issue - bug?

2018-01-14 Thread rhkramer
On Sunday, January 14, 2018 12:14:47 PM bw wrote: > On Sun, 14 Jan 2018, Hans wrote: > > Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: > > Hi David, > > > > thanks for enlightening me. I always though, that "history -c" would > > clear all the history and its files as the help

update-grub2

2018-01-14 Thread andre_debian
Bonsoir, Mon ordinateur possède un seul disque dur /dev/sda, avec 4 partitions principales (/dev/sda1, sda2, swap et sda4 étendue) et trois partitions logiques sda5 à sda7. sda1, sda2, sda5, sda6 et sda7 = GNU/Linux en ext4, installé. # update-grub2 Création du fichier de configuration GRUB...

Stretch Lite

2018-01-14 Thread David
Dear group, I know there is a version of Rasbian called Stretch Lite. Is there a version of Debian to run headless without the excess clutter of office etc? I've tried removing the bits I don't need, but made an awful mess of it, better not to load it in the first place. David.

Re: update-grub2

2018-01-14 Thread Haricophile
Le Sun, 14 Jan 2018 19:00:16 +0100, andre_deb...@numericable.fr a écrit : > Grub semble trouver la partition n° 1 (racine) > mais pas /dev/sda2... et les autres. > > Comment créer le menu Grub avec toutes les partitions citées ? > (création de grub.cfg) > > Merci, André Ton disque ne serait

Re: update-grub2

2018-01-14 Thread andre_debian
On Sunday 14 January 2018 19:37:35 Haricophile wrote: > Le Sun, 14 Jan 2018 19:00:16 +0100, > andre_deb...@numericable.fr a écrit : > > Grub semble trouver la partition n° 1 (racine) > > mais pas /dev/sda2... et les autres. > > Comment créer le menu Grub avec toutes les partitions citées ? > >

Re: Stretch Lite

2018-01-14 Thread basti
Hello, first of all you can use tasksel to select or deselect Desktop Environment, Printserver etc. or perhaps you can export the package list from Stretch Lite. Best Regards On 14.01.2018 18:54, David wrote: > Dear group, > > I know there is a version of Rasbian called Stretch Lite. > > Is

Re: Secure email server setup

2018-01-14 Thread Joe
On Sun, 14 Jan 2018 15:36:40 + (UTC) "J.W. Foster" wrote: > I am looking for a reliable step by step process for setting up an > email server located on an existing website server. As you say, you won't have trouble finding basic instructions. What you probably won't

Re: history issue - bug?

2018-01-14 Thread Hans
Am Sonntag, 14. Januar 2018, 12:14:47 CET schrieb bw: > On Sun, 14 Jan 2018, Hans wrote: > > Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: > > Hi David, > > > > thanks for enlightening me. I always though, that "history -c" would clear > > all the history and its files as the

Re: history issue - bug?

2018-01-14 Thread Felipe Salvador
On Sun, Jan 14, 2018 at 02:07:01PM +0100, Hans wrote: > Hi folks, > > try this: > > 1. login as normal user > > 2. become root with "su -" > > 3. delete history with "history -c" Then run "history -w" to "write the current history to the history file" > 4. Check history, history is gone >

Re: update-grub2

2018-01-14 Thread Michel
Le 14/01/2018 à 19:10, andre_deb...@numericable.fr a écrit : > Bonsoir, > > Mon ordinateur possède un seul disque dur /dev/sda, > avec 4 partitions principales (/dev/sda1, sda2, swap et sda4 étendue) > et trois partitions logiques sda5 à sda7. > > sda1, sda2, sda5, sda6 et sda7 = GNU/Linux en

Re: IAX VoIP in Debian 9.

2018-01-14 Thread deloptes
pe...@easthope.ca wrote: > Hello, > > Can VoIP be achieved using IAX in Debian 9? If so, can any notes > about installation and configuration be recommended? > > Thanks, ... Peter E. aren't there enough documents around asterisk? what do you expect - debian howto?

Re: Secure email server setup

2018-01-14 Thread deloptes
J.W. Foster wrote: > I am looking for a reliable step by step process for setting up an email > server located on an existing website server. I have installed;  exim4 > light, dovecot, Thunderbird, OpenSSL, and TLS security. I have tried > following several bits of documentation regarding this

Re: Stretch Lite

2018-01-14 Thread basti
Hello, first of all you can use tasksel to select or deselect Desktop Environment, Printserver etc. or perhaps you can export the package list from Stretch Lite. Best Regards On 14.01.2018 18:54, David wrote: > Dear group, > > I know there is a version of Rasbian called Stretch Lite. > > Is

Re: history issue - bug?

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 18:25:09 +0100, Hans wrote: > Am Sonntag, 14. Januar 2018, 12:14:47 CET schrieb bw: > > On Sun, 14 Jan 2018, Hans wrote: > > > Am Sonntag, 14. Januar 2018, 08:41:21 CET schrieb David Wright: > > > Hi David, > > > > > > thanks for enlightening me. I always though, that

[Resolved] Re: Bug or Feature in mate-search-tool ?

2018-01-14 Thread Richard Owlett
On 01/14/2018 10:23 AM, Richard Owlett wrote: If a file is in a folder below a hidden folder, it will *NOT* be found. This happens even when "Show hidden and backup files" is chosen. It does not matter if logged-in as superuser. I proved it by copying a folder under a hidden folder to a normal

Re: update-grub2

2018-01-14 Thread andre_debian
On Sunday 14 January 2018 19:12:53 Michel wrote: > Le 14/01/2018 à 19:10, andre_deb...@numericable.fr a écrit : > > Mon ordinateur possède un seul disque dur /dev/sda, > > avec 4 partitions principales (/dev/sda1, sda2, swap et sda4 étendue) > > et trois partitions logiques sda5 à sda7. > > sda1,

Re: Secure email server setup

2018-01-14 Thread basti
exim users mailing list would be a good place for your question I think. On 14.01.2018 19:40, deloptes wrote: > J.W. Foster wrote: > >> I am looking for a reliable step by step process for setting up an email >> server located on an existing website server. I have installed;  exim4 >> light,

Re: apt uninstall apparmor

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 20:22:13 +0100, solitone wrote: > On 14/01/18 20:08, Brian wrote: > > don't you think worth the effort? > > Yes, I do. And I've reinstalled apparmor, and will try intrigeri's > solution. I am sure your feedback will prove invaluable. -- Brian.

Re: black screen after hibernation

2018-01-14 Thread Kamil Jońca
deloptes writes: [...] > > what versions do you have there Well. I cannot reproduce this - have some disaster on this system, and reinstalled debian. With fresh installation resuming works :/ KJ -- http://stopstopnop.pl/stop_stopnop.pl_o_nas.html Mount St. Helens should

Re: Secure email server setup

2018-01-14 Thread rhkramer
On Sunday, January 14, 2018 10:36:40 AM J.W. Foster wrote: > I am looking for a reliable step by step process for setting up an email > server located on an existing website server. I have installed; exim4 > light, dovecot, Thunderbird, OpenSSL, and TLS security. I have tried > following several

Re: apt uninstall apparmor

2018-01-14 Thread solitone
On 12/01/18 21:37, Brian wrote: > Do you have a plan to inform the AppArmor team of your detailed findings? https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887163 Apparently it's a well known issue. Cheers

Re: IAX VoIP in Debian 9.

2018-01-14 Thread Ionel Mugurel Ciobîcă
On 14-01-2018, at 09h 26'27", pe...@easthope.ca wrote about "IAX VoIP in Debian 9." > Hello, > > Can VoIP be achieved using IAX in Debian 9? If so, can any notes > about installation and configuration be recommended? > > Thanks, ... Peter E. > I do not know about IAX, but

Re: apt uninstall apparmor

2018-01-14 Thread Brian
On Sun 14 Jan 2018 at 19:31:46 +0100, solitone wrote: > On 12/01/18 21:37, Brian wrote: > > Do you have a plan to inform the AppArmor team of your detailed findings? > > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887163 > Apparently it's a well known issue. > > Cheers Kudos for your

Printing problem

2018-01-14 Thread arne
Hi, My printer suddenly didn't show up in the Print Windows of Libre Office, Firefox and a lot of other programs. I can however Print to File in pdf or ps and print those with lpr from the command line. The printer shows up in CUPS page and I can print the test page from CUPS. I did try

Re: scriptable way to list packages that are not installed

2018-01-14 Thread Vasyl Vavrychuk
Hi, John, On Sun, Jan 14, 2018 at 8:48 AM, john doe wrote: > On 1/14/2018 7:28 AM, john doe wrote: > > $ dpkg-query -W -f='${db:Status-Abbrev}${binary:Package}\n' awk git gawk > cmake 2>&1 | awk '!/^ii/ || !/^un/{print $6}' > git > gawk > cmake I also tried to parse

Re: Printing problem

2018-01-14 Thread arne
amd64 both systems OS: Daily updated Linux Stretch After 5 hours of googling, countless unnecessary rebooting I still can only print from thin client , Not from PC (Only pdf and postscript from files using lpr) Both macines are running debian stretch updated daily No complaints from CUPS, but

Re: Debian iso installation incorrectly sets sources.list

2018-01-14 Thread Charlie Gibbs
On 14/01/18 03:00 AM, Steve McIntyre wrote: > "I suspect most samba developers are already technically insane... > Of course, since many of them are Australians, you can't tell." > -- Linus Torvalds It's probably the exposure to Windows that does it. -- cgi...@surfnaked.ca (Charlie Gibbs)

Re: Fallo de disco

2018-01-14 Thread Josu Lazkano
Buenos dias, Ya ha terminado y todo OK: # dd if=/mnt/2TBUSB/sdb1.img of=/dev/sdc status=progress Ya veo todos los ficheros de nuevo. Muchas gracias a todos por vuestra ayuda. Un saludo. El día 13 de enero de 2018, 22:59, Josu Lazkano escribió: > Buenas, > > Ya ha

Re: setting gpg keyserver & source-list in 443-https

2018-01-14 Thread deloptes
sejobu...@bitmessage.de wrote: > how-to setting gpg keyserver & source-list in 443-https > > - gpg (2.1.18) was installed by default without .conf & .dirmngr > i followed this how-to but it does not work. > https://sks-keyservers.net/overview-of-pools.php > hkps.pool.sks-keyservers.net > This is

Problem using "dpkg -i"

2018-01-14 Thread Richard Owlett
A long time ago I had used Amaya, a HTML editor available at . I know, it's OLD. But I've used it ;/ I did: dpkg -i /home/richard/Downloads/amaya_11.4.7-1_i386.deb Received error message: dpkg: dependency problems prevent

Re: Printing problem

2018-01-14 Thread deloptes
arne wrote: > amd64 both systems > OS: Daily updated Linux Stretch > > After 5 hours of googling, countless unnecessary rebooting > I still can only print from thin client > , > Not from PC (Only pdf and postscript from files using lpr) > Both macines are running debian stretch updated daily >