Re: An appropriate directory search tool?

2018-10-20 Thread mick crane
On 2018-10-21 02:16, John Crawley wrote: On 20/10/2018 19.28, Richard Owlett wrote: ...I would have expected to use an explicit pipe command between 'find' and 'grep'. In fact, depending on the exact conditions of your search, you might not need to use find at all. 'grep -r' will do a

Re: [DEBian-br] Superkaramba

2018-10-20 Thread Gilberto F da Silva
On Wed, Oct 17, 2018 at 11:00:30AM -0300, Gilberto F da Silva wrote: > On Wed, Oct 17, 2018 at 09:29:32AM -0300, Ênio Júnior wrote: > > Quando preciso instalar um .deb na unha, sempre uso o gdebi-gtk, resolve > > todas > > as dependências. > > Sobre o Superkaramba, provavelmente dará

Re: perl; Trying to get File::stat to work

2018-10-20 Thread David Christensen
On 10/19/18 7:47 PM, Martin McCormick wrote: #!/usr/bin/perl -w use strict; use warnings::unused; use File::stat; use File::Spec; my $last_update_time; $last_update_time = ( stat("testfile") )[9]; printf("%d\n",$last_update_time); My system: 2018-10-20 20:59:53 dpchrist@vstretch

Re: freee pornno acccess.

2018-10-20 Thread Maya Joshi
Freeporno Sent from my iPad

Re: An appropriate directory search tool?

2018-10-20 Thread John Crawley
On 20/10/2018 19.28, Richard Owlett wrote: ...I would have expected to use an explicit pipe command between 'find' and 'grep'. In fact, depending on the exact conditions of your search, you might not need to use find at all. 'grep -r' will do a recursive search, starting at whatever

Re: An appropriate directory search tool?

2018-10-20 Thread Håkon Alstadheim
Den 20. okt. 2018 21:05, skrev Brian: > On Sat 20 Oct 2018 at 07:19:50 -0500, Richard Owlett wrote: > >> On 10/20/2018 06:37 AM, Joe wrote: >>> On Sat, 20 Oct 2018 05:28:52 -0500 >>> Richard Owlett wrote: >>> On 10/20/2018 04:44 AM, to...@tuxteam.de wrote: > On Sat, Oct 20, 2018 at

Re: An appropriate directory search tool?

2018-10-20 Thread Brian
On Sat 20 Oct 2018 at 07:19:50 -0500, Richard Owlett wrote: > On 10/20/2018 06:37 AM, Joe wrote: > > On Sat, 20 Oct 2018 05:28:52 -0500 > > Richard Owlett wrote: > > > > > On 10/20/2018 04:44 AM, to...@tuxteam.de wrote: > > > > On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: > >

Re: Impossible to migrate to buster

2018-10-20 Thread Cindy-Sue Causey
On 10/20/18, Pierre Couderc wrote: > I have updated my sources.list from stretch : > > root@server:~# cat /etc/apt/sources.list > > deb http://debian.proxad.net/debian/ buster main contrib > deb-src http://debian.proxad.net/debian/ buster main contrib > > deb http://security.debian.org

Re: Impossible to migrate to buster

2018-10-20 Thread Brian
On Sat 20 Oct 2018 at 16:09:07 +0200, Pierre Couderc wrote: > > On 10/20/18 10:02 AM, Pierre Couderc wrote: > > . > > Need to get 182 MB of archives. > > After this operation, 417 MB of additional disk space will be used. > > Do you want to continue? [Y/n] Abort. > > root@server:~# > > > >

pppd incomatible with libradcli4

2018-10-20 Thread Eugene M. Zheganin
Hello, I'm trying to set up the VPN stack using xl2tpd/strongswan on recent Debian 9.5, and so far everything is working except radius authentication (I have a freeradius3 setup which is fully working, so I need to use it to authenticate users). Seems like pppd is totally incompatible with

Re: Impossible to migrate to buster

2018-10-20 Thread Pierre Couderc
On 10/20/18 10:02 AM, Pierre Couderc wrote: . Need to get 182 MB of archives. After this operation, 417 MB of additional disk space will be used. Do you want to continue? [Y/n] Abort. root@server:~# The upgrade is aborted without I have keyed anything !!! What am I missing ? Thanks PC

Re: An appropriate directory search tool?

2018-10-20 Thread rhkramer
On Saturday, October 20, 2018 08:35:51 AM Richard Owlett wrote: > I don't think "find" itself is the problem. > Debian seems to do some 'black magic' to conflate "standard output" and > "standard input". Otherwise a pipe command would be required between > "find" and "grep". I didn't go back all

Re: An appropriate directory search tool?

2018-10-20 Thread rhkramer
On Friday, October 19, 2018 11:29:13 AM Greg Wooledge wrote: > There's also . I'm not the OP, but I wanted to say that I find the pages on your wiki (at least the ones I've looked at) to be helpful and well-written.

Re: An appropriate directory search tool?

2018-10-20 Thread Dan Purgert
Richard Owlett wrote: > On 10/20/2018 05:23 AM, Étienne Mollier wrote: >> [snip] >>> My take away from answers so far is "A script will be required." >> >> Not necessarily, the trouble is: "find" is so vast, you can >> spend hours in the manual to search for adequate option for >> your specific

Re: Impossible to migrate to buster

2018-10-20 Thread Hans
Am Samstag, 20. Oktober 2018, 14:37:58 CEST schrieb Norbert Brondeau: Hi, just an idea: apt is calling either apt-get or aptitude, whatever it thinks is the best option. I believe, in this case it is calling aptitude, what is not the best choice for a full distribution upgrade. I suggest, to

Re: Impossible to migrate to buster

2018-10-20 Thread Norbert Brondeau
Just try apt dist-upgrade Le sam. 20 oct. 2018 à 10:42, Brian a écrit : > > On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: > > [...] > > > root@server:~# apt upgrade > > Reading package lists... Done > > Building dependency tree > > Reading state information... Done > > Calculating

Re: firefox palemoon waterfox baselisk problem, not on chromium

2018-10-20 Thread Andrew McGlashan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, On 20/10/18 11:16, arne wrote: > While browsing on stock updated Debian stretch I get several times > a day: > > Secure Connection Failed > > The connection to www.google.com was interrupted while the page was > loading. > > The page you are

Re: An appropriate directory search tool?

2018-10-20 Thread Richard Owlett
On 10/20/2018 05:23 AM, Étienne Mollier wrote: [snip] My take away from answers so far is "A script will be required." Not necessarily, the trouble is: "find" is so vast, you can spend hours in the manual to search for adequate option for your specific need, and end up writing a script,

Re: An appropriate directory search tool?

2018-10-20 Thread Richard Owlett
On 10/20/2018 06:24 AM, Joe wrote: On Sat, 20 Oct 2018 11:44:37 +0200 wrote: On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: I think my original post needs a rewrite ;/ I'm looking for a directory search tool with specific capabilities which would fit comfortably with my

Re: Impossible to migrate to buster

2018-10-20 Thread Norbert Brondeau
A 09:26 20/10/18, Brian a écrit : >On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: > >[...] > >> root@server:~# apt upgrade >> Reading package lists... Done >> Building dependency tree >> Reading state information... Done >> Calculating upgrade... Done > >[...] > >> 295 upgraded, 61

Re: perl; Trying to get File::stat to work

2018-10-20 Thread Martin McCormick
Bob McGowan writes: > It looks like this has to do with mixing the usage of the "native" stat of > Perl with the "object" version from File::stat. > > > > The 'stat' from File::stat returns a reference to an object, which has the > stuff you're wanting, tucked away internally as object

Re: An appropriate directory search tool?

2018-10-20 Thread Richard Owlett
On 10/20/2018 06:37 AM, Joe wrote: On Sat, 20 Oct 2018 05:28:52 -0500 Richard Owlett wrote: On 10/20/2018 04:44 AM, to...@tuxteam.de wrote: On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: I think my original post needs a rewrite ;/ I'm looking for a directory search tool

Re: An appropriate directory search tool?

2018-10-20 Thread Roberto C . Sánchez
On Sat, Oct 20, 2018 at 05:28:52AM -0500, Richard Owlett wrote: > > But they did. > That's why I wrote 'My take away from answers so far is "A script will be > required." ' > Perhaps we have different ideas of the definition of "script". > I saw the examples which worked as scripts (even if

Re: basilisk-browser

2018-10-20 Thread Roberto C . Sánchez
On Fri, Oct 19, 2018 at 11:30:05PM -0300, fmn...@fmneto.com.br wrote: > On 2018-10-19 23:19, Ben Finney wrote: > > Dominik George writes: > > > > > >> > [1] https://github.com/jasperla/openbsd-wip/issues/86 > > > > > > Seriously? They forbid linking against libraries if their code is not > > >

Re: voorvoegsel apt WAS: SSH

2018-10-20 Thread Geert Stappers
On Sat, Oct 20, 2018 at 12:56:44PM +0200, Huub Reuver wrote: > On Sat, Oct 20, 2018 at 12:19:18PM +0200, Geert Stappers wrote: > > On Sat, Oct 20, 2018 at 10:42:12AM +0200, mj wrote: > > > On 10/20/2018 10:14 AM, Huub Reuver wrote: > > > > Tot slot: sudo is handig voor enkele specifieke

Re: An appropriate directory search tool?

2018-10-20 Thread Joe
On Sat, 20 Oct 2018 05:28:52 -0500 Richard Owlett wrote: > On 10/20/2018 04:44 AM, to...@tuxteam.de wrote: > > On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: > >> I think my original post needs a rewrite ;/ > >> > >> I'm looking for a directory search tool with specific

Re: An appropriate directory search tool?

2018-10-20 Thread Joe
On Sat, 20 Oct 2018 11:44:37 +0200 wrote: > On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: > > I think my original post needs a rewrite ;/ > > > > I'm looking for a directory search tool with specific capabilities > > which would fit comfortably with my work environment. > >

Re: voorvoegsel apt WAS: SSH

2018-10-20 Thread Huub Reuver
On Sat, Oct 20, 2018 at 12:19:18PM +0200, Geert Stappers wrote: > On Sat, Oct 20, 2018 at 10:42:12AM +0200, mj wrote: > > On 10/20/2018 10:14 AM, Huub Reuver wrote: > > > Tot slot: sudo is handig voor enkele specifieke commando's. > > > Apt hoort niet in combinatie met sudo. Daar heb je "su - "

Re: SSH

2018-10-20 Thread Huub Reuver
On Sat, Oct 20, 2018 at 10:42:12AM +0200, mj wrote: > On 10/20/2018 10:14 AM, Huub Reuver wrote: > > Tot slot: sudo is handig voor enkele specifieke commando's. > > Apt hoort niet in combinatie met sudo. Daar heb je "su - " voor, > > Oh? Nooit eerder gehoord. > Waarom geen sudo bij apt..? Bij

Re: An appropriate directory search tool?

2018-10-20 Thread Richard Owlett
On 10/20/2018 04:44 AM, to...@tuxteam.de wrote: On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: I think my original post needs a rewrite ;/ I'm looking for a directory search tool with specific capabilities which would fit comfortably with my work environment. [...] I

Re: An appropriate directory search tool?

2018-10-20 Thread Étienne Mollier
Good Day, On 10/20/18 11:32 AM, Richard Owlett wrote: > I think my original post needs a rewrite ;/ Well, let's stick to the text then... > I'm looking for a directory search tool with specific capabilities which > would fit comfortably with my work environment. > > The "MATE Search Tool"

voorvoegsel apt WAS: SSH

2018-10-20 Thread Geert Stappers
On Sat, Oct 20, 2018 at 10:42:12AM +0200, mj wrote: > On 10/20/2018 10:14 AM, Huub Reuver wrote: > > Tot slot: sudo is handig voor enkele specifieke commando's. > > Apt hoort niet in combinatie met sudo. Daar heb je "su - " voor, > > Oh? Nooit eerder gehoord. > Waarom geen sudo bij apt..? > Ik

Re: An appropriate directory search tool?

2018-10-20 Thread tomas
On Sat, Oct 20, 2018 at 04:32:43AM -0500, Richard Owlett wrote: > I think my original post needs a rewrite ;/ > > I'm looking for a directory search tool with specific capabilities > which would fit comfortably with my work environment. [...] > I suspect that what I want would most likely be a

Re: Impossible to migrate to buster

2018-10-20 Thread Michael Wagner
On Oct 20, 2018 at 09:26:14, Brian wrote: > On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: > > [...] > > > root@server:~# apt upgrade > > Reading package lists... Done > > Building dependency tree > > Reading state information... Done > > Calculating upgrade... Done > > [...] > >

Re: An appropriate directory search tool?

2018-10-20 Thread Richard Owlett
I think my original post needs a rewrite ;/ I'm looking for a directory search tool with specific capabilities which would fit comfortably with my work environment. The "MATE Search Tool" comes close. It can: Select a starting directory. Search for a specific extension. Search for a

Re: Impossible to migrate to buster

2018-10-20 Thread Brian
On Sat 20 Oct 2018 at 11:45:29 +0300, Reco wrote: > Hi. > > On Sat, Oct 20, 2018 at 09:26:14AM +0100, Brian wrote: > > On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: > > > > [...] > > > > > root@server:~# apt upgrade > > > Reading package lists... Done > > > Building

Re: SSH

2018-10-20 Thread mj
On 10/20/2018 10:14 AM, Huub Reuver wrote: Tot slot: sudo is handig voor enkele specifieke commando's. Apt hoort niet in combinatie met sudo. Daar heb je "su - " voor, Oh? Nooit eerder gehoord. Waarom geen sudo bij apt..? mj

Re: Impossible to migrate to buster

2018-10-20 Thread Reco
Hi. On Sat, Oct 20, 2018 at 09:26:14AM +0100, Brian wrote: > On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: > > [...] > > > root@server:~# apt upgrade > > Reading package lists... Done > > Building dependency tree > > Reading state information... Done > > Calculating

Re: Impossible to migrate to buster

2018-10-20 Thread Brian
On Sat 20 Oct 2018 at 10:02:40 +0200, Pierre Couderc wrote: [...] > root@server:~# apt upgrade > Reading package lists... Done > Building dependency tree > Reading state information... Done > Calculating upgrade... Done [...] > 295 upgraded, 61 newly installed, 0 to remove and 0 not upgraded.

Re: Impossible to migrate to buster

2018-10-20 Thread Norbert Brondeau
A 10:02 20/10/18, Pierre Couderc a écrit : >I have updated my sources.list from stretch : > >root@server:~# cat  /etc/apt/sources.list > >deb http://debian.proxad.net/debian/ buster main contrib >deb-src http://debian.proxad.net/debian/ buster main contrib > >deb http://security.debian.org

Re: perl; Trying to get File::stat to work

2018-10-20 Thread Dave Sherohman
On Fri, Oct 19, 2018 at 09:47:11PM -0500, Martin McCormick wrote: > I am a member of a perl discussion list but it seems to have gone > away Your actual question has already been answered, but, for future reference, PerlMonks (https://www.perlmonks.org/) is still around and there are also several

Impossible to migrate to buster

2018-10-20 Thread Pierre Couderc
I have updated my sources.list from stretch : root@server:~# cat  /etc/apt/sources.list deb http://debian.proxad.net/debian/ buster main contrib deb-src http://debian.proxad.net/debian/ buster main contrib deb http://security.debian.org buster/updates main contrib deb-src

Re: Existe-t-il un trucCloud chez Debian ?

2018-10-20 Thread didier gaumet
Le 19/10/2018 à 22:21, Ph. Gras a écrit : [...] > un dépôt que je peux ajouter aux sources et vers lequel je peux faire une > mise à jour > globale d'un seul coup. [...] ce qui est indiqué ici: https://download.owncloud.org/download/repositories/stable/owncloud/index.html ne convient pas? Ou

Re: firefox palemoon waterfox baselisk problem, not on chromium

2018-10-20 Thread Reco
Hi. On Sat, Oct 20, 2018 at 08:20:16AM +0100, mick crane wrote: > On 2018-10-20 07:22, Reco wrote: > > Hi. > > > > On Sat, Oct 20, 2018 at 02:16:57AM +0200, arne wrote: > > > By-passed my proxies, did not help. > > > > > > Those sites all load OK in Chromium, but I do not like this

Re: firefox palemoon waterfox baselisk problem, not on chromium

2018-10-20 Thread mick crane
On 2018-10-20 07:22, Reco wrote: Hi. On Sat, Oct 20, 2018 at 02:16:57AM +0200, arne wrote: By-passed my proxies, did not help. Those sites all load OK in Chromium, but I do not like this browser. Strange thing, when I retry 2-80 times the pages get loaded. I use Tab Mix Plus Mozilla add-on

Re: aptitude (vs Re: apt vs apt-get)

2018-10-20 Thread aishen
excellent ces commandes, difficile à trouver de nos jours, j'utilise rarement aptitutde mais toujours en cas de paquets cassés ou il excelle. J'ai essayé snap mais ça ne m'a pas convaincu, mon outils c'est synaptic ou apt + aptitude pour la chirurgie ! lol Le 19/10/2018 à 15:51, Gabriel

Re: firefox palemoon waterfox baselisk problem, not on chromium

2018-10-20 Thread Reco
Hi. On Sat, Oct 20, 2018 at 02:16:57AM +0200, arne wrote: > By-passed my proxies, did not help. > > Those sites all load OK in Chromium, but I do not like this browser. > > Strange thing, when I retry 2-80 times the pages get loaded. > > I use Tab Mix Plus Mozilla add-on to reload